mirror of
https://github.com/luxfi/genesis.git
synced 2026-07-27 05:54:08 +00:00
This is the third decomplect layer: 1. builder/ now a nested module (github.com/luxfi/genesis/builder) — uses luxfi/utxo, vm, database, proto 2. pkg/genesis/security/ now a nested module — uses luxfi/consensus for ChainSecurityProfile verification 3. do_transfer_test.go moved from pkg/genesis/ → builder/ — it imports luxfi/utxo/secp256k1fx which was forcing the entire v1.27.x-era dep cascade onto downstream consumers via test-deps in the module graph Result on the root module's MVS-visible graph: - consensus v1.25.0 → v1.22.84 (matches luxd v1.23.42 family) - database v1.18.3 → v1.17.44 (matches luxd v1.23.42 exactly) - validators v1.2.0 → v1.0.0 (matches luxd v1.23.42 exactly) - threshold v1.6.17 → GONE (no longer in graph at all) - node v1.27.24 → v1.20.3 (transitive, harmless) Closes the v1.23.x backport blocker for canonical evmAddr/utxoAddr. luxd v1.23.43 (genesis bump) can now adopt the canonical genesis schema without dragging the v1.27.x post-quantum threshold refactor into a v1.23.x production line. One-direction module dep: - github.com/luxfi/genesis (data types — minimal deps) - github.com/luxfi/genesis/security (verification — uses consensus) - github.com/luxfi/genesis/builder (tx-building — uses utxo/vm/db) - github.com/luxfi/genesis/cmd (tools — uses node) Never the reverse.
56 lines
1.9 KiB
AMPL
56 lines
1.9 KiB
AMPL
module github.com/luxfi/genesis
|
|
|
|
go 1.26.3
|
|
|
|
require (
|
|
github.com/luxfi/constants v1.5.7
|
|
github.com/luxfi/crypto v1.19.15
|
|
github.com/luxfi/go-bip32 v1.0.2
|
|
github.com/luxfi/go-bip39 v1.1.2
|
|
github.com/luxfi/ids v1.2.10
|
|
github.com/luxfi/log v1.4.1
|
|
github.com/luxfi/tls v1.0.3
|
|
golang.org/x/crypto v0.50.0
|
|
)
|
|
|
|
require (
|
|
github.com/luxfi/accel v1.1.4 // indirect
|
|
github.com/luxfi/container v0.0.4 // indirect
|
|
github.com/luxfi/math v1.4.1 // indirect
|
|
go.opentelemetry.io/otel v1.43.0 // indirect
|
|
go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect
|
|
golang.org/x/net v0.52.0 // indirect
|
|
golang.org/x/text v0.36.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
|
|
google.golang.org/grpc v1.80.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect
|
|
github.com/cloudflare/circl v1.6.3 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 // indirect
|
|
github.com/gorilla/rpc v1.2.1 // indirect
|
|
github.com/holiman/uint256 v1.3.2 // indirect
|
|
github.com/luxfi/address v1.0.1
|
|
github.com/luxfi/cache v1.2.1 // indirect
|
|
github.com/luxfi/codec v1.1.4 // indirect
|
|
github.com/luxfi/geth v1.16.98 // indirect
|
|
github.com/luxfi/math/big v0.1.0 // indirect
|
|
github.com/luxfi/metric v1.5.5 // indirect
|
|
github.com/luxfi/mock v0.1.1 // indirect
|
|
github.com/luxfi/rpc v1.0.2
|
|
github.com/luxfi/sampler v1.0.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mr-tron/base58 v1.2.0 // indirect
|
|
github.com/supranational/blst v0.3.16 // indirect
|
|
go.uber.org/mock v0.6.0 // indirect
|
|
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 // indirect
|
|
golang.org/x/sys v0.43.0 // indirect
|
|
gonum.org/v1/gonum v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.36.11 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
|
)
|
|
|
|
replace launchpad.net/gocheck => gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b
|