Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

common: add moonbeam, fuse, blast to chain id lookups #980

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/indexer-common/src/indexer-management/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@ export const Caip2ByChainAlias: { [key: string]: string } = {
linea: 'eip155:59144',
scroll: 'eip155:534352',
base: 'eip155:8453',
moonbeam: 'eip155:1284',
fuse: 'eip155:122',
blast: 'eip155:81457',
}

export const Caip2ByChainId: { [key: number]: string } = {
dwerner marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -204,6 +207,9 @@ export const Caip2ByChainId: { [key: number]: string } = {
59144: 'eip155:59144',
534352: 'eip155:534352',
8453: 'eip155:8453',
1284: 'eip155:1284',
122: 'eip155:122',
81457: 'eip155:81457',
}

/// Unified entrypoint to resolve CAIP ID based either on chain aliases (strings)
Expand Down
Loading