Files
node/vms/example/xsvm/cmd/chain/create/cmd.go
T
zeekayandHanzo Dev 2d227dd3aa Full-codec-kill wave 2: proposervm + xsvm + components + evm + platformvm-residual → native ZAP
Kills pcodecs from 3 complete subsystems (verified go test ./... = 155 ok / 0 FAIL):
- proposervm: block/state/summary struct-is-wire (blockwire.go + statewire.go;
  deleted block/state/summary codec.go). blockKind bytes: reserved=0 signed=1
  option=2. Epoch inlined in unsigned object. proposer/windower chainSource seed
  = binary.LittleEndian (byte-identical to old wrappers.Packer.UnpackLong).
- example/xsvm: tx/block/genesis native Marshal (deleted 3 codec.go); create-chain
  example uses genesis.Marshal().
- components: message.Tx native (deleted codec.go); keystore codec shell removed;
  index pcodecs.LongLen → local const.
- evm/{predicate,lp176}: off pcodecs.
- platformvm residual: state metadata + genesis + metrics + signer + stakeable
  native, vestigial serialize tags removed.

REMAINING (careful solo, agents weekly-capped): warp (reverted — agent left an
ID≠Marshal consensus inconsistency in ChainToL1Conversion; needs proper review,
not a golden-regen) + xvm (reverted — barely started). pcodecs package stays
until those 2 land. /ext/→/v1/ endpoint change also pending.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-07-11 17:19:20 -07:00

86 lines
1.8 KiB
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package create
import (
"log"
"time"
"github.com/spf13/cobra"
"github.com/luxfi/constants"
"github.com/luxfi/node/vms/example/xsvm/genesis"
"github.com/luxfi/node/wallet/network/primary"
"github.com/luxfi/node/wallet/network/primary/common"
"github.com/luxfi/utxo/secp256k1fx"
)
func Command() *cobra.Command {
c := &cobra.Command{
Use: "create",
Short: "Creates a new chain",
RunE: createFunc,
}
flags := c.Flags()
AddFlags(flags)
return c
}
func createFunc(c *cobra.Command, args []string) error {
flags := c.Flags()
config, err := ParseFlags(flags, args)
if err != nil {
return err
}
ctx := c.Context()
kc := secp256k1fx.NewKeychain(config.PrivateKey)
// MakePWallet fetches the available UTXOs owned by [kc] on the P-chain that
// [uri] is hosting.
walletSyncStartTime := time.Now()
// Use KeychainAdapter for wallet compatibility
kcAdapter := primary.NewKeychainAdapter(kc)
wallet, err := primary.MakeWallet(
ctx,
&primary.WalletConfig{
URI: config.URI,
LUXKeychain: kcAdapter,
EVMKeychain: kcAdapter,
},
)
if err != nil {
return err
}
log.Printf("synced wallet in %s\n", time.Since(walletSyncStartTime))
genesisBytes, err := (&genesis.Genesis{
Timestamp: 0,
Allocations: []genesis.Allocation{
{
Address: config.Address,
Balance: config.Balance,
},
},
}).Marshal()
if err != nil {
return err
}
createChainStartTime := time.Now()
createChainTxID, err := wallet.P().IssueCreateChainTx(
config.ChainID,
genesisBytes,
constants.XSVMID,
nil,
config.Name,
common.WithContext(ctx),
)
if err != nil {
return err
}
log.Printf("created chain %s in %s\n", createChainTxID, time.Since(createChainStartTime))
return nil
}