fix: remove Liquid L2 chain IDs — belongs in <tenant>/node not luxfi/genesis

This commit is contained in:
Hanzo AI
2026-04-08 21:23:04 -07:00
parent a6cf649e3c
commit e12a9b101f
-29
View File
@@ -41,35 +41,6 @@ const (
LocalnetChainID = 31337
)
// Liquid L2 Chain IDs (EVM-compatible, for wallets/dApps).
// These are the chain IDs used by the Liquid settlement chains running
// as L2s on the Lux Network. They are NOT the primary network C-Chain IDs.
//
// Network NetworkID EVM DEX FHE
// ───────── ───────── ─────── ─────── ───────
// Mainnet 1 8675309 8675313 8675317
// Testnet 2 8675310 8675314 8675318
// Devnet 3 8675311 8675315 8675319
// Localnet 1337 31337 31338 31339
const (
// — primary settlement chain
Mainnet = 8675309
Testnet = 8675310
Devnet = 8675311
Localnet = 31337
// — native orderbook chain
Mainnet = 8675313
Testnet = 8675314
Devnet = 8675315
Localnet = 31338
// Liquid FHE — confidential compute chain
LiquidFHEMainnet = 8675317
LiquidFHETestnet = 8675318
LiquidFHEDevnet = 8675319
LiquidFHELocalnet = 31339
)
//go:embed mainnet testnet devnet localnet
var embeddedGenesis embed.FS