From baad28a6b1df36f66eae1fb723bbcfdc61592a51 Mon Sep 17 00:00:00 2001 From: Adam Egyed <5456061+adamegyed@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:47:11 -0800 Subject: [PATCH] feat: add mekong devnet support (#1239) --- account-kit/infra/src/chains.ts | 18 ++++++++++++++++++ account-kit/infra/src/index.ts | 1 + 2 files changed, 19 insertions(+) diff --git a/account-kit/infra/src/chains.ts b/account-kit/infra/src/chains.ts index 0b1b24d4f2..a67f006df6 100644 --- a/account-kit/infra/src/chains.ts +++ b/account-kit/infra/src/chains.ts @@ -478,3 +478,21 @@ export const arbitrumNova: Chain = { ...vabn.rpcUrls, }, }; + +export const mekong: Chain = defineChain({ + id: 7078815900, + name: "Mekong Pectra Devnet", + nativeCurrency: { name: "eth", symbol: "eth", decimals: 18 }, + rpcUrls: { + default: { + http: ["https://rpc.mekong.ethpandaops.io"], + }, + }, + blockExplorers: { + default: { + name: "Block Explorer", + url: "https://explorer.mekong.ethpandaops.io", + }, + }, + testnet: true, +}); diff --git a/account-kit/infra/src/index.ts b/account-kit/infra/src/index.ts index 814451230d..d0f4b43ae8 100644 --- a/account-kit/infra/src/index.ts +++ b/account-kit/infra/src/index.ts @@ -39,6 +39,7 @@ export { unichainSepolia, inkMainnet, inkSepolia, + mekong, } from "./chains.js"; export type * from "./client/decorators/alchemyEnhancedApis.js"; export { alchemyEnhancedApiActions } from "./client/decorators/alchemyEnhancedApis.js";