mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
Tenderly (test)
This commit is contained in:
parent
0d6fe181fc
commit
7029fbd0c1
|
@ -1 +1,4 @@
|
|||
ETHERSCAN_API_KEY=""
|
||||
PRIVATE_KEY=""
|
||||
TENDERLY_PROJECT=""
|
||||
TENDERLY_USERNAME=""
|
|
@ -18,7 +18,27 @@ module.exports = {
|
|||
}
|
||||
]
|
||||
},
|
||||
networks: {
|
||||
tenderlyMainnet: {
|
||||
url: 'https://mainnet.tenderly.co',
|
||||
accounts: [process.env.PRIVATE_KEY],
|
||||
chainId: 1,
|
||||
gasPrice: 25120000000,
|
||||
timeout: 500000
|
||||
},
|
||||
tenderlyKovan: {
|
||||
url: 'https://kovan.tenderly.co',
|
||||
accounts: [process.env.PRIVATE_KEY],
|
||||
chainId: 42,
|
||||
gasPrice: 40000000000,
|
||||
timeout: 50000
|
||||
}
|
||||
},
|
||||
etherscan: {
|
||||
apiKey: process.env.ETHERSCAN_API_KEY
|
||||
},
|
||||
tenderly: {
|
||||
project: process.env.TENDERLY_PROJECT,
|
||||
username: process.env.TENDERLY_USERNAME,
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user