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 {