Skip to content

Commit aca0da3

Browse files
feat: add support arbitrum mainnet
1 parent 27fd440 commit aca0da3

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/config/config.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,19 @@ export const CHAIN_CONFIG: Record<number, ChainConfig> = {
3535
'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/5YjRPLtjS6GH6bB4yY55Qg4HzwtRGQ8TaHtGf9UBWWd',
3636
ipfsGateway: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec',
3737
ipfsUploadUrl: 'https://ipfs-upload.arbitrum-sepolia-testnet.iex.ec',
38-
whitelistSmartContract: '0x7291ff96100DA6CF97933C225B86124ef95aEc9b', // TODO: add the correct address
38+
whitelistSmartContract: '0x7291ff96100DA6CF97933C225B86124ef95aEc9b',
3939
isExperimental: true,
4040
},
41+
42161: {
42+
name: 'arbitrum-mainnet',
43+
dappAddress: undefined, // ENS not supported on this network, address will be resolved from Compass
44+
prodWorkerpoolAddress: '0x2C06263943180Cc024dAFfeEe15612DB6e5fD248',
45+
dataProtectorSubgraph:
46+
'https://thegraph.arbitrum.iex.ec/api/subgraphs/id/Ep5zs5zVr4tDiVuQJepUu51e5eWYJpka624X4DMBxe3u',
47+
ipfsGateway: 'https://ipfs-gateway.arbitrum-mainnet.iex.ec',
48+
ipfsUploadUrl: 'https://ipfs-upload.arbitrum-mainnet.iex.ec',
49+
whitelistSmartContract: '0x53AFc09a647e7D5Fa9BDC784Eb3623385C45eF89',
50+
},
4151
};
4252

4353
export const getChainDefaultConfig = (

0 commit comments

Comments
 (0)