import { Chain } from './types' export const gnosis = { id: 100, name: 'Gnosis', network: 'gnosis', nativeCurrency: { decimals: 18, name: 'Gnosis', symbol: 'xDAI', }, rpcUrls: { default: { http: ['https://rpc.gnosischain.com'] }, public: { http: ['https://rpc.gnosischain.com'] }, }, blockExplorers: { etherscan: { name: 'Gnosisscan', url: 'https://gnosisscan.io/', }, default: { name: 'Gnosis Chain Explorer', url: 'https://blockscout.com/xdai/mainnet/', }, }, } as const satisfies Chain