This disposable staging chain forks public Testnet history. Use the matching revision, snapshot, and configuration below together in a separate data directory. Keep JSON-RPC bound to localhost.
Joining details captured · 27 Sep 2026, 15:33 UTC . Source: the operator's network manifest . Check it before joining; staging can reset.
01 02 Bootstrap the fork history One-time bootstrap snapshot Served directly by Valargroup for this staging fork. This pruned seed snapshot is not refreshed daily.
Block height 4,398,752
Published · UTC 2026-09-26 19:18 UTC
Size 8.96 GiB
Storage mode Pruned
DB format v29.1.0 SHA-256
4a347a643eee9a33f0b56a0f28e365c63ffbc0d5cc4ee46cd5d7cd1929117595Direct download
Before you restore Stop your node. The commands create a new nu7-state directory; keep public Testnet and earlier staging data separate.
Requires curl, shasum, tar, and zstd.
curl -fL -C - -o nu7.tar.zst \
https://api.nu7.valargroup.dev/snapshots/nu7-v2-seed-4398752.tar.zst &&
echo '4a347a643eee9a33f0b56a0f28e365c63ffbc0d5cc4ee46cd5d7cd1929117595 nu7.tar.zst' | shasum -a 256 -c - &&
mkdir nu7-state &&
tar --zstd -xf nu7.tar.zst -C nu7-state03 Save the configuration and start Save the configuration below as nu7-zakura.toml. Open inbound TCP port 18233 to accept peers. Check getblockchaininfo for the expected activation height and an advancing tip.
nu7-zakura.toml · matches the displayed network Download
[network]
listen_addr = "0.0.0.0:18233"
initial_testnet_peers = [
"seed.nu7.valargroup.dev:18233",
"134.199.239.83:18233",
"157.245.69.251:18233",
"165.22.255.181:18233",
]
p2p_stack = "legacy"
[network.network]
network_name = "Nu7StagingV2"
network_magic = [122, 107, 117, 56]
checkpoints = true
initial_nsm_value_balance = 55768414957
[network.network.activation_heights]
BeforeOverwinter = 1
Overwinter = 207500
Sapling = 280000
Blossom = 584000
Heartwood = 903800
Canopy = 1028500
NU5 = 1842420
NU6 = 2976000
"NU6.1" = 3536500
"NU6.2" = 4052000
"NU6.3" = 4134000
NU7 = 4398756
[rpc]
listen_addr = "127.0.0.1:18232"
enable_cookie_auth = false
[state]
cache_dir = "./nu7-state"
storage_mode = "pruned"
start · from the directory containing nu7-state
./target/release/zakurad -c nu7-zakura.toml startTo mine, add your own transparent miner_address under [mining] and run the fork miner alongside the node. Coinbase outputs mature after 100 blocks.
mine · optional, from the same directory
./target/release/zakura-fork-miner --rpc 127.0.0.1:18232 --config nu7-zakura.toml