Skip to content

AdrianGeorgeM/Multi-Signature-Contract-Wallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MULTI-SIGNATURE WALLET

Multi-signature smart-contract A multi-signature contract acts as a "wallet" as it can hold and transfer funds. It is called "multi-sig" because it typically needs greater than one signatures to approve any wallet activity such as transferring funds out. Since multi-sigs are powered by multiple keys, they avoid a single point of failure, which makes it significantly harder for funds to be compromised.

⛓ This design provides a higher degree of security against lost or compromised keys. 🔑🗝🔐 Funds-Structure

An EOA directly controls an address and any funds associated to it because the external actor has direct ownership over the private key needed to sign and authorize transactions on the Ethereum network.

In certain cases, this is considered a single point of failure. Why? Well, the external actor's private key could become compromised by a hacker via phishing or physically stolen! Even as bad, the private key could be lost by the external actor, meaning the direct control over an address's balance no longer exists. Try running some of the following tasks:

npx hardhat help
npx hardhat test
REPORT_GAS=true npx hardhat test
npx hardhat node
npx hardhat run scripts/deploy.js

About

Multi-Signature Smart-contract designed so that multiple signatures from different addresses are needed for a transaction to be executed.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published