Skip to content

Commit b1a3022

Browse files
authored
Merge pull request #252 from BitGo/WIIN-6720
fix: update IRYS testnet RPC URLs in hardhat configuration
2 parents 8eaec28 + bf998bd commit b1a3022

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hardhat.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -553,15 +553,15 @@ const config: HardhatUserConfig = {
553553
]
554554
},
555555
tirys: {
556-
url: `https://inst-1.cloud.blockscout.com/api/eth-rpc`,
556+
url: `http://testnet-rpc.irys.xyz/v1/execution-rpc`,
557557
accounts: [
558558
`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`,
559559
`${PLACEHOLDER_KEY}`,
560560
`${PRIVATE_KEY_FOR_BATCHER_CONTRACT_DEPLOYMENT}`
561561
]
562562
},
563563
irys: {
564-
url: `https://inst-1.cloud.blockscout.com/api/eth-rpc`, // TODO: Update with mainnet URL when available
564+
url: `http://testnet-rpc.irys.xyz/v1/execution-rpc`, // TODO: Update with mainnet URL when available
565565
accounts: [
566566
`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`,
567567
`${PLACEHOLDER_KEY}`,
@@ -1076,15 +1076,15 @@ const config: HardhatUserConfig = {
10761076
chainId: CHAIN_IDS.IRYS_TESTNET,
10771077
urls: {
10781078
apiURL: 'https://inst-1.cloud.blockscout.com/api',
1079-
browserURL: 'https://inst-1.cloud.blockscout.com'
1079+
browserURL: 'https://testnet-explorer.irys.xyz/'
10801080
}
10811081
},
10821082
{
10831083
network: 'irysMainnet',
10841084
chainId: CHAIN_IDS.IRYS,
10851085
urls: {
1086-
apiURL: 'https://inst-1.cloud.blockscout.com/api',
1087-
browserURL: 'https://inst-1.cloud.blockscout.com'
1086+
apiURL: 'https://inst-1.cloud.blockscout.com/api', // TODO: Update with mainnet URL when available
1087+
browserURL: 'https://testnet-explorer.irys.xyz/'
10881088
}
10891089
}
10901090
]

0 commit comments

Comments
 (0)