This project is a CryptoVault for Ethereum, enabling multiple owners to approve transactions before execution. It enhances security by requiring multiple signatures, preventing unauthorized access to funds.
- Create secure transactions requiring multiple approvals.
- Send ETH and interact with smart contracts.
- Add or remove signers dynamically.
- Transparent transaction history.
- Solidity: Smart contract development
- Ethers.js: Frontend interaction with Ethereum
- Hardhat: Development and testing framework
- React.js: User-friendly UI (if applicable)
git clone https://github.com/Kayleexx/CryptoVault.git
cd CryptoVault
npm install
npx hardhat compile
npx hardhat test
- Enter the recipient address.
- Input the amount of ETH.
- (Optional) Enter transaction data in hex format for contract interactions.
- Click Submit, and signers must approve before execution.
For an ERC20 token transfer:
0xa9059cbb0000000000000000000000001234567890abcdef1234567890abcdef123456780000000000000000000000000000000000000000000000000000000000000186a0
Function | Description |
---|---|
submitTransaction |
Creates a transaction request. |
confirmTransaction |
Approves a transaction. |
executeTransaction |
Executes after required approvals. |
revokeConfirmation |
Revokes approval if not yet executed. |
addSigner |
Adds a new wallet signer. |
removeSigner |
Removes a wallet signer. |