Skip to main content

Questions tagged [eip-1271]

0 votes
1 answer
22 views

I'm creating 1inch v4 limit orders from a Safe (Gnosis Safe v1.4.1) smart contract wallet on Base. Orders are accepted by the 1inch API but cannot be filled by market makers due to EIP-1271 signature ...
Hi AI's user avatar
  • 1
0 votes
2 answers
287 views

I am trying to generate an EIP-1271 contract signature off-chain, and propose a transaction using safe-api-kit. My first question is, is there support for creating EIP-1271 signatures using safe-core-...
Ahmet Yazıcı's user avatar
1 vote
0 answers
98 views

In all the documentation that I have read about EIP1271, every time the isValidSignature function is implemented it is a view function. Even in the OpenZeppelin IERC1271 interface they use view. Is it ...
powVT's user avatar
  • 11
0 votes
1 answer
158 views

I'm working on implementing signature verification using the Safe SDK in conjunction with EIP-1271. Currently, I'm referring to this documentation for initializing my application with EIP-1271. I have ...
GianluK.eth's user avatar
2 votes
0 answers
432 views

I have an Ethereum dApp that can support users connecting from EOA or smart contract wallets. In the case of smart contracts the contract they connect with must implement isValidSingature (EIP 1271) ...
Alex Sumner's user avatar
0 votes
0 answers
221 views

I'm playing around with the WalletConnect off-chain signature repo: https://github.com/5afe/eip-1271-dapp/tree/main and I'm trying to find a way to create off-chain signed proposals without having to ...
Liberalite's user avatar
0 votes
1 answer
281 views

AFAIK, to verify a message, I need three things - message, signer wallet address and signature which is the signed message. Like when I use MyEtherWallet signing tool. But in function isValidSignature,...
ratib90486's user avatar
3 votes
0 answers
352 views

I observed a strange behaviour that I cannot explain. I'm calling the EIP-1271 function function isValidSignature(bytes32 _dataHash, bytes calldata _signature) external view returns (bytes4) of the ...
Michael's user avatar
  • 250
0 votes
0 answers
885 views

I want to use EIP1271 to sign a message as a signer for a gnosis safe, but unfortunately, the safe says false. I tried some things bot nothing really helps, so I thought it could make sense to ask ...
Jörg Kiesewetter's user avatar
2 votes
1 answer
2k views

I'm trying to support Argent wallet signing (contract wallet / compatible EIP-1271) through Wallet-Connect. Let's say I have a Gnosis-Safe with the following setup: (owners: [argent-contract-addr], ...
Greg Jeanmart's user avatar