mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
External (HTTP / JSON-RPC) is the only place JSON is legitimate. Every
existing encoding/json import in node/ moves to github.com/go-json-experiment/json
(v2 root, not the v1 sub-package). NewEncoder/NewDecoder rewrite to
MarshalWrite/UnmarshalRead. MarshalIndent rewrites to Marshal with
jsontext.WithIndent. json.RawMessage rewrites to jsontext.Value.
*json.SyntaxError rewrites to *jsontext.SyntacticError.
81 files migrated. LLM.md captures the rule + v1->v2 delta table.
Known v2 semantic deltas surfaced by existing tests (followups, not regressions):
- [N]byte fields with no MarshalJSON now marshal as base64 string (v1 marshalled
as JSON array of byte numbers). Affects vms/platformvm/txs/*_test.go fixtures
with embedded BLS proofOfPossession.
- time.Duration has no v2 default representation; configs that wire-format
Duration as nanoseconds (vms/{xvm,platformvm}/config, config/spec) need to
switch to string-form Duration or carry an explicit option. v2 root does not
re-export FormatDurationAsNano.
- v2 enforces strict UTF-8 (vms/chainadapter/messaging fixture has non-UTF-8).
- json.MarshalWrite does not append a trailing '\n' (v1 NewEncoder.Encode did);
service/auth/auth_test.go expectation updated.
- nil []byte round-trips to empty (not nil); config_test deep-equal fixtures
surface this.
All affected sites are at the API boundary; ZAP wire envelope already covers
the internal data paths (state, P2P, consensus, MPC, threshold). Internal
JSON sites that should move to ZAP next (separate work):
- vms/da/store.go (DA blob/cert storage as JSON)
- vms/platformvm/airdrop (airdrop claims as JSON in db)
- vms/chainadapter/appchain (SQLite materializer schema/data blobs)
- vms/chainadapter/messaging (conversation codec)
- staking/kms.go (KMS HTTP client — external technically, leave)
- utils/{bimap,ips} (small marshaler shims — low priority)
161 lines
4.8 KiB
Go
161 lines
4.8 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package tmpnet
|
|
|
|
import (
|
|
"github.com/go-json-experiment/json"
|
|
"github.com/go-json-experiment/json/jsontext"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/luxfi/constants"
|
|
"github.com/luxfi/crypto/secp256k1"
|
|
"github.com/luxfi/ids"
|
|
)
|
|
|
|
// GenesisConfig represents genesis configuration
|
|
type GenesisConfig struct {
|
|
NetworkID uint32 `json:"networkID"`
|
|
Allocations []Allocation `json:"allocations"`
|
|
StartTime uint64 `json:"startTime"`
|
|
InitialStakeDuration uint64 `json:"initialStakeDuration"`
|
|
InitialStakeDurationOffset uint64 `json:"initialStakeDurationOffset"`
|
|
InitialStakedFunds []string `json:"initialStakedFunds"`
|
|
InitialStakers []Staker `json:"initialStakers"`
|
|
CChainGenesis string `json:"cChainGenesis"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
// Allocation represents an initial fund allocation
|
|
type Allocation struct {
|
|
EVMAddr string `json:"evmAddr"`
|
|
UTXOAddr string `json:"utxoAddr"`
|
|
InitialAmount uint64 `json:"initialAmount"`
|
|
UnlockSchedule []UnlockPeriod `json:"unlockSchedule,omitempty"`
|
|
}
|
|
|
|
// UnlockPeriod represents a vesting unlock period
|
|
type UnlockPeriod struct {
|
|
Amount uint64 `json:"amount"`
|
|
Locktime uint64 `json:"locktime"`
|
|
}
|
|
|
|
// Staker represents an initial staker
|
|
type Staker struct {
|
|
NodeID string `json:"nodeID"`
|
|
RewardAddress string `json:"rewardAddress"`
|
|
DelegationFee uint32 `json:"delegationFee"`
|
|
}
|
|
|
|
// NewTestGenesisWithFunds creates a test genesis configuration with funded accounts
|
|
func NewTestGenesisWithFunds(
|
|
networkID uint32,
|
|
nodes []*Node,
|
|
fundedKeys []*secp256k1.PrivateKey,
|
|
) ([]byte, error) {
|
|
startTime := time.Date(2025, time.January, 1, 0, 0, 0, 0, time.UTC)
|
|
|
|
config := GenesisConfig{
|
|
NetworkID: networkID,
|
|
StartTime: uint64(startTime.Unix()),
|
|
InitialStakeDuration: uint64((365 * 24 * time.Hour).Seconds()),
|
|
InitialStakeDurationOffset: 0,
|
|
Message: "LUX Test Genesis",
|
|
}
|
|
|
|
// Add allocations for funded keys
|
|
for _, key := range fundedKeys {
|
|
addr := key.Address()
|
|
allocation := Allocation{
|
|
UTXOAddr: addr.String(),
|
|
InitialAmount: 300 * constants.MegaLux, // 300M LUX per funded key
|
|
}
|
|
config.Allocations = append(config.Allocations, allocation)
|
|
config.InitialStakedFunds = append(config.InitialStakedFunds, addr.String())
|
|
}
|
|
|
|
// Add initial stakers from nodes
|
|
for _, node := range nodes {
|
|
if node.NodeID != ids.EmptyNodeID {
|
|
staker := Staker{
|
|
NodeID: node.NodeID.String(),
|
|
DelegationFee: 20000, // 2%
|
|
}
|
|
if len(fundedKeys) > 0 {
|
|
staker.RewardAddress = fundedKeys[0].Address().String()
|
|
}
|
|
config.InitialStakers = append(config.InitialStakers, staker)
|
|
}
|
|
}
|
|
|
|
// Add basic C-Chain genesis
|
|
config.CChainGenesis = getBasicCChainGenesis(networkID)
|
|
|
|
return json.Marshal(config, jsontext.WithIndent(" "))
|
|
}
|
|
|
|
// getBasicCChainGenesis returns a basic C-Chain genesis configuration
|
|
func getBasicCChainGenesis(networkID uint32) string {
|
|
chainID := int64(networkID)
|
|
|
|
genesis := map[string]interface{}{
|
|
"config": map[string]interface{}{
|
|
"chainId": chainID,
|
|
"homesteadBlock": 0,
|
|
"eip150Block": 0,
|
|
"eip155Block": 0,
|
|
"eip158Block": 0,
|
|
"byzantiumBlock": 0,
|
|
"constantinopleBlock": 0,
|
|
"petersburgBlock": 0,
|
|
"istanbulBlock": 0,
|
|
"muirGlacierBlock": 0,
|
|
},
|
|
"nonce": "0x0",
|
|
"timestamp": "0x0",
|
|
"extraData": "0x00",
|
|
"gasLimit": fmt.Sprintf("0x%x", 8000000),
|
|
"difficulty": "0x1",
|
|
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
"coinbase": "0x0000000000000000000000000000000000000000",
|
|
"alloc": map[string]interface{}{},
|
|
"number": "0x0",
|
|
"gasUsed": "0x0",
|
|
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
}
|
|
|
|
data, _ := json.Marshal(genesis)
|
|
return string(data)
|
|
}
|
|
|
|
// ValidateGenesis validates a genesis configuration
|
|
func ValidateGenesis(genesisBytes []byte) error {
|
|
var config GenesisConfig
|
|
if err := json.Unmarshal(genesisBytes, &config); err != nil {
|
|
return fmt.Errorf("failed to parse genesis config: %w", err)
|
|
}
|
|
|
|
if config.NetworkID == 0 {
|
|
return fmt.Errorf("network ID must be set")
|
|
}
|
|
|
|
if config.StartTime == 0 {
|
|
return fmt.Errorf("start time must be set")
|
|
}
|
|
|
|
// Validate allocations
|
|
for i, alloc := range config.Allocations {
|
|
if alloc.UTXOAddr == "" && alloc.EVMAddr == "" {
|
|
return fmt.Errorf("allocation %d has no address", i)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// GetDefaultNetworkID returns the default network ID for testing
|
|
func GetDefaultNetworkID() uint32 {
|
|
return constants.LocalID
|
|
}
|