Skip to content

Commit

Permalink
add fantom config
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolev-igor committed Jun 12, 2023
1 parent e9b5316 commit e1326f9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ const config: HardhatUserConfig = {
timeout: 400000,
},
mainnet: {
url: 'https://cloudflare-eth.com/',
url: 'https://cloudflare-eth.com',
},
xdai: {
url: 'https://rpc.gnosischain.com/',
url: 'https://rpc.gnosischain.com',
},
bsc: {
url: 'https://bsc-dataseed.binance.org/',
url: 'https://bsc-dataseed.binance.org',
},
avalanche: {
url: 'https://api.avax.network/ext/bc/C/rpc',
Expand All @@ -66,6 +66,9 @@ const config: HardhatUserConfig = {
aurora: {
url: 'https://mainnet.aurora.dev',
},
fantom: {
url: 'https://rpc.ftm.tools',
},
},
etherscan: {
apiKey: {
Expand All @@ -77,6 +80,7 @@ const config: HardhatUserConfig = {
'aurora': 'no',
'gnosis': process.env.GNOSIS_API_KEY ? process.env.GNOSIS_API_KEY.toString() : '',
'avalanche': process.env.AVALANCHE_API_KEY ? process.env.AVALANCHE_API_KEY.toString() : '',
'opera': process.env.FANTOM_API_KEY ? process.env.FANTOM_API_KEY.toString() : '',
},
},
docgen: {
Expand Down

0 comments on commit e1326f9

Please sign in to comment.