diff --git a/packages/example/src/wagmi.ts b/packages/example/src/wagmi.ts index 636f714c8f..f864be49fc 100644 --- a/packages/example/src/wagmi.ts +++ b/packages/example/src/wagmi.ts @@ -75,7 +75,6 @@ import { celo, celoAlfajores, holesky, - ink, inkSepolia, klaytn, klaytnBaobab, @@ -134,6 +133,21 @@ const sei = { contracts: {}, } as const satisfies Chain; +const ink = { + id: 57073, + name: 'Ink', + iconUrl: 'https://inkonchain.com/icons/ink-sepolia-logo.svg', + iconBackground: '#fff', + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + rpcUrls: { + default: { http: ['https://rpc-gel.inkonchain.com'] }, + }, + blockExplorers: { + default: { name: 'Blockscout', url: 'https://explorer.inkonchain.com/' }, + }, + contracts: {}, +} as const satisfies Chain; + // Enable Smart Wallet and EOA // Testing `preference` type coinbaseWallet.preference = 'all';