I’m trying to understand the “roles” defined in the EIP712 structure Aggreement(active,passive)
If A want to create a “give” request to B, he first asks B to sign Aggreement(active=A, passive=B)
, but then A could issue a “take” instead of “give”.
Instead, I think the agreement should be TransferAgreement(from,to,token)
. That is, the signature should describe the token movement direction, not the user issuing the transaction.
The signer of this structure depends on the inactive side of the transaction (you could argue that actually both sides sign, as sending this transaction requires the “giver” or “taker” to sign it.)
In another note, you could support meta-transactions by having the signatures of both “giver” and “taker”:
e.g.
move(address giver, address taker, bytes giverSig, bytes takerSig, string tokenURI)