This commit is contained in:
Danil Kovtonyuk 2021-11-22 16:47:21 +10:00
parent fc8f142e14
commit 838c661dfd
No known key found for this signature in database
GPG Key ID: E72A919BF08C3746
4 changed files with 22 additions and 14 deletions

View File

@ -6,6 +6,6 @@ SALT=0x1234000000000000000000000000000000000000000000000000000047941987
PRIVATE_KEY=0x
RPC_URL=https://api.avax.network/ext/bc/C/rpc
NET_ID=43114
RPC_URL=https://arb1.arbitrum.io/rpc
NET_ID=42161
GAS_PRICE_IN_WEI=5000000000

View File

@ -6,7 +6,7 @@
## Usage
```
git clone --recursive https://github.com/tornadocash/tornado-deploy -b avalanche
git clone --recursive https://github.com/tornadocash/tornado-deploy -b arbitrum
cd tornado-deploy
cp .env.example .env
yarn

View File

@ -1,23 +1,30 @@
module.exports = [
{
isETH: true,
denomination: '100000000000000000',
domain: 'eth-01.tornadocash.eth',
symbol: 'ETH',
decimals: 18,
},
{
isETH: true,
denomination: '1000000000000000000',
domain: 'eth-1.tornadocash.eth',
symbol: 'ETH',
decimals: 18,
},
{
isETH: true,
denomination: '10000000000000000000',
domain: 'avax-10.tornadocash.eth',
symbol: 'AVAX',
domain: 'eth-10.tornadocash.eth',
symbol: 'ETH',
decimals: 18,
},
{
isETH: true,
denomination: '100000000000000000000',
domain: 'avax-100.tornadocash.eth',
symbol: 'AVAX',
decimals: 18,
},
{
isETH: true,
denomination: '500000000000000000000',
domain: 'avax-500.tornadocash.eth',
symbol: 'AVAX',
domain: 'eth-100.tornadocash.eth',
symbol: 'ETH',
decimals: 18,
},
]

View File

@ -10,6 +10,7 @@ const prefix = {
56: 'bscscan.com',
100: 'blockscout.com/xdai/mainnet',
137: 'polygonscan.com',
42161: 'snowtrace.io',
43114: 'cchain.explorer.avax.network',
}