-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
6d18403
commit c5b8ff9
Showing
1 changed file
with
32 additions
and
2 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 |
---|---|---|
@@ -1,2 +1,32 @@ | ||
PRIVATE_KEY= | ||
CMC_KEY= | ||
# used to configure the code based on network see: hardhat.config.js | ||
BLOCKCHAIN_NETWORK=hardhat | ||
|
||
# coin market cap key to estimate the gas cost in unit tests | ||
BLOCKCHAIN_CMC_KEY= | ||
|
||
# scanner API key | ||
BLOCKCHAIN_SCANNER_KEY= | ||
|
||
# localhost settings | ||
BLOCKCHAIN_LOCALHOST_PRIVATE_KEY= | ||
BLOCKCHAIN_LOCALHOST_NAMESPACE_ADDRESS= | ||
BLOCKCHAIN_LOCALHOST_TOKEN_ADDRESS= | ||
BLOCKCHAIN_LOCALHOST_TREASURY_ADDRESS= | ||
BLOCKCHAIN_LOCALHOST_ECONOMY_ADDRESS= | ||
BLOCKCHAIN_LOCALHOST_VESTING_ADDRESS= | ||
|
||
# testnet settings | ||
BLOCKCHAIN_TESTNET_PRIVATE_KEY= | ||
BLOCKCHAIN_TESTNET_NAMESPACE_ADDRESS= | ||
BLOCKCHAIN_TESTNET_TOKEN_ADDRESS= | ||
BLOCKCHAIN_TESTNET_TREASURY_ADDRESS= | ||
BLOCKCHAIN_TESTNET_ECONOMY_ADDRESS= | ||
BLOCKCHAIN_TESTNET_VESTING_ADDRESS= | ||
|
||
# mainnet settings | ||
BLOCKCHAIN_MAINNET_PRIVATE_KEY= | ||
BLOCKCHAIN_MAINNET_NAMESPACE_ADDRESS= | ||
BLOCKCHAIN_MAINNET_TOKEN_ADDRESS= | ||
BLOCKCHAIN_MAINNET_TREASURY_ADDRESS= | ||
BLOCKCHAIN_MAINNET_ECONOMY_ADDRESS= | ||
BLOCKCHAIN_MAINNET_VESTING_ADDRESS= |