From 236359d3948fbe16bbfe39612d2a45a71c3da7ab Mon Sep 17 00:00:00 2001 From: Daniel Sinclair Date: Wed, 18 Dec 2024 05:12:51 -0500 Subject: [PATCH] fix: hardcode ink --- packages/example/src/wagmi.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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';