mirror of
https://github.com/luxfi/genesis.git
synced 2026-07-27 05:54:08 +00:00
Pre-v1.28.0 nodes wrote P-chain UTXOs at wire-version=0. v1.28.0 ships the multi-version codec (luxfi/node@c589251a1d) and writes all new UTXOs at wire-version=1 by default. The bootstrap-l2 tool embeds the luxfi/node wallet to build/sign CreateNetworkTx and CreateChainTx; the v1.27.24 pin's wallet codec only knew v0, so syncing the wallet against a fresh v1.28.0 node failed with: wallet sync: unknown codec version Bump cmd/go.mod to luxfi/node v1.28.0, which pulls in the v0+v1 codec register and decodes a v1.28.0 node's UTXOs correctly. Verified on lux-devnet: rebuilt bootstrap-l2 then ran: /work/bootstrap-l2 -uri=http://luxd-0.luxd-headless.lux-devnet.svc.cluster.local:9650 \ -hrp=dev -bip44-idx=5 -track-chain-ids=hanzo,zoo,pars,spc \ -configs-dir=/work/configs -chain-settle-delay=180s -probe-timeout=1800s All 4 L2 EVMs bootstrapped: hanzo → i3AxuEfLAqzAvabgpYvXC7QCvqXnJAHr3AYiVzfK2FDauyJSa zoo → 5YP3iV6ytRjtscF8dcXWQTqd8dwjAaoZnW6oNVfDM3d2mwwvS pars → JxDPdhGde9PSrZ3nLwe7shwZaXEFBoAJ8V9rGqbcKXy9FEQEm spc → LHU4rNBLr1Zi2pNJXL47djkCmmyDSgTXmaB4oNQBYyGfqPtg9 Transitive bumps: github.com/luxfi/consensus v1.25.0 → v1.25.2 github.com/luxfi/genesis v1.12.15 → v1.12.19
167 lines
7.4 KiB
AMPL
167 lines
7.4 KiB
AMPL
module github.com/luxfi/genesis/cmd
|
|
|
|
go 1.26.3
|
|
|
|
// Tools-tier nested module. Imports the parent genesis module for
|
|
// data types + the heavy luxfi/node SDK for wallet/tx-builder bits.
|
|
// Kept SEPARATE so downstream consumers that only need genesis data
|
|
// (luxd v1.23.x line, indexers, light clients) don't pull node into
|
|
// their dep graph.
|
|
|
|
replace github.com/luxfi/genesis => ../
|
|
|
|
require (
|
|
github.com/luxfi/constants v1.5.7
|
|
github.com/luxfi/crypto v1.19.17
|
|
github.com/luxfi/genesis v1.12.19
|
|
github.com/luxfi/geth v1.16.98
|
|
github.com/luxfi/go-bip32 v1.0.2
|
|
github.com/luxfi/go-bip39 v1.1.2
|
|
github.com/luxfi/ids v1.2.13
|
|
github.com/luxfi/math v1.4.1
|
|
github.com/luxfi/node v1.28.0
|
|
github.com/luxfi/sdk v1.17.0
|
|
github.com/luxfi/utxo v0.3.4
|
|
)
|
|
|
|
require (
|
|
filippo.io/hpke v0.4.0 // indirect
|
|
github.com/DataDog/zstd v1.5.7 // indirect
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/bits-and-blooms/bitset v1.24.4 // indirect
|
|
github.com/btcsuite/btcd/btcec/v2 v2.3.6 // indirect
|
|
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
|
|
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/cloudflare/circl v1.6.3 // indirect
|
|
github.com/cockroachdb/errors v1.12.0 // indirect
|
|
github.com/cockroachdb/fifo v0.0.0-20240816210425-c5d0cb0b6fc0 // indirect
|
|
github.com/cockroachdb/logtags v0.0.0-20241215232642-bb51bb14a506 // indirect
|
|
github.com/cockroachdb/pebble v1.1.5 // indirect
|
|
github.com/cockroachdb/redact v1.1.8 // indirect
|
|
github.com/cockroachdb/tokenbucket v0.0.0-20250429170803-42689b6311bb // indirect
|
|
github.com/consensys/gnark-crypto v0.20.1 // indirect
|
|
github.com/crate-crypto/go-eth-kzg v1.5.0 // indirect
|
|
github.com/deckarep/golang-set/v2 v2.8.0 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 // indirect
|
|
github.com/dgraph-io/ristretto/v2 v2.4.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/ethereum/c-kzg-4844/v2 v2.1.7 // indirect
|
|
github.com/getsentry/sentry-go v0.44.1 // indirect
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/mock v1.7.0-rc.1 // indirect
|
|
github.com/golang/snappy v1.0.0 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/google/flatbuffers v25.12.19+incompatible // indirect
|
|
github.com/google/renameio/v2 v2.0.2 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gorilla/mux v1.8.1 // indirect
|
|
github.com/gorilla/rpc v1.2.1 // indirect
|
|
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
|
|
github.com/holiman/uint256 v1.3.2 // indirect
|
|
github.com/klauspost/compress v1.18.5 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
github.com/klauspost/crc32 v1.3.0 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/luxfi/accel v1.1.4 // indirect
|
|
github.com/luxfi/address v1.0.1 // indirect
|
|
github.com/luxfi/age v1.5.0 // indirect
|
|
github.com/luxfi/api v1.0.11 // indirect
|
|
github.com/luxfi/atomic v1.0.0 // indirect
|
|
github.com/luxfi/cache v1.2.1 // indirect
|
|
github.com/luxfi/codec v1.1.4 // indirect
|
|
github.com/luxfi/compress v0.0.5 // indirect
|
|
github.com/luxfi/concurrent v0.0.3 // indirect
|
|
github.com/luxfi/consensus v1.25.2 // indirect
|
|
github.com/luxfi/container v0.0.4 // indirect
|
|
github.com/luxfi/crypto/ipa v1.2.4 // indirect
|
|
github.com/luxfi/database v1.18.3 // indirect
|
|
github.com/luxfi/filesystem v0.0.1 // indirect
|
|
github.com/luxfi/formatting v1.0.1 // indirect
|
|
github.com/luxfi/keychain v1.0.2 // indirect
|
|
github.com/luxfi/log v1.4.1 // indirect
|
|
github.com/luxfi/math/big v0.1.0 // indirect
|
|
github.com/luxfi/math/safe v0.0.1 // indirect
|
|
github.com/luxfi/metric v1.5.5 // indirect
|
|
github.com/luxfi/mock v0.1.1 // indirect
|
|
github.com/luxfi/net v0.0.4 // indirect
|
|
github.com/luxfi/p2p v1.19.2 // indirect
|
|
github.com/luxfi/pq v1.0.3 // indirect
|
|
github.com/luxfi/proto v1.1.0 // indirect
|
|
github.com/luxfi/rpc v1.0.2 // indirect
|
|
github.com/luxfi/runtime v1.1.0 // indirect
|
|
github.com/luxfi/sampler v1.0.0 // indirect
|
|
github.com/luxfi/staking v1.1.0 // indirect
|
|
github.com/luxfi/timer v1.0.2 // indirect
|
|
github.com/luxfi/tls v1.0.3 // indirect
|
|
github.com/luxfi/trace v0.1.4 // indirect
|
|
github.com/luxfi/upgrade v1.0.0 // indirect
|
|
github.com/luxfi/utils v1.1.4 // indirect
|
|
github.com/luxfi/validators v1.2.0 // indirect
|
|
github.com/luxfi/version v1.0.1 // indirect
|
|
github.com/luxfi/vm v1.0.40 // indirect
|
|
github.com/luxfi/warp v1.18.6 // indirect
|
|
github.com/luxfi/zapdb v1.10.0 // indirect
|
|
github.com/luxfi/zwing v0.5.2 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/minio/crc64nvme v1.1.1 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/minio-go/v7 v7.0.100 // indirect
|
|
github.com/mr-tron/base58 v1.2.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/philhofer/fwd v1.2.0 // indirect
|
|
github.com/pires/go-proxyproto v0.11.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/client_golang v1.23.2 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/common v0.67.5 // indirect
|
|
github.com/prometheus/procfs v0.20.1 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
github.com/rs/cors v1.11.1 // indirect
|
|
github.com/rs/xid v1.6.0 // indirect
|
|
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
|
|
github.com/supranational/blst v0.3.16 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
|
|
github.com/tinylib/msgp v1.6.1 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.16 // indirect
|
|
github.com/tklauser/numcpus v0.11.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
|
|
go.opentelemetry.io/otel v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.42.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.43.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
|
|
go.uber.org/mock v0.6.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.1 // indirect
|
|
go.yaml.in/yaml/v2 v2.4.4 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
golang.org/x/crypto v0.50.0 // indirect
|
|
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 // indirect
|
|
golang.org/x/net v0.52.0 // indirect
|
|
golang.org/x/sync v0.20.0 // indirect
|
|
golang.org/x/sys v0.43.0 // indirect
|
|
golang.org/x/text v0.36.0 // indirect
|
|
golang.org/x/time v0.15.0 // indirect
|
|
gonum.org/v1/gonum v0.17.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
|
|
google.golang.org/grpc v1.81.1 // indirect
|
|
google.golang.org/protobuf v1.36.11 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
|
)
|