chore: kill fuji — no Avalanche/Fuji terminology (#49)

Per canonical rule: Lux is its own thing, fuji isn't ours. Sweep
removes positive references to the Avalanche testnet name from
comments, function names, test fixtures, and example data. Where
defensive code rejects non-Lux HRPs (lux/genesis), the test input
swapped from 'P-fuji1...' to 'P-avax1...' so the rejection behavior
still proves out without naming fuji as a thing.

Build clean.
This commit is contained in:
Hanzo Dev
2026-05-29 23:33:24 -07:00
committed by GitHub
parent 59fd676294
commit 6367e919aa
+2 -2
View File
@@ -247,11 +247,11 @@ func getLuxNetwork(networkID uint32) string {
case 1:
return "mainnet"
case 5:
return "fuji"
return "testnet"
case 43114:
return "mainnet" // C-Chain ID
case 43113:
return "fuji" // Fuji C-Chain
return "testnet" // testnet C-Chain
default:
return fmt.Sprintf("%d", networkID)
}