From de770e8c85715a575e1e47aa6e659a377e664aff Mon Sep 17 00:00:00 2001 From: Victor Graf Date: Fri, 17 Jan 2025 14:48:01 -0800 Subject: [PATCH] add Linea sepolia to known chain and asset IDs --- src/constants.ts | 1 + src/types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index 473f227..34c2a65 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -55,6 +55,7 @@ export const ASSETS: { [key: string]: Asset } = { [ChainId.SHIMMEREVM]: { assetId: 'SMR_SMR', rpcUrl: "https://json-rpc.evm.shimmer.network" }, [ChainId.LINEA]: { assetId: 'LINEA', rpcUrl: "https://rpc.linea.build" }, [ChainId.LINEA_TEST]: { assetId: 'LINEA_TEST', rpcUrl: "https://rpc.goerli.linea.build" }, + [ChainId.LINEA_SEPOLIA_TEST]: { assetId: 'LINEA_SEPOLIA_TEST', rpcUrl: "https://rpc.sepolia.linea.build" }, [ChainId.FLARE]: { assetId: 'FLR', rpcUrl: "https://flare-api.flare.network/ext/C/rpc" }, [ChainId.MANTLE]: { assetId: 'MANTLE', rpcUrl: "https://rpc.mantle.xyz" }, [ChainId.MANTLE_TEST]: { assetId: 'MANTLE_TEST', rpcUrl: "https://rpc.testnet.mantle.xyz" }, diff --git a/src/types.ts b/src/types.ts index 790a140..437fc72 100644 --- a/src/types.ts +++ b/src/types.ts @@ -55,6 +55,7 @@ export enum ChainId { SHIMMEREVM = 148, LINEA = 59144, LINEA_TEST = 59140, + LINEA_SEPOLIA_TEST = 59141, FLARE = 14, MANTLE = 5000, MANTLE_TEST = 5001,