Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazyoptimist/personal-wallet-evm-hardhat
Personal Wallet on EVM
https://github.com/crazyoptimist/personal-wallet-evm-hardhat
evm hardhat solidity wallet
Last synced: 2 days ago
JSON representation
Personal Wallet on EVM
- Host: GitHub
- URL: https://github.com/crazyoptimist/personal-wallet-evm-hardhat
- Owner: crazyoptimist
- Created: 2024-01-08T09:37:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-22T18:08:48.000Z (about 1 year ago)
- Last Synced: 2024-12-12T09:05:56.584Z (about 2 months ago)
- Topics: evm, hardhat, solidity, wallet
- Language: JavaScript
- Homepage:
- Size: 216 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Wallet
Personal Wallet on EVM
### Run tests
```bash
npm test
```### Configure Variables
`npm test` command will let you know what configuration variables should be set. Set all the variables until tests are passed.
Doc: [Hardhat Configuration Variables](https://hardhat.org/hardhat-runner/docs/guides/configuration-variables)
### Deploy to Ethereum network
```bash
npx hardhat run scripts/deployVault.js --network ethereum
```Upon successful deployment, `DEPLOYED_ADDRESS` will be printed to stdout.
### Verify on Etherscan
```bash
npx hardhat verify --network ethereum DEPLOYED_ADDRESS
```