Skip to content

Commit 86d3ba1

Browse files
committed
chore: add robinhood chain deployment
1 parent 381aad2 commit 86d3ba1

3 files changed

Lines changed: 40 additions & 0 deletions

File tree

packages/delegation-deployments/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Add chain deployment for Robinhood Chain mainnet and testnet
13+
1014
## [1.4.0]
1115

1216
### Added

packages/delegation-deployments/script/validate-contract-deployments.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,36 @@ const intuitionTestnetChain: Chain = {
344344
},
345345
};
346346

347+
const robinhoodMainnetChain: Chain = {
348+
id: 4663,
349+
name: 'Robinhood Chain',
350+
rpcUrls: {
351+
default: {
352+
http: ['https://rpc.mainnet.chain.robinhood.com'],
353+
},
354+
},
355+
nativeCurrency: {
356+
name: 'Ether',
357+
symbol: 'ETH',
358+
decimals: 18,
359+
},
360+
};
361+
362+
const robinhoodTestnetChain: Chain = {
363+
id: 46630,
364+
name: 'Robinhood Chain Testnet',
365+
rpcUrls: {
366+
default: {
367+
http: ['https://rpc.testnet.chain.robinhood.com'],
368+
},
369+
},
370+
nativeCurrency: {
371+
name: 'Ether',
372+
symbol: 'ETH',
373+
decimals: 18,
374+
},
375+
};
376+
347377
const celoSepoliaChain: Chain = {
348378
id: 11142220,
349379
name: 'Celo Sepolia',
@@ -382,6 +412,8 @@ export const chains = {
382412
katanaBokuto: katanaBokutoChain,
383413
intuitionMainnet: intuitionMainnetChain,
384414
intuitionTestnet: intuitionTestnetChain,
415+
robinhoodMainnet: robinhoodMainnetChain,
416+
robinhoodTestnet: robinhoodTestnetChain,
385417
celoSepolia: celoSepoliaChain,
386418
} as any as { [key: string]: Chain };
387419

packages/delegation-deployments/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const CHAIN_ID = {
3131
mantleMainnet: 0x1388,
3232
katanaMainnet: 0xb67d2,
3333
intuitionMainnet: 0x483,
34+
robinhoodMainnet: 0x1237,
3435
// Testnets
3536
bscTestnet: 0x61,
3637
arbitrumSepolia: 0x66eee,
@@ -55,6 +56,7 @@ export const CHAIN_ID = {
5556
mantleSepolia: 0x138b,
5657
katanaBokuto: 0xb405d,
5758
intuitionTestnet: 0x350b,
59+
robinhoodTestnet: 0xb626,
5860
// decommissioned
5961
lineaGoerli: 0xe704,
6062
};
@@ -122,6 +124,7 @@ export const DELEGATOR_CONTRACTS: DeployedContracts = {
122124
[CHAIN_ID.mantleMainnet]: DEPLOYMENTS_1_3_0,
123125
[CHAIN_ID.katanaMainnet]: DEPLOYMENTS_1_3_0,
124126
[CHAIN_ID.intuitionMainnet]: DEPLOYMENTS_1_3_0,
127+
[CHAIN_ID.robinhoodMainnet]: DEPLOYMENTS_1_3_0,
125128
// Testnets
126129
[CHAIN_ID.bscTestnet]: DEPLOYMENTS_1_3_0,
127130
[CHAIN_ID.citreaTestnet]: DEPLOYMENTS_1_3_0,
@@ -146,5 +149,6 @@ export const DELEGATOR_CONTRACTS: DeployedContracts = {
146149
[CHAIN_ID.mantleSepolia]: DEPLOYMENTS_1_3_0,
147150
[CHAIN_ID.katanaBokuto]: DEPLOYMENTS_1_3_0,
148151
[CHAIN_ID.intuitionTestnet]: DEPLOYMENTS_1_3_0,
152+
[CHAIN_ID.robinhoodTestnet]: DEPLOYMENTS_1_3_0,
149153
},
150154
};

0 commit comments

Comments
 (0)