Skip to content

Commit

Permalink
feat: add ink mainnet (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-miao authored Dec 17, 2024
1 parent de83640 commit 0a6606e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions account-kit/infra/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,24 @@ export const beraChainBartio: Chain = defineChain({
},
});

export const inkMainnet: Chain = defineChain({
id: 57073,
name: "Ink Mainnet",
network: "Ink Mainnet",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: {
http: ["https://ink-mainnet.g.alchemy.com/v2"],
},
public: {
http: ["https://ink-mainnet.g.alchemy.com/v2"],
},
alchemy: {
http: ["https://ink-mainnet.g.alchemy.com/v2"],
},
},
});

export const inkSepolia: Chain = defineChain({
id: 763373,
name: "Ink Sepolia",
Expand Down
1 change: 1 addition & 0 deletions account-kit/infra/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export {
soneiumMainnet,
unichainMainnet,
unichainSepolia,
inkMainnet,
inkSepolia,
} from "./chains.js";
export type * from "./client/decorators/alchemyEnhancedApis.js";
Expand Down

0 comments on commit 0a6606e

Please sign in to comment.