Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic MultiSig Wallet #60

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions DynamicMultiSig_Wallet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
.env
coverage
coverage.json
typechain
typechain-types

# Hardhat files
cache
artifacts

38 changes: 38 additions & 0 deletions DynamicMultiSig_Wallet/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
27 changes: 27 additions & 0 deletions DynamicMultiSig_Wallet/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Dynamic MultiSig Wallet

Medium Article: [Building and Deploying a Dynamic MultiSig Wallet With BuildBear Testnet.](https://medium.com/@molubode81/building-and-deploying-a-dynamic-multisig-wallet-with-buildbear-testnet-e27ceea7a055)

### Features

- Add new owner - A Proposal
- Confirm Proposal
- Execute Proposal
- Get All Proposals
- Get a Proposal
- Dynamically increment numConfirmation based on total owners

### To start using this repository, simply clone it or download the zip file. Once downloaded, run `npm install` to install all the necessary packages.

### To get your own Testnet head [builbear](https://buildbear.io/)

- Create a Testnet on BuildBear
- Copy the RPC and explorer link from the Dashboard and add to the hardhat.config.js file or in .env

### To deploy the dynamicmultisig contract, run `npx hardhat run scripts/deploy.js --network buildbear`.

[Github Repository](https://github.com/SundayOlubode/Solidity-Tutorials/tree/SundayOlubode/DynamicMultiSig_Wallet)

[Smart Contract Explorer](https://explorer.buildbear.io/wicked-rugor-nass-8d7a7a93/address/0x547D0D9D14252b97F759ab951d004EFA8Dbb4298)

[Building and Deploying a Dynamic MultiSig Wallet With BuildBear Testnet.](https://medium.com/@molubode81/building-and-deploying-a-dynamic-multisig-wallet-with-buildbear-testnet-e27ceea7a055)
Loading