Skip to content
Open
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
3 changes: 3 additions & 0 deletions packages/constants/src/network-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export enum NetworkId {
SOLANA_DEVNET = "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1",
SOLANA_TESTNET = "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z",

// Solaxy Mainnet
SOLAXY_MAINNET = "solaxy:1936682104",

// Ethereum Networks
ETHEREUM_MAINNET = "eip155:1",
ETHEREUM_SEPOLIA = "eip155:11155111",
Expand Down
15 changes: 15 additions & 0 deletions packages/constants/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ export type InternalNetworkCaip =
| "solana:102"
| "solana:103"
| "solana:localnet"
// SOLAXY with Hyperlane Chain ID
| "solaxy:1936682104"
// EVM
| "eip155:1"
| "eip155:11155111"
Expand Down Expand Up @@ -85,6 +87,19 @@ export const NETWORK_CONFIGS: Record<NetworkId, NetworkConfig> = {
},
},

[NetworkId.SOLAXY_MAINNET]: {
name: "Solaxy Mainnet",
chain: "solaxy",
network: "mainnet",
internalCaip: "solaxy:1936682104",
slip44: "501",
explorer: {
name: "Solaxy Explorer",
transactionUrl: "https://explorer.solaxy.io/tx/{hash}",
addressUrl: "https://explorer.solaxy.io/account/{address}",
},
},

// Ethereum Networks
[NetworkId.ETHEREUM_MAINNET]: {
name: "Ethereum Mainnet",
Expand Down