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
1 change: 1 addition & 0 deletions packages/delegation-deployments/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Add chain deployment for Robinhood Chain mainnet and testnet ([#277](https://github.com/MetaMask/smart-accounts-kit/pull/277))
- Add chain deployment for Arc Testnet ([#289](https://github.com/MetaMask/smart-accounts-kit/pull/289))

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,25 @@ const celoSepoliaChain: Chain = {
},
};

const arcTestnetChain: Chain = {
id: 5042002,
name: 'Arc Testnet',
rpcUrls: {
default: {
http: ['https://rpc.testnet.arc.network'],
},
},
// Arc uses USDC as its native gas token instead of a volatile native currency.
nativeCurrency: {
name: 'USDC',
symbol: 'USDC',
decimals: 18,
},
};

export const chains = {
...allChains,
arcTestnet: arcTestnetChain,
megaEthTestNet: megaEthTestNetChain,
berachainMainnet: berachainMainnetChain,
bepoliaTestnet: bepoliaTestnetChain,
Expand Down
3 changes: 3 additions & 0 deletions packages/delegation-deployments/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const CHAIN_ID = {
katanaBokuto: 0xb405d,
intuitionTestnet: 0x350b,
robinhoodTestnet: 0xb626,
arcTestnet: 0x4cef52,
// decommissioned
lineaGoerli: 0xe704,
};
Expand Down Expand Up @@ -150,5 +151,7 @@ export const DELEGATOR_CONTRACTS: DeployedContracts = {
[CHAIN_ID.katanaBokuto]: DEPLOYMENTS_1_3_0,
[CHAIN_ID.intuitionTestnet]: DEPLOYMENTS_1_3_0,
[CHAIN_ID.robinhoodTestnet]: DEPLOYMENTS_1_3_0,
// Deployment pending: not yet deployed on Arc as of writing.
[CHAIN_ID.arcTestnet]: DEPLOYMENTS_1_3_0,
},
};
Loading