Skip to content

Commit

Permalink
Merge branch 'main' into iyk/add-expo-example
Browse files Browse the repository at this point in the history
  • Loading branch information
iykazrji authored Dec 18, 2024
2 parents 77ba757 + 0a6606e commit 4bb1aa7
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
54 changes: 54 additions & 0 deletions account-kit/infra/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,24 @@ export const soneiumMinato: Chain = defineChain({
},
});

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

export const opbnbTestnet: Chain = defineChain({
id: 5611,
name: "OPBNB Testnet",
Expand Down Expand Up @@ -418,6 +436,42 @@ 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",
network: "Ink Sepolia",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: {
http: ["https://ink-sepolia.g.alchemy.com/v2"],
},
public: {
http: ["https://ink-sepolia.g.alchemy.com/v2"],
},
alchemy: {
http: ["https://ink-sepolia.g.alchemy.com/v2"],
},
},
});

export const arbitrumNova: Chain = {
...vabn,
rpcUrls: {
Expand Down
3 changes: 3 additions & 0 deletions account-kit/infra/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ export {
opbnbMainnet,
opbnbTestnet,
soneiumMinato,
soneiumMainnet,
unichainMainnet,
unichainSepolia,
inkMainnet,
inkSepolia,
} from "./chains.js";
export type * from "./client/decorators/alchemyEnhancedApis.js";
export { alchemyEnhancedApiActions } from "./client/decorators/alchemyEnhancedApis.js";
Expand Down

0 comments on commit 4bb1aa7

Please sign in to comment.