Skip to content
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
39 changes: 38 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,39 @@
.chain
# File: .gitignore

# Created by https://www.gitignore.io/api/soliditytruffle
# Edit at https://www.gitignore.io/?templates=soliditytruffle

### SolidityTruffle ###
# depedencies
node_modules

# testing
coverage

# production
build
build_webpack

# misc
.DS_Store
.env
npm-debug.log
.truffle-solidity-loader
.vagrant/**
blockchain/geth/**
blockchain/keystore/**
blockchain/history

#truffle
.tern-port
yarn.lock
package-lock.json

# End of https://www.gitignore.io/api/soliditytruffle

### Custom ###
# local ganache chain
.chain

# env
.env
15 changes: 15 additions & 0 deletions example.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
### File: example.env
#

## Mnemonics:
RINKEBY_MNEMONIC= "<your Rinkeby testnet mnemonic>"
SOKOL_MNEMONIC = "<your Sokol testnet mnemonic>"

## Wallet private keys:
RINKEBY_KEY = "<your Rinkeby testnet key here>"
SOKOL_KEY = "<your Sokol testnet key here"
POA_CORE_KEY = "<your POA Core network key here>"
ETH_MAINNET_KEY = "<your Ethereum mainnet key here>"

## API keys:
INFURA_KEY = "<your Infura API key>"
Loading