Skip to content

Commit

Permalink
add blast mainnet rpc_url and chainId to types and constants (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: MOHAMMED MAALI <mmaali@fireblocks.com>
  • Loading branch information
brohamgoham and MMaaliFireblocks authored Sep 26, 2024
1 parent 3dda98f commit d7f6ede
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 2 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ export enum ChainId {
FLARE = 14,
MANTLE = 5000,
MANTLE_TEST = 5001,
BLAST = 81457,
// BLAST_SEPOLIA = 168587773,
}

export enum ApiBaseUrl {
Expand Down

0 comments on commit d7f6ede

Please sign in to comment.