Skip to content

Commit 9704483

Browse files
authored
hotfix(builder): set infura as default rpc for the registry (#1686)
2 parents 86763ab + 25f74d9 commit 9704483

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

packages/builder/src/constants.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,23 @@ export const DEFAULT_REGISTRY_CONFIG = [
1414
{
1515
name: 'OP Mainnet',
1616
chainId: 10,
17-
rpcUrl: ['frame', 'direct', 'https://opt-mainnet.g.alchemy.com/v2/2c6Mq72inJF0FBlKPMK8pe6TolJMar6G'],
17+
rpcUrl: [
18+
'frame',
19+
'direct',
20+
'https://optimism-mainnet.infura.io/v3/9f7e95d07f4e42e7a54d4dc90f57fd5d',
21+
'https://opt-mainnet.g.alchemy.com/v2/2c6Mq72inJF0FBlKPMK8pe6TolJMar6G',
22+
],
1823
address: DEFAULT_REGISTRY_ADDRESS,
1924
},
2025
{
2126
name: 'Ethereum Mainnet',
2227
chainId: 1,
23-
rpcUrl: ['frame', 'direct', 'https://eth-mainnet.g.alchemy.com/v2/2c6Mq72inJF0FBlKPMK8pe6TolJMar6G'],
28+
rpcUrl: [
29+
'frame',
30+
'direct',
31+
'https://mainnet.infura.io/v3/9f7e95d07f4e42e7a54d4dc90f57fd5d',
32+
'https://eth-mainnet.g.alchemy.com/v2/2c6Mq72inJF0FBlKPMK8pe6TolJMar6G',
33+
],
2434
address: DEFAULT_REGISTRY_ADDRESS,
2535
},
2636
];

0 commit comments

Comments
 (0)