Ethereum signature authenticator
Will authenticate a user based on a message signed by an Ethereum private key. Users create an EIP712 signature for the transaction which is checked for validity in this contract.v,r,s: ECDSA Signaturesalt: The salt used in the signature to prevention replays (only required for proposal creation and updating).target: The destination space contract.functionSelector: The function selector of the desired action.data: The ABI encoded transaction payload for the action. Refer to the Space actions section for more information on the payload contents.
Ethereum transaction authenticator
Will authenticate a user by checking if the caller address corresponds to theauthor or voter address.
target: The destination space contract.functionSelector: The function selector of the desired action.data: The ABI encoded transaction payload for the action. Refer to the Space actions section for more information on the payload contents.
And more!
Our modular approach here allows spaces to authenticate users via other authentication methods without any changes to the space contract.Please note, that if you wanted to add sybil resistance to your governance process, this should not be handled by Authenticators, but by Proposal validations or Voting strategies.