diff --git a/src/constants.ts b/src/constants.ts index 7b24bc0..2feb4c7 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -56,6 +56,8 @@ export const ASSETS: { [key: string]: Asset } = { [ChainId.LINEA]: { assetId: 'LINEA', rpcUrl: "https://rpc.linea.build" }, [ChainId.LINEA_TEST]: { assetId: 'LINEA_TEST', rpcUrl: "https://rpc.goerli.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" }, } export const SIGNER_METHODS = [ diff --git a/src/types.ts b/src/types.ts index 5a98248..c08219b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -56,6 +56,8 @@ export enum ChainId { LINEA = 59144, LINEA_TEST = 59140, FLARE = 14, + MANTLE = 5000, + MANTLE_TEST = 5001, } export enum ApiBaseUrl {