Replies: 1 comment
-
Right, ethers-js doesn't support 1271 out of box at v5 or v6. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
EIP-1271 is a standard to grant smart contracts the ability to sign messages. This is useful to support smart contract wallets like Argent or Gnosis Safe in applications that make use of signatures. Ethers.js could support this EIP by providing a signature verification utility function that can check both EOA and EIP-1271 signatures, similar to OpenZeppelin's SignatureChecker. As opposed to EOA signature recovery this function would require a provider, but I'd imagine it's not so different from ENS resolution support.
Beta Was this translation helpful? Give feedback.
All reactions