2026-04-13 03:45:21 -07:00
# The version is supplied as a build argument rather than hard-coded
2026-06-20 01:25:08 -07:00
# to minimize the cost of version changes. Must be >= the `go` directive
# in go.mod (1.26.4); the EVM plugin pulls luxfi/upgrade@v1.0.1 which
# floors the toolchain at 1.26.4.
ARG GO_VERSION = 1 .26.4
2026-04-13 03:45:21 -07:00
# ============= Go Installation Stage ================
FROM --platform=$BUILDPLATFORM debian:bookworm-slim AS go-installer
RUN apt-get update && apt-get install -y --no-install-recommends \
wget ca-certificates \
&& rm -rf /var/lib/apt/lists/*
ARG GO_VERSION
ARG BUILDPLATFORM
# Download Go for build platform
RUN BUILDARCH = $( echo ${ BUILDPLATFORM } | cut -d / -f2) && \
wget -q "https://go.dev/dl/go ${ GO_VERSION } .linux- ${ BUILDARCH } .tar.gz" && \
tar -C /usr/local -xzf "go ${ GO_VERSION } .linux- ${ BUILDARCH } .tar.gz" && \
rm "go ${ GO_VERSION } .linux- ${ BUILDARCH } .tar.gz"
# ============= Compilation Stage ================
# Always use the native platform to ensure fast builds
FROM --platform=$BUILDPLATFORM debian:bookworm-slim AS builder
# Copy Go from installer stage
COPY --from= go-installer /usr/local/go /usr/local/go
ENV PATH = "/usr/local/go/bin: ${ PATH } "
# Install build dependencies (ca-certificates needed for go mod download)
# libc6-dev-arm64-cross needed for cross-compiling to ARM64
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc libc6-dev make git ca-certificates wget \
gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu \
libc6-dev-arm64-cross libc6-dev-amd64-cross \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build
2026-06-22 03:04:10 -07:00
# Skip checksum verification for luxfi + hanzoai packages: both are cross-org
# deps not registered in the public sum.golang.org / proxy (reading e.g.
# hanzoai/vfs@v0.4.1's go.mod via the public sumdb 404s and fails the build).
ENV GONOSUMCHECK = github.com/luxfi/*,github.com/hanzoai/*
ENV GONOSUMDB = github.com/luxfi/*,github.com/hanzoai/*
# Use Go proxy for most deps (gonum.org is flaky via direct), direct only for
# the cross-org private modules.
2026-04-13 03:45:21 -07:00
ENV GOPROXY = https://proxy.golang.org,direct
2026-06-22 03:04:10 -07:00
ENV GONOPROXY = github.com/luxfi/*,github.com/hanzoai/*
2026-04-13 03:45:21 -07:00
ENV GOFLAGS = "-mod=mod"
2026-05-21 17:28:07 -07:00
# Copy and download lux dependencies using go mod.
# Some luxfi/* modules (e.g. corona) are private and require a token to
# resolve via go mod. The token is injected as a BuildKit secret from the
# CI workflow; locally, set DOCKER_BUILDKIT=1 and pass
# `--secret id=ghtok,src=$HOME/.gh-token`. If the secret is absent the
# build still attempts the download (works when all deps are public).
2026-04-13 03:45:21 -07:00
COPY go.mod .
COPY go.sum .
2026-05-24 18:43:49 -07:00
# Configure global git insteadOf so EVERY subsequent step (go mod download
# now, the build step's implicit fetch later) can reach private luxfi/*
# modules. The token is written into /etc/gitconfig (root-readable in the
# image), so explicit cleanup is unnecessary on this throwaway builder
# stage — only the compiled binary is COPYed into the runtime image.
2026-05-21 17:28:07 -07:00
RUN --mount= type = secret,id= ghtok,required= false \
if [ -s /run/secrets/ghtok ] ; then \
git config --global url."https://x-access-token: $( cat /run/secrets/ghtok) @github.com/" .insteadOf "https://github.com/" ; \
fi && \
2026-06-23 08:55:02 -07:00
sed -i -E '/^github.com\/(luxfi|hanzoai)\//d' go.sum && \
go mod download -x
2026-04-13 03:45:21 -07:00
# Copy the code into the container
COPY . .
# Ensure pre-existing builds are not available for inclusion in the final image
RUN [ -d ./build ] && rm -rf ./build/* || true
ARG TARGETPLATFORM
ARG BUILDPLATFORM
2026-05-29 18:01:36 -07:00
# Per SCALE_STANDARD.md §2 (https://github.com/hanzoai/hips/blob/main/docs/SCALE_STANDARD.md)
# — every Go production Dockerfile that emits JSON to a client builds
# with GOEXPERIMENT=jsonv2. Verified -12% time / -23% allocs on the
# edge POST roundtrip vs encoding/json v1. Applies to luxd + every
# in-stage VM plugin build below.
ARG GO_EXPERIMENT = jsonv2
ENV GOEXPERIMENT = ${ GO_EXPERIMENT }
2026-04-13 03:45:21 -07:00
# Configure a cross-compiler if the target platform differs from the build platform.
#
# build_env.sh is used to capture the environmental changes required by the build step since RUN
# environment state is not otherwise persistent.
RUN if [ " $TARGETPLATFORM " = "linux/arm64" ] && [ " $BUILDPLATFORM " != "linux/arm64" ] ; then \
echo "export CC=aarch64-linux-gnu-gcc" > ./build_env.sh \
; elif [ " $TARGETPLATFORM " = "linux/amd64" ] && [ " $BUILDPLATFORM " != "linux/amd64" ] ; then \
echo "export CC=x86_64-linux-gnu-gcc" > ./build_env.sh \
; else \
echo "export CC=gcc" > ./build_env.sh \
; fi
2026-06-22 15:09:16 -07:00
# Fetch pre-built lux-accel (GPU crypto library). The release assets live in
# the PRIVATE luxcpp/accel repo (resolves to lux-private/accel) — an
# unauthenticated GitHub release-download 404s, so the fetch is authenticated
# with the same `ghtok` BuildKit secret used for private go modules. It is
# also best-effort (matches the cevm/lpm fetch contract below): the library is
# ONLY linked at CGO_ENABLED=1, so a CGO_ENABLED=0 build (the canonical CI/devnet
# build, pure-Go) does not need it and must not fail when it is unreachable.
2026-04-13 03:45:21 -07:00
ARG ACCEL_VERSION = v0.1.0
2026-06-22 15:09:16 -07:00
RUN --mount= type = secret,id= ghtok,required= false \
ARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) && \
2026-04-13 03:45:21 -07:00
if [ " $ARCH " = "amd64" ] ; then ACCEL_ARCH = "linux-x86_64" ; else ACCEL_ARCH = "linux-arm64" ; fi && \
mkdir -p /usr/local/include /usr/local/lib && \
2026-06-22 15:09:16 -07:00
AUTH = "" ; [ -s /run/secrets/ghtok ] && AUTH = "--header=Authorization: Bearer $( cat /run/secrets/ghtok) " ; \
( wget -q ${ AUTH :+ " $AUTH " } \
"https://github.com/luxcpp/accel/releases/download/ ${ ACCEL_VERSION } /lux-accel- ${ ACCEL_ARCH } .tar.gz" \
-O /tmp/accel.tar.gz \
&& tar -xzf /tmp/accel.tar.gz -C /usr/local \
&& rm /tmp/accel.tar.gz \
&& ldconfig 2>/dev/null \
) || echo "WARN: lux-accel ${ ACCEL_VERSION } fetch skipped (private/unreachable; GPU accel unused at CGO_ENABLED=0)"
2026-04-13 03:45:21 -07:00
2026-05-05 16:59:52 -07:00
# Fetch pre-built luxcpp/cevm libs (libevm, libevm-gpu, libluxgpu,
2026-05-15 12:15:55 -07:00
# libcevm_precompiles + go_bridge.h). When CGO_ENABLED=1 these libraries are
2026-05-05 16:59:52 -07:00
# linked into the C-Chain plugin via github.com/luxfi/chains/evm/cevm
# and become the default execution backend (parallel + GPU EVM).
#
2026-07-25 13:43:32 -07:00
# The release assets live in the PRIVATE lux-private/cevm repo, so the fetch is
# authenticated with the same `ghtok` secret as the private go modules and
# lux-accel above. Best-effort, like lux-accel: only a build that asks for the
# cevm backend (EVM_CGO=1 below) actually needs these.
2026-05-15 12:15:55 -07:00
ARG CGO_ENABLED = 1
2026-07-25 13:43:32 -07:00
ARG CEVM_VERSION = v0.51.10
ARG CEVM_REPO = lux-private/cevm
RUN --mount= type = secret,id= ghtok,required= false \
if [ " ${ CGO_ENABLED } " = "1" ] ; then \
2026-05-05 16:59:52 -07:00
ARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) && \
if [ " $ARCH " = "amd64" ] ; then CEVM_ARCH = "linux-x86_64" ; else CEVM_ARCH = "linux-arm64" ; fi && \
2026-07-25 13:43:32 -07:00
AUTH = "" ; [ -s /run/secrets/ghtok ] && AUTH = "--header=Authorization: Bearer $( cat /run/secrets/ghtok) " ; \
( wget -q ${ AUTH :+ " $AUTH " } \
"https://github.com/ ${ CEVM_REPO } /releases/download/ ${ CEVM_VERSION } /luxcpp-cevm- ${ CEVM_ARCH } .tar.gz" \
-O /tmp/cevm.tar.gz \
&& tar -xzf /tmp/cevm.tar.gz -C /usr/local \
&& rm /tmp/cevm.tar.gz \
&& ldconfig 2>/dev/null \
) || echo "WARN: cevm ${ CEVM_VERSION } fetch skipped (unreachable; needed only when EVM_CGO=1)" ; \
2026-05-05 16:59:52 -07:00
else \
2026-07-25 13:43:32 -07:00
echo "CGO_ENABLED=0: skipping cevm fetch (pure-Go fallback build)" ; \
2026-05-05 16:59:52 -07:00
fi
2026-05-15 12:15:55 -07:00
# Build node. CGO_ENABLED=1 (default) links luxcpp/cevm for parallel + GPU EVM.
# Set CGO_ENABLED=0 for portable pure-Go builds without the native libs.
2026-04-13 03:45:21 -07:00
ARG RACE_FLAG = ""
ARG BUILD_SCRIPT = build.sh
ARG LUXD_COMMIT = ""
2026-05-15 12:15:55 -07:00
ENV CGO_ENABLED = ${ CGO_ENABLED }
2026-04-13 03:45:21 -07:00
RUN . ./build_env.sh && \
2026-06-25 18:53:50 -07:00
# `COPY . .` above restored the committed go.sum (stale first-party hashes when
# a luxfi/hanzoai module was re-tagged). Re-strip first-party lines so -mod=mod
# re-records the CURRENT content hashes already in the module cache (from the
# `go mod download` step). Without this, a re-tag => go.sum SECURITY ERROR.
sed -i -E '/^github.com\/(luxfi|hanzoai)\//d' go.sum && \
2026-05-15 12:15:55 -07:00
echo "{CC= $CC , TARGETPLATFORM= $TARGETPLATFORM , BUILDPLATFORM= $BUILDPLATFORM , CGO_ENABLED= ${ CGO_ENABLED } }" && \
2026-04-13 03:45:21 -07:00
export GOARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) && \
export LUXD_COMMIT = " ${ LUXD_COMMIT } " && \
GOFLAGS = "-mod=mod" ./scripts/${ BUILD_SCRIPT } ${ RACE_FLAG }
2026-04-13 07:26:17 -07:00
# ============= EVM Plugin Stage ================
2026-05-27 04:59:03 -07:00
# Build EVM plugin from source (includes custom precompile registry).
# EVM_VERSION must pin a luxfi/evm release whose go.mod points at a
# luxfi/node version that has the runtime.EngineAddressKey rename
# (LUX_VM_RUNTIME_ENGINE_ADDR → VM_RUNTIME_ENGINE_ADDR landed in
# 4ae211d46d on 2026-05-15). v0.18.14 pins node v1.27.6 which is
# post-rename. Older evm tags (e.g. v0.8.40 → node v1.23.4) ship a
# plugin that os.Getenv()'s the old key, mismatching the host that
# sets the new key, and C-chain never bootstraps.
2026-06-03 12:27:45 -07:00
#
# v0.19.0 (Quasar Edition): EtnaTimestamp Go field + json tag renamed
# to QuasarTimestamp/quasarTimestamp. Strict upgradeBytes decode via
# json.NewDecoder(...).DisallowUnknownFields() — stale etnaTimestamp
# in any deployed upgrade.json now fails parse loudly at boot rather
# than silently disabling the fork.
2026-06-03 12:34:01 -07:00
#
# v0.19.1 bumps luxfi/precompile v0.5.27 → v0.5.35 (commit 794912f):
# each of the 7 EIP-2537 bls12381 sub-configs (G1/G2 × {Add,Mul,MSM} +
# Pairing) now returns its own ConfigKey, fixing a Key() collision
# that forced #114 to drop bls12381 entries from mainnet upgrade.json.
# Re-adding them is gated on this plugin version.
2026-06-03 12:41:22 -07:00
#
# v0.19.2 bumps luxfi/vm v1.1.5 → v1.1.6, which drops the obsolete
# GetNetworkUpgrades() method on the VMContext interface. Required by
# the Etna→Quasar rename in v0.19.0: vm v1.1.5 still expected
# upgrade.Config to implement the old IsEtnaActivated() runtime
2026-06-03 12:49:30 -07:00
# interface, which no longer exists.
#
# v0.19.3 closes the cascade: bumps vm v1.1.6 → v1.1.7 + runtime
# v1.0.1 → v1.1.0. runtime v1.1.0 ripped the always-true
# NetworkUpgrades interface (decomplect 9e6e597) and renamed
# XAssetID → UTXOAssetID (refactor 034ec47). v1.1.6 anticipated the
# rip in rpc/context.go but still pinned the old runtime, leaving
# itself internally inconsistent. v1.1.7 pins the post-rip runtime.
2026-06-21 07:51:11 -07:00
# MUST track node's go.mod luxfi/evm (the C-Chain EVM plugin = the native 0x9999
# receipt/atomic surface). v1.99.31 = the native-atomic seam (precompile v0.5.51,
# geth v1.17.12 CallIndex). Bump this with every evm release or the bundled
# C-Chain plugin silently goes stale vs node's deps.
2026-06-21 09:23:48 -07:00
#
2026-06-21 12:13:01 -07:00
# v1.99.33 (precompile v0.5.53): 0x9999 DEX settlement activates at a SINGLE canonical
# dated fork — extras.DexSettleActivationTime = 1766704800 (Dec 25 2025 00:00:00 UTC) —
# with ZERO per-net config (no dexSettleConfig genesis/upgrade entry; one built-in fork,
# identical on every net). At the fork it BOTH enables dispatch AND installs the standard
# EXTCODESIZE marker (nonce=1 + code) into 0x9999 going forward, so eth_getCode(0x9999)
# !=0x and a typed Solidity IPoolManager(0x9999).swap(...) passes the contract-existence
# guard. The marker is installed FORWARD (never in historical genesis), so pre-Dec-25
# history (the ~/work/lux/state RLP snapshot, replayed via admin.importChain) stays
# byte-identical to canonical state — a pre-fork value transfer to 0x9999 hits a PLAIN
# account, not the precompile. The D-Chain (dexvm) peer is resolved at RUNTIME via the
# consensus-context "D" alias (contract.AtomicState.DChainID()) and the
# protocolFeeController is the built-in DAO treasury. 0x9010 is REMOVED (not a registered
# precompile, no dispatch, no forward); 0x9999 is the SOLE canonical DEX precompile. For a
# fresh net whose genesis ts >= the fork, the marker is present from block 0.
2026-06-21 12:41:01 -07:00
#
# v1.99.34 (precompile v0.5.54): fixes a consensus-divergence on the relaunch/replay path.
# The EVM dispatch gate (core.LuxPrecompileOverrider.PrecompileOverride) used to read the
# process-global params.lastRulesContext (via GetRulesExtra(Rules{})), which is rewritten
# last-writer-wins by every concurrent Rules() call (eth_call/estimateGas/worker). On a
# live, RPC-serving post-fork node replaying a PRE-fork RLP block (admin.importChain), a
# concurrent post-fork eth_call could overwrite the global timestamp between the verify
# goroutine's NewEVM(pre-fork block) and its tx dispatch — making the pre-fork block see
# 0x9999 ENABLED and dispatch SettleContract.Run during plain-account execution => state
# divergence / consensus split. Fix: the dispatch gate now decides from the overrider's OWN
# per-EVM fields (o.chainConfig + o.timestamp) via the pure params.GetExtrasRules, never the
# global — so every replay of a block yields the same enabled set on every validator. Also:
# the registry stateDBBridge.SubBalance fallback now FAILS CLOSED (panic → reverted call)
# instead of returning a zero "previous balance" without debiting (silent native mint); and
# the genesis-config builders (SetAllGenesisPrecompiles/AllGenesisPrecompiles) skip AlwaysOn
# modules so 0x9999 can never get a timestamp-0 genesis config that bypasses the dated fork.
# The money path (V4 swap ABI, marker install, two-phase atomic settle) is byte-for-byte
# unchanged: ONLY the dispatch-path timestamp source, the SubBalance fail-mode, the genesis
# builder guard, and stale 0x9010 comments changed.
2026-06-22 15:09:16 -07:00
#
# v1.99.37 (precompile v0.5.57): wires the 0x9999 ERC-20 Call surface to the DEX
# settlement precompile (commit 2cf30e43d) and gates that Call surface to the DEX
# settlement family 0x9999/0x9996 (commit 9579f2e34). Before this, a CALL into
# 0x9999's ERC-20 settle path saw a nil PrecompileEnv (GetPrecompileEnv == nil) and
# could not resolve the token-transfer Call seam — the two-phase atomic settle's
# ERC-20 leg had no env to execute against. precompile v0.5.57 also adds the
# CALL-only DELEGATECALL guard (commit feeaab5a0) so the settle surface is reachable
# only via CALL (not DELEGATECALL, which would run it in the caller's context). Also
# converges deps to latest patch within v1.x.x (threshold v1.9.9, crypto v1.19.21,
# database v1.20.3, geth v1.17.12, warp v1.19.5, vm v1.2.5, api v1.0.15 — the
# UTXOAssetID rename that fixed the LuxAssetID build break) and removes the dead
# vendored dexConfig upgrade fixtures. The 0x9999 swap ABI + dated-fork activation
# (DexSettleActivationTime = 1766704800) are unchanged from v1.99.34.
2026-06-23 09:32:19 -07:00
#
# v1.99.40 (precompile v0.5.59, chains v1.3.19, consensus v1.25.21): the permissionless
# 0x9999 DEX value path lands end-to-end. precompile v0.5.58/59 = AssetResolver (real
# on-chain canonical resolution, NO admin allowlist), one synchronous router/book/journal,
# minOut on every route, no keeper/venue/live-ZAP/second-book; the env→Call ERC-20 vault
# seam + in-state-vault resolution make a real ERC-20 settle. evm v1.99.39 = the
# reprocess-bind fix: NewBlockChain binds the chain Runtime (networkID/C-Chain id) BEFORE
# startup reprocess, so an unclean restart after a 0x9999 swap re-executes the committed
# swap with the correct identity instead of (0, Empty) — previously that reverted the swap,
# failed ValidateState, and BRICKED the node. Proven on-node: real swap → kill -9 →
# clean reboot, state intact. v1.99.40 = v1.99.39 + deps to latest. consensus v1.25.21 =
# stake-weighted alpha-of-K quorum finality + per-height single-finalize + epoch-bound certs.
2026-07-14 18:19:47 -07:00
# v1.104.9 bumps luxfi/api v1.0.15 -> v1.0.16 (indirect via luxfi/vm). v1.0.16
# APPENDED InitializeResponse.Capabilities (uint64) for the Quasar-export
# handshake (api commit 1f2dc5a). The node pins api v1.0.16 and DECODES that
# field; an EVM plugin built at v1.104.8 (api v1.0.15) omits it, so the node's
# strict struct decode hits "zap decode initialize response: unexpected EOF"
# and EVERY EVM chain (C + L2s hanzo/zoo/pars/spc, all mgj786) fails to
# initialize. The api bump is code-free for plugins (chains v1.7.4->v1.7.5
# adopted it with a go.mod-only diff), so v1.104.9 = v1.104.8 + api alignment.
2026-07-25 13:43:32 -07:00
# C-Chain execution backend. The default is the pure-Go EVM, which is what
# every image has shipped so far. EVM_CGO=1 EVM_TAGS=cevm links luxcpp/cevm
# instead — that pair is what makes AutoEVM resolve to CppEVM. The libraries
# come from the cevm fetch in this same stage above.
ARG EVM_CGO = 0
ARG EVM_TAGS = ""
2026-07-14 18:19:47 -07:00
ARG EVM_VERSION = v1.104.9
2026-04-13 03:45:21 -07:00
ARG EVM_VM_ID = mgj786NP7uDwBCcq6YwThhaN8FLyybkCa4zBWTQbNgmK6k9A6
2026-06-21 07:51:11 -07:00
# the pinned evm go.mod may pin a dead luxfi/upgrade pseudo-version
2026-06-19 20:18:03 -07:00
# (v1.0.1-0.20260603055252-f51810805436 — commit pruned from origin). Heal it to
# the released upgrade v1.0.1 tag (semver-forward, not a downgrade). Then strip
# first-party go.sum lines so -mod=mod re-records current content hashes for the
# re-published luxfi modules at their pinned versions (integrity repair, no version drift).
2026-04-13 03:45:21 -07:00
RUN --mount= type = cache,target= /root/.cache/go-build \
mkdir -p /luxd/build/plugins && \
git clone --depth 1 --branch ${ EVM_VERSION } https://github.com/luxfi/evm.git /tmp/evm && \
cd /tmp/evm && \
. /build/build_env.sh && \
2026-06-19 20:18:03 -07:00
go mod edit -require= github.com/luxfi/upgrade@v1.0.1 && \
2026-06-30 21:33:19 -07:00
# evm v1.99.52 = v1.99.51 + the idle-builder bounded-wake backstop
# (startPendingTxPoll: a 500ms mempool re-poll so a tx after idle wakes the
# builder within a bounded window — closes the lost-wakeup/subscribe-gap;
# deterministic, wake-timing only). v1.99.51 = the block-production stall fix
# (WaitForEvent builder-ready race + target-rate build pacing — un-freezes the
# C-Chain that stalled at the imported frontier) on top of precompile v0.16.0
# enable-everything
2026-06-28 00:58:24 -07:00
# (wallet curves + standard precompiles enabled; fflonk fail-closed; accel
# byte-identity; DEX big.Rat + determinism). Pin chains v1.4.8 (warp
2026-06-27 21:56:20 -07:00
# consolidated to one luxfi/warp helper; graphvm genesis-last-accepted fix)
# to match the chain-VM plugin stage (CHAINS_REF) below.
2026-07-02 11:03:04 -07:00
go mod edit -require= github.com/luxfi/chains@v1.7.0 && \
2026-06-19 20:18:03 -07:00
find /tmp/evm -name go.sum -exec sed -i -E '/^github.com\/(luxfi|hanzoai)\//d' {} + && \
2026-04-13 03:45:21 -07:00
GOARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) \
2026-07-25 13:43:32 -07:00
CGO_ENABLED = ${ EVM_CGO } GOFLAGS = -mod= mod \
go build -ldflags= "-s -w" -tags " ${ EVM_TAGS } " -o /luxd/build/plugins/${ EVM_VM_ID } ./plugin && \
2026-04-13 03:45:21 -07:00
chmod +x /luxd/build/plugins/${ EVM_VM_ID } && \
rm -rf /tmp/evm
2026-04-13 07:26:17 -07:00
# ============= Chain VM Plugin Stage ================
# Build all 11 chain VM plugins from github.com/luxfi/chains
#
# VM ID table (CB58-encoded ids.ID byte arrays from each factory.go):
# aivm -> juFxSrbCM4wszxddKepj1GWwmrn9YgN1g4n3VUWPpRo9JjERA
# bridgevm -> kMhHABHM8j4bH94MCc4rsTNdo5E9En37MMyiujk4WdNxgXFsY
# dexvm -> mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr
# graphvm -> nZQm4Dmg1rjX18rb8maL9gamYyXPf1xCvF7ymWzxp6a1nSQTt
# identityvm -> oR6tnZHezwogyf9fRnomNXC9ojwCEBAU6jdUzpgy2PB1tD7fM
# keyvm -> pJJCSV7hHYVY6TUZwR8qUPAfuhX8JLb2C1AzNSezrYNbgau8M
# oraclevm -> r5m1ujrmXxVcQetG3CQfuDLHp2RHKh6vCDaFgBRQfUcTZh7eS
# quantumvm -> ry9Sg8rZdT26iEKvJDmC2wkESs4SDKgZEhk5BgLSwg1EpcNug
# relayvm -> sP6dLqrrBR9w3soP18fbJ3YzZecZdD7DDdfH2cFhhLq7Hy9bz
2026-07-25 14:53:07 -07:00
# mpcvm -> qCURact1n41FcoNBch8iMVBwc9AWie48D118ZNJ5tBdWrvryS
2026-04-13 07:26:17 -07:00
# zkvm -> vv3qPfyTVXZ5ArRZA9Jh4hbYDTBe43f7sgQg4CHfNg1rnnvX9
2026-06-21 07:51:11 -07:00
# MUST track node's go.mod luxfi/chains (the D-Chain dexvm + 10 VM plugins).
# Bump with every chains release or the bundled VM plugins go stale vs node's deps.
2026-06-27 21:56:20 -07:00
# v1.4.7 == node go.mod's luxfi/chains pin: warp consolidated to ONE luxfi/warp
2026-07-03 01:23:03 -07:00
# helper (bridgevm/zkvm/mpcvm), graphvm genesis-last-accepted fix, built on
2026-06-27 21:56:20 -07:00
# evm v1.99.48 + precompile v0.16.0 (enable-everything builder surface). Keeps the
# baked VM plugins in lockstep with the host node.
2026-07-14 15:56:44 -07:00
ARG CHAINS_REF = v1.7.6
2026-04-13 07:26:17 -07:00
RUN --mount= type = cache,target= /root/.cache/go-build \
2026-06-19 20:18:03 -07:00
git clone --depth 1 --branch ${ CHAINS_REF } https://github.com/luxfi/chains.git /tmp/chains && \
2026-07-12 21:43:55 -07:00
find /tmp/chains -name go.sum -exec sed -i -E '/^github.com\/(luxfi|hanzoai)\//d' {} +
2026-04-13 07:26:17 -07:00
# Each VM is an independent Go module under /tmp/chains/<vm>/.
# Build each plugin binary and place it at /luxd/build/plugins/<cb58-vm-id>.
2026-05-19 13:32:30 -07:00
#
2026-06-19 20:18:03 -07:00
# The recursive go.sum strip above lets -mod=mod re-record current content hashes
# for re-published first-party modules at their pinned versions (integrity repair).
# At a tagged CHAINS_REF (v1.3.11) the sibling go.mod replace directives that
# affect `main` are absent, so every VM module builds in isolation. The bridgevm
# plugin (B-Chain) MUST build — it blank-imports crypto/threshold/bls to register
# the BLS threshold scheme; a miss reintroduces the v1.30.16 B-Chain init failure.
2026-04-13 07:26:17 -07:00
RUN --mount= type = cache,target= /root/.cache/go-build \
. /build/build_env.sh && \
export GOARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) && \
2026-05-19 13:32:30 -07:00
mkdir -p /luxd/build/plugins && \
( cd /tmp/chains/aivm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/juFxSrbCM4wszxddKepj1GWwmrn9YgN1g4n3VUWPpRo9JjERA ./cmd/plugin ) || echo "WARN: aivm plugin build skipped" ; \
( cd /tmp/chains/bridgevm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
2026-06-19 20:18:03 -07:00
-o /luxd/build/plugins/kMhHABHM8j4bH94MCc4rsTNdo5E9En37MMyiujk4WdNxgXFsY ./cmd/plugin ) ; \
2026-05-19 13:32:30 -07:00
( cd /tmp/chains/graphvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/nZQm4Dmg1rjX18rb8maL9gamYyXPf1xCvF7ymWzxp6a1nSQTt ./cmd/plugin ) || echo "WARN: graphvm plugin build skipped" ; \
( cd /tmp/chains/identityvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/oR6tnZHezwogyf9fRnomNXC9ojwCEBAU6jdUzpgy2PB1tD7fM ./cmd/plugin ) || echo "WARN: identityvm plugin build skipped" ; \
( cd /tmp/chains/keyvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/pJJCSV7hHYVY6TUZwR8qUPAfuhX8JLb2C1AzNSezrYNbgau8M ./cmd/plugin ) || echo "WARN: keyvm plugin build skipped" ; \
( cd /tmp/chains/oraclevm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/r5m1ujrmXxVcQetG3CQfuDLHp2RHKh6vCDaFgBRQfUcTZh7eS ./cmd/plugin ) || echo "WARN: oraclevm plugin build skipped" ; \
( cd /tmp/chains/quantumvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/ry9Sg8rZdT26iEKvJDmC2wkESs4SDKgZEhk5BgLSwg1EpcNug ./cmd/plugin ) || echo "WARN: quantumvm plugin build skipped" ; \
( cd /tmp/chains/relayvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/sP6dLqrrBR9w3soP18fbJ3YzZecZdD7DDdfH2cFhhLq7Hy9bz ./cmd/plugin ) || echo "WARN: relayvm plugin build skipped" ; \
2026-07-03 01:23:03 -07:00
( cd /tmp/chains/mpcvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
2026-07-25 14:53:07 -07:00
-o /luxd/build/plugins/qCURact1n41FcoNBch8iMVBwc9AWie48D118ZNJ5tBdWrvryS ./cmd/plugin ) || echo "WARN: mpcvm plugin build skipped" ; \
2026-05-19 13:32:30 -07:00
( cd /tmp/chains/zkvm && CGO_ENABLED = 0 GOFLAGS = -mod= mod go build -ldflags= "-s -w" \
-o /luxd/build/plugins/vv3qPfyTVXZ5ArRZA9Jh4hbYDTBe43f7sgQg4CHfNg1rnnvX9 ./cmd/plugin ) || echo "WARN: zkvm plugin build skipped" ; \
( chmod +x /luxd/build/plugins/* 2>/dev/null || true ) && \
2026-07-03 21:26:08 -07:00
for p in \
juFxSrbCM4wszxddKepj1GWwmrn9YgN1g4n3VUWPpRo9JjERA \
kMhHABHM8j4bH94MCc4rsTNdo5E9En37MMyiujk4WdNxgXFsY \
nZQm4Dmg1rjX18rb8maL9gamYyXPf1xCvF7ymWzxp6a1nSQTt \
oR6tnZHezwogyf9fRnomNXC9ojwCEBAU6jdUzpgy2PB1tD7fM \
pJJCSV7hHYVY6TUZwR8qUPAfuhX8JLb2C1AzNSezrYNbgau8M \
r5m1ujrmXxVcQetG3CQfuDLHp2RHKh6vCDaFgBRQfUcTZh7eS \
ry9Sg8rZdT26iEKvJDmC2wkESs4SDKgZEhk5BgLSwg1EpcNug \
sP6dLqrrBR9w3soP18fbJ3YzZecZdD7DDdfH2cFhhLq7Hy9bz \
2026-07-25 14:53:07 -07:00
qCURact1n41FcoNBch8iMVBwc9AWie48D118ZNJ5tBdWrvryS \
2026-07-03 21:26:08 -07:00
vv3qPfyTVXZ5ArRZA9Jh4hbYDTBe43f7sgQg4CHfNg1rnnvX9 ; do \
test -s /luxd/build/plugins/$p \
|| { echo "FATAL: required chain-VM plugin $p missing/empty — its build failed above (see the matching WARN line); the runtime-stage hard COPY would otherwise fail cryptically. Surface & fix the real Go build error, or remove the plugin from BOTH the build list and the runtime COPY." ; exit 1; } ; \
done && \
2026-04-13 07:26:17 -07:00
rm -rf /tmp/chains
2026-06-22 03:41:23 -07:00
# ============= Native D-Chain DEX VM Plugin Stage ================
# The D-Chain (dexvm slot, vmID mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr)
# is the NATIVE consensus matcher VM: github.com/luxfi/dex/pkg/dchain implements
# block.ChainVM and runs the lx.OrderBook matcher INSIDE luxd consensus
# (Block.Verify against a versiondb overlay; Block.Accept commits) — the trade IS
# the D-Chain state transition, sequenced by luxd's multi-validator engine. This
# REPLACES the former chains/dexvm proxy (which relayed clob_* over ZAP to a
# standalone dchain-venue): there is no DexZapEndpoint and no standalone venue in
# the trading path. cmd/dchain wraps the VM in the SAME rpc.Serve plugin harness
# luxfi/evm boots through, and is pure-Go (CGO=0) — the optional GPU AMM
# accelerator in pkg/lx is a separate concern gated by its own cuda/metal tags and
# is NOT linked here. v1.5.10 is the first tag whose cmd/dchain builds CGO=0
2026-06-22 11:17:45 -07:00
# (drops the phantom dchain+cgo gate); v1.5.11 wires CLOB order ingestion over the
2026-07-01 11:40:13 -07:00
# node HTTP router (VM.CreateHandlers -> /v1/bc/D/dex/<method>, pkg/dchain/ingest.go)
2026-06-22 11:17:45 -07:00
# so an order POSTed to the node flows submitTx -> mempool -> consensus -> Verify
2026-06-22 11:41:32 -07:00
# (match) -> Accept; v1.5.12 persists the head block so the VM survives a restart
2026-06-22 12:28:37 -07:00
# once advanced past genesis (GetBlock(lastAccepted) no longer ErrNotFound);
# v1.5.13 indexes processing blocks so the plugin transport's ID-only Accept
# (GetBlock(builtID)) resolves the just-built block — without it the engine's
# self-finalize Accept is a silent no-op and the clob submitTx waiter hangs (no
2026-06-22 14:12:47 -07:00
# D-Chain blocks). v1.5.14 consumes luxfi/database v1.20.4, which fixes prefixdb
# returning ZERO rows for a nil-start prefix scan over a prefixdb-wrapped chain
# DB (every plugin VM via vm/rpc) — that stranded the native D-Chain order book
2026-06-22 14:57:04 -07:00
# (rebuildBookFromDB folded empty -> 0 fills despite committed asks). v1.5.15 adds
# the committed-state READ surface (clob_get_trades/orders/markets/book over
2026-07-01 11:40:13 -07:00
# /v1/bc/D/dex/<method>, pkg/dchain/read.go): read-only JSON of the durable trade
2026-06-22 14:57:04 -07:00
# log / resting book / markets, served beside the writes with ZERO consensus
# impact. Needed to VERIFY a fill replicated identically across validators (query
# every node, diff the trade rows + head root) and to feed markets-display (native
# fills are trade: rows). Bump with every dex release that changes the VM, like
# CHAINS_REF for the other 10 VMs.
ARG DEX_REF = v1.5.15
2026-06-22 03:41:23 -07:00
RUN --mount= type = cache,target= /root/.cache/go-build \
git clone --depth 1 --branch ${ DEX_REF } https://github.com/luxfi/dex.git /tmp/dex && \
find /tmp/dex -name go.sum -exec sed -i -E '/^github.com\/(luxfi|hanzoai)\//d' {} + && \
cd /tmp/dex && \
2026-07-14 18:19:47 -07:00
# Align the dexvm plugin's ZAP wire (luxfi/api) with the node. No dex release
# pins api v1.0.16 yet (all <=v1.5.20 carry v1.0.15), so force it here; the
# bump is code-free (adds InitializeResponse.Capabilities, capability-gated),
# so dexvm emits the field the node decodes -> no "unexpected EOF" on D-Chain.
go mod edit -require= github.com/luxfi/api@v1.0.16 && \
2026-06-22 03:41:23 -07:00
. /build/build_env.sh && \
GOARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) \
CGO_ENABLED = 0 GOFLAGS = -mod= mod \
go build -ldflags= "-s -w" \
-o /luxd/build/plugins/mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr ./cmd/dchain && \
chmod +x /luxd/build/plugins/mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr && \
test -s /luxd/build/plugins/mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr \
|| { echo "FATAL: native D-Chain (dexvm) plugin missing — D-Chain cannot start" ; exit 1; } && \
rm -rf /tmp/dex
2026-04-13 07:26:17 -07:00
# lpm (Lux Plugin Manager) -- optional, skip if build fails
2026-04-13 03:45:21 -07:00
RUN --mount= type = cache,target= /root/.cache/go-build \
--mount= type = cache,target= /root/go/pkg/mod \
GOARCH = $( echo ${ TARGETPLATFORM } | cut -d / -f2) && \
git clone --depth 1 https://github.com/luxfi/lpm.git /tmp/lpm && \
cd /tmp/lpm && \
CGO_ENABLED = 0 go build -ldflags= "-s -w" -o /luxd/build/lpm ./main && \
rm -rf /tmp/lpm || echo "WARN: lpm build skipped (non-critical)"
# Create this directory in the builder to avoid requiring anything to be executed in the
# potentially emulated execution container.
RUN mkdir -p /luxd/build
2026-04-13 07:26:17 -07:00
# ============= Runtime Stage ================
2026-04-13 03:45:21 -07:00
# Commands executed in this stage may be emulated (i.e. very slow) if TARGETPLATFORM and
# BUILDPLATFORM have different arches.
FROM debian:12-slim AS execution
# Install runtime dependencies (curl for RPC, git for lpm source installs, ca-certificates for TLS)
RUN apt-get update && apt-get install -y --no-install-recommends \
curl ca-certificates git \
&& rm -rf /var/lib/apt/lists/*
2026-04-13 07:26:17 -07:00
# GPU crypto library (optional -- only present when built with CGO_ENABLED=1 + luxcpp).
2026-04-13 03:45:21 -07:00
# Pure Go fallbacks are used when the library is absent.
RUN ldconfig 2>/dev/null || true
2026-06-19 20:18:03 -07:00
# Maintain compatibility with previous images.
# In the builder stage /luxd/build contains ONLY plugins/ (the luxd + lpm binaries
# live at /build/build and are COPYed separately below). The plugin set (~192MB of
# 12 VM plugins) is split across several COPY layers so each blob stays well under
# ~100MB: a single monolithic plugins layer cannot reliably complete its registry
# blob upload over a contended uplink, whereas sub-100MB layers push reliably (and
# resume independently by digest).
# plugin group 1
COPY --from= builder \
/luxd/build/plugins/mgj786NP7uDwBCcq6YwThhaN8FLyybkCa4zBWTQbNgmK6k9A6 \
/luxd/build/plugins/juFxSrbCM4wszxddKepj1GWwmrn9YgN1g4n3VUWPpRo9JjERA \
/luxd/build/plugins/kMhHABHM8j4bH94MCc4rsTNdo5E9En37MMyiujk4WdNxgXFsY \
/luxd/build/plugins/
# plugin group 2
COPY --from= builder \
/luxd/build/plugins/mDVT5EWMumBp3LCqvKwuyZQeY1VXr1jvjGNAt8nL4UFiXvqXr \
/luxd/build/plugins/nZQm4Dmg1rjX18rb8maL9gamYyXPf1xCvF7ymWzxp6a1nSQTt \
/luxd/build/plugins/oR6tnZHezwogyf9fRnomNXC9ojwCEBAU6jdUzpgy2PB1tD7fM \
/luxd/build/plugins/pJJCSV7hHYVY6TUZwR8qUPAfuhX8JLb2C1AzNSezrYNbgau8M \
/luxd/build/plugins/
# plugin group 3
COPY --from= builder \
/luxd/build/plugins/r5m1ujrmXxVcQetG3CQfuDLHp2RHKh6vCDaFgBRQfUcTZh7eS \
/luxd/build/plugins/ry9Sg8rZdT26iEKvJDmC2wkESs4SDKgZEhk5BgLSwg1EpcNug \
/luxd/build/plugins/sP6dLqrrBR9w3soP18fbJ3YzZecZdD7DDdfH2cFhhLq7Hy9bz \
2026-07-25 14:53:07 -07:00
/luxd/build/plugins/qCURact1n41FcoNBch8iMVBwc9AWie48D118ZNJ5tBdWrvryS \
2026-06-19 20:18:03 -07:00
/luxd/build/plugins/vv3qPfyTVXZ5ArRZA9Jh4hbYDTBe43f7sgQg4CHfNg1rnnvX9 \
/luxd/build/plugins/
2026-04-13 03:45:21 -07:00
WORKDIR /luxd/build
# Copy the executables into the container
COPY --from= builder /build/build/ .
# Create plugins directory and lpm state directory
RUN mkdir -p /luxd/build/plugins /root/.lpm /root/.lux/plugins
# Add lpm to PATH
ENV PATH = "/luxd/build: ${ PATH } "
2026-04-13 07:26:17 -07:00
EXPOSE 9630 9631
2026-04-13 03:45:21 -07:00
CMD [ "./luxd" ]