Skip to content

Commit

Permalink
docs & common: add support for boba, boba-bnb and fix for blast
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiogo authored and dwerner committed Nov 29, 2024
1 parent 7223b49 commit 020ca85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/feature-support-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ The matrix below reflects the canonical Council-ratified version. As outlined in
| eip155:59144 | linea | Yes | Yes | Yes | Yes | Yes |
| eip155:56 | bsc | Yes | Yes | Yes | Yes | Yes |
| eip155:122 | fuse | Yes | Yes | Yes | Yes | Yes |
| eip155:81457 | blast | Yes | Yes | Yes | Yes | Yes |
| eip155:81457 | blast-mainnet | Yes | Yes | Yes | Yes | Yes |
| eip155:288 | boba | Yes | Yes | Yes | Yes | Yes |
| eip155:56288 | boba-bnb | Yes | Yes | Yes | Yes | Yes |
| **Data Source Features** | | | | | | |
| ipfs.cat in mappings | | Yes | Yes | No | No | No |
| ENS | | Yes | Yes | Yes | Yes | Yes |
Expand Down
6 changes: 5 additions & 1 deletion packages/indexer-common/src/indexer-management/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ export const Caip2ByChainAlias: { [key: string]: string } = {
base: 'eip155:8453',
moonbeam: 'eip155:1284',
fuse: 'eip155:122',
blast: 'eip155:81457',
'blast-mainnet': 'eip155:81457',
boba: 'eip155:288',
'boba-bnb': 'eip155:56288',
}

export const Caip2ByChainId: { [key: number]: string } = {
Expand All @@ -210,6 +212,8 @@ export const Caip2ByChainId: { [key: number]: string } = {
1284: 'eip155:1284',
122: 'eip155:122',
81457: 'eip155:81457',
288: 'eip155:288',
56288: 'eip155:56288',
}

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

0 comments on commit 020ca85

Please sign in to comment.