-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
35 lines (32 loc) · 1.13 KB
/
config.ts
File metadata and controls
35 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import arbitrumSepoliaIcon from './assets/chain-icons/arbitrum-sepolia.svg';
import iexecLogo from './assets/iexec-logo.svg';
import { bellecour, arbitrumSepolia } from './utils/wagmiNetworks';
export const PREVIEW_TABLE_LENGTH = 5;
export const DETAIL_TABLE_LENGTH = 8;
export const TABLE_LENGTH = 16;
export const PREVIEW_TABLE_REFETCH_INTERVAL = 10_000;
export const TABLE_REFETCH_INTERVAL = 10_000;
export const IPFS_GATEWAY_URL = 'https://ipfs.iex.ec';
export const SUPPORTED_CHAINS = [
{
id: 134,
name: 'Bellecour',
slug: 'bellecour',
color: '#F4942566',
icon: iexecLogo,
blockExplorerUrl: 'https://blockscout-bellecour.iex.ec',
subgraphUrl: 'https://thegraph.iex.ec/subgraphs/name/bellecour/poco-v5',
wagmiNetwork: bellecour,
},
{
id: 421614,
name: 'Arbitrum Sepolia',
slug: 'arbitrum-sepolia-testnet',
color: '#28A0F080',
icon: arbitrumSepoliaIcon,
blockExplorerUrl: 'https://sepolia.arbiscan.io/',
subgraphUrl:
'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/2GCj8gzLCihsiEDq8cYvC5nUgK6VfwZ6hm3Wj8A3kcxz',
wagmiNetwork: arbitrumSepolia,
},
];