add mainnet

This commit is contained in:
Alexey 2021-10-18 11:39:19 +03:00
parent 9325e5a331
commit fb624e57c9
No known key found for this signature in database
GPG Key ID: C77958099D784E76
2 changed files with 10 additions and 0 deletions

View File

@ -1,4 +1,6 @@
PRIVATE_KEY=
ETH_RPC=https://
XDAI_RPC=https://
BSC_RPC=https://
MINIMUM_WITHDRAWAL_AMOUNT=0.05
MAXIMUM_DEPOSIT_AMOUNT=1

View File

@ -54,6 +54,14 @@ const config = {
mnemonic: 'test test test test test test test test test test test junk',
},
},
mainnet: {
url: process.env.ETH_RPC || '',
accounts: process.env.PRIVATE_KEY
? [process.env.PRIVATE_KEY]
: {
mnemonic: 'test test test test test test test test test test test junk',
},
},
},
mocha: {
timeout: 600000000,