Skip to content

Commit

Permalink
add blast mainnet rpc_url and chainId to types and constants
Browse files Browse the repository at this point in the history
  • Loading branch information
MMaaliFireblocks committed Sep 25, 2024
1 parent 3dda98f commit 10fb523
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 10fb523

Please sign in to comment.