Skip to content

Commit

Permalink
new template
Browse files Browse the repository at this point in the history
  • Loading branch information
wighawag committed May 1, 2024
1 parent 41b7a91 commit 66514d2
Show file tree
Hide file tree
Showing 47 changed files with 2,337 additions and 3,964 deletions.
12 changes: 12 additions & 0 deletions .env
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"
13 changes: 0 additions & 13 deletions .env.example

This file was deleted.

2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/nodejs-tests.yml

This file was deleted.

41 changes: 24 additions & 17 deletions .gitignore
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
16 changes: 0 additions & 16 deletions .mocharc.js

This file was deleted.

39 changes: 24 additions & 15 deletions .prettierignore
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
21 changes: 21 additions & 0 deletions .prettierrc
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
}
}
]
}
17 changes: 0 additions & 17 deletions .prettierrc.js

This file was deleted.

12 changes: 0 additions & 12 deletions .setup.js

This file was deleted.

10 changes: 0 additions & 10 deletions .vscode/extensions.json.default

This file was deleted.

14 changes: 0 additions & 14 deletions .vscode/launch.json.default

This file was deleted.

12 changes: 0 additions & 12 deletions .vscode/settings.json.default

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 66514d2

Please sign in to comment.