-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
2,337 additions
and
3,964 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# if you want to deploy on a specific network and not expose your api key | ||
# you just create a .env.local (or .env.<network>.local) with the following | ||
# ETH_NODE_URI_<network>=<endpoint-url> | ||
# MNEMONIC_<network>="<mnemonic>>" | ||
# you can also add the etherscan api key for verification | ||
# ETHERSCAN_API_KEY=<api-key> | ||
|
||
ETH_NODE_URI_localhost="http://127.0.0.1:8545" | ||
MNEMONIC_localhost="test test test test test test test test test test test junk" | ||
|
||
ETH_NODE_URI_lan="http://ethereum.local:8545" | ||
MNEMONIC_lan="test test test test test test test test test test test junk" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
cache/ | ||
artifacts/ | ||
|
||
coverage* | ||
typechain-types/ | ||
/node_modules | ||
|
||
.vscode/* | ||
!.vscode/settings.json.default | ||
!.vscode/launch.json.default | ||
!.vscode/extensions.json.default | ||
!*.default | ||
*.local | ||
|
||
# rocketh | ||
generated | ||
deployments/localhost | ||
deployments/hardhat | ||
deployments/lan | ||
_metadata | ||
|
||
node_modules/ | ||
.env | ||
# hardhat | ||
/coverage | ||
/coverage.json | ||
/.coverage-config.json | ||
/.coverage-data.json | ||
cache | ||
artifacts | ||
docs | ||
|
||
.prettierrc.js | ||
pnpm-lock.yaml | ||
package.json | ||
# foundry | ||
forge-cache/ | ||
forge-artifacts/ | ||
|
||
contractsInfo.json | ||
deployments/hardhat | ||
deployments/localhost | ||
# Note: by default we ignore lib/forge-std as we do not use submodules | ||
# install it via `git clone --recursive https://github.com/foundry-rs/forge-std.git lib/forge-std` | ||
lib/forge-std | ||
|
||
/.dapp |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
export/ | ||
deployments/ | ||
artifacts/ | ||
cache/ | ||
coverage/ | ||
node_modules/ | ||
package.json | ||
typechain-types/ | ||
dapp_test/test.sol | ||
_lib/ | ||
.dappp | ||
*.json | ||
.yalc | ||
############################################ | ||
# .gitignore | ||
############################################# | ||
node_modules | ||
.vscode/* | ||
!*.default | ||
*.local | ||
|
||
.prettierrc.js | ||
pnpm-lock.yaml | ||
# rocketh | ||
generated | ||
deployments/localhost | ||
|
||
# hardhat | ||
/coverage | ||
/coverage.json | ||
/coverage-data.json | ||
cache | ||
artifacts | ||
|
||
docs | ||
*.hbs | ||
|
||
############################################# | ||
deployments | ||
package.json | ||
pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"bracketSpacing": false, | ||
|
||
"plugins": ["prettier-plugin-solidity"], | ||
"overrides": [ | ||
{ | ||
"files": "*.sol", | ||
"options": { | ||
"parser": "solidity-parse", | ||
"printWidth": 120, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"singleQuote": false, | ||
"bracketSpacing": false | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.