Ethereum multisignature wallet smart contract that requires a quorum of signatures to approve transactions. Written in Solidity and deployed using Truffle to Ethereum test networks.
- Multisignature Support: Requires multiple signatures to approve transactions
- Quorum-Based: Configurable quorum threshold for transaction approval
- Secure: Smart contract-based wallet for enhanced security
- Truffle Deployment: Easy deployment to test networks
- Smart Contracts: Solidity
- Deployment: Truffle
- Network: Ethereum (Kovan testnet)
- Frontend: JavaScript/React
git clone https://github.com/arthur-zhuk/eth-multisig-wallet.git
cd eth-multisig-wallet
npm installtruffle compiletruffle migrate --network kovantruffle test- Multiple owner support
- Configurable quorum threshold
- Transaction proposal and approval system
- Secure execution of approved transactions
truffle compile # Compile smart contracts
truffle migrate # Deploy contracts
truffle test # Run test suiteMIT