Skip to content
Draft
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/add-robinhood-mainnet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@0xsequence/network': patch
---

Add Robinhood Chain (chain 4663)
1 change: 1 addition & 0 deletions packages/network/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,6 @@ export const allNetworks = validateAndSortNetworks([
createNetworkConfig(ChainId.HYPEREVM),
createNetworkConfig(ChainId.BERACHAIN),
createNetworkConfig(ChainId.SONIC),
createNetworkConfig(ChainId.ROBINHOOD),
...hardhatNetworks
])
23 changes: 22 additions & 1 deletion packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ export enum ChainId {
BERACHAIN = 80094,

// TEMPO
TEMPO = 4217
TEMPO = 4217,

// ROBINHOOD
ROBINHOOD = 4663
}

export const networks: Record<ChainId, NetworkMetadata> = {
Expand Down Expand Up @@ -1304,6 +1307,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
name: 'USD',
decimals: 18
}
},

[ChainId.ROBINHOOD]: {
chainId: ChainId.ROBINHOOD,
type: NetworkType.MAINNET,
name: 'robinhood',
title: 'Robinhood Chain',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.ROBINHOOD}.webp`,
testnet: false,
blockExplorer: {
name: 'Robinhood Explorer',
rootUrl: 'https://robin.etherscan.io/'
},
nativeToken: {
symbol: 'ETH',
name: 'Ether',
decimals: 18
}
}
}

Expand Down
Loading