Adding Resolvers (delegated)

This provides an approach to adding a resolver for an EIN leveraging meta-transactions.

Adding Resolvers on Behalf of an Identity

Delegated addition of resolvers follows the same pattern and provides the same functionality as Adding Resolvers, but accepts a signature to allow for meta-transactions. Call the addResolverFor function with the following:

ARGUMENTS

See [Adding Resolvers](adding-resolvers) for an example of when to use the extraData argument.

Signatures should follow the example format:


keccak256(
  abi.encodePacked(
  byte(0x19), byte(0), address(this),
  "I authorize that this resolver be added to my Identity.",
  ein, resolver, isSnowflake, withdrawAllowance, extraData, timestamp
  )
)

Last updated