Skip to content

Commit

Permalink
fix: hardcode ink
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSinclair committed Dec 18, 2024
1 parent f95f3b8 commit 236359d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion packages/example/src/wagmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ import {
celo,
celoAlfajores,
holesky,
ink,
inkSepolia,
klaytn,
klaytnBaobab,
Expand Down Expand Up @@ -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';
Expand Down

0 comments on commit 236359d

Please sign in to comment.