https://github.com/dyslex7c/multisigwallet-eip712
https://github.com/dyslex7c/multisigwallet-eip712
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dyslex7c/multisigwallet-eip712
- Owner: Dyslex7c
- License: mit
- Created: 2025-02-27T16:54:58.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-02-27T17:55:10.000Z (2 months ago)
- Last Synced: 2025-02-27T23:44:38.827Z (2 months ago)
- Language: JavaScript
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MultiSig Wallet with EIP-712
Smart contract wallet deployed on base sepolia: 0xf1Da1b87f3364a8037A92aD31449eD5D91331B8c
1. **Deploy:** Initialize the contract with an array of owner addresses and the number of required approvals.
2. **Fund:** Transfer ETH directly to the deployed contract address.
3. **Submit:** An owner submits a transaction by signing off-chain with EIP-712 and then sending it on-chain.
4. **Approve & Execute:** Other owners approve the transaction. Once the approval threshold is met, execute the transaction.## Deploy and verify the contract
```
source .env
forge script script/DeployMultiSigWallet.s.sol --rpc-url base_sepolia --broadcast --verify
```## Export ABI
```
forge inspect MultiSigWallet abi --json > abi.json
```