From 10fb523ad867b465d4f2ee6e15b6b6a596f0d57a Mon Sep 17 00:00:00 2001 From: MOHAMMED MAALI Date: Wed, 25 Sep 2024 13:17:17 -0400 Subject: [PATCH] add blast mainnet rpc_url and chainId to types and constants --- src/constants.ts | 2 ++ src/types.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index 2feb4c7..6cb8076 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -58,6 +58,8 @@ export const ASSETS: { [key: string]: Asset } = { [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" }, + [ChainId.BLAST]: { assetId: 'BLAST', rpcUrl: "https://rpc.ankr.com/blast"}, + // [ChainId.BLAST_SEPOLIA]: { assetId: 'BLAST_TEST', rpcUrl: "https://sepolia.blast.io"}, } export const SIGNER_METHODS = [ diff --git a/src/types.ts b/src/types.ts index c08219b..1b3a778 100644 --- a/src/types.ts +++ b/src/types.ts @@ -58,6 +58,8 @@ export enum ChainId { FLARE = 14, MANTLE = 5000, MANTLE_TEST = 5001, + BLAST = 81457, + // BLAST_SEPOLIA = 168587773, } export enum ApiBaseUrl {