-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MOST-166: Added EVM_MAINNET key to hardhat config. (#238)
* MOST-166: Added EVM_MAINNET key to hardhat config. Supplied Testnet configuration used in the past as well. * Linter * Review
- Loading branch information
1 parent
73d5db6
commit a1f03ff
Showing
5 changed files
with
75 additions
and
0 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,11 @@ | ||
{ | ||
"ws_node": "wss://ws.azero.dev", | ||
"relayers": [ | ||
"<AZERO deployer address>" | ||
], | ||
"deployer_seed": "<AZERO deployer seed>", | ||
"signature_threshold": 1, | ||
"dev": false, | ||
"azero_deposit": 100000, | ||
"token_config_path": "/../../cfg/l2_tokens_mainnet.json" | ||
} |
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,11 @@ | ||
{ | ||
"ws_node": "wss://ws.test.azero.dev", | ||
"relayers": [ | ||
"<TZERO deployer address>" | ||
], | ||
"deployer_seed": "<TZERO deployer seed>", | ||
"signature_threshold": 1, | ||
"dev": false, | ||
"azero_deposit": 100000, | ||
"token_config_path": "/../../cfg/l2_tokens_testnet.json" | ||
} |
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 @@ | ||
{ | ||
"eth": [], | ||
"aleph": [ | ||
{ | ||
"name": "Wrapped AZERO", | ||
"symbol": "wAZERO", | ||
"decimals": 12, | ||
"deployed": true, | ||
"address": "5CtuFVgEUz13SFPVY6s2cZrnLDEkxQXc19aXrNARwEBeCXgg" | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"eth": [], | ||
"aleph": [ | ||
{ | ||
"name": "Wrapped AZERO", | ||
"symbol": "wAZERO", | ||
"decimals": 12, | ||
"deployed": true, | ||
"address": "5EFDb7mKbougLtr5dnwd5KDfZ3wK55JPGPLiryKq4uRMPR46" | ||
} | ||
] | ||
} |
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