From f39c4fef32db0915b3dbac32a540efefd4a0c970 Mon Sep 17 00:00:00 2001 From: Til Jordan Date: Sat, 3 Jan 2026 20:01:46 +0000 Subject: [PATCH] chore: bump thornode image: update to 1.0.28-23761879 (dev) Automated weekly bump. --- README.md | 4 ++-- examples/cli-with-network.yaml | 2 +- examples/forking-1.0.10.yaml | 2 +- examples/forking-genesis.yaml | 4 ++-- src/faucet/faucet_launcher.star | 2 +- src/network_launcher/single_node_launcher.star | 2 +- src/package_io/thorchain_defaults.json | 4 ++-- src/toolchain-cli/Dockerfile | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 0c380e4..25d048a 100644 --- a/README.md +++ b/README.md @@ -261,10 +261,10 @@ chains: app_version: "3.11.0" forking: enabled: true - image: "tiljordan/thornode-forking:1.0.25-23761879" + image: "tiljordan/thornode-forking:1.0.28-23761879" height: 23015000 participants: - - image: "tiljordan/thornode-forking:1.0.25-23761879" + - image: "tiljordan/thornode-forking:1.0.28-23761879" count: 1 account_balance: 1000000000000 bond_amount: 500000000000 diff --git a/examples/cli-with-network.yaml b/examples/cli-with-network.yaml index a05fe19..2ca3a1d 100644 --- a/examples/cli-with-network.yaml +++ b/examples/cli-with-network.yaml @@ -7,7 +7,7 @@ chains: participants: - type: full count: 1 - image: "tiljordan/thornode-forking:1.0.25-23761879" + image: "tiljordan/thornode-forking:1.0.28-23761879" account_balance: 1000000000000 bond_amount: 500000000000 min_cpu: 500 diff --git a/examples/forking-1.0.10.yaml b/examples/forking-1.0.10.yaml index fb1092c..cb853be 100644 --- a/examples/forking-1.0.10.yaml +++ b/examples/forking-1.0.10.yaml @@ -2,7 +2,7 @@ chains: - name: thorchain type: thorchain participants: - - image: "tiljordan/thornode-forking:1.0.25-23761879" + - image: "tiljordan/thornode-forking:1.0.28-23761879" account_balance: 1000000000000000 bond_amount: "300000000000000" count: 1 diff --git a/examples/forking-genesis.yaml b/examples/forking-genesis.yaml index 83374d8..ba4b462 100644 --- a/examples/forking-genesis.yaml +++ b/examples/forking-genesis.yaml @@ -7,13 +7,13 @@ chains: forking: enabled: true - image: "tiljordan/thornode-forking:1.0.25-23761879" + image: "tiljordan/thornode-forking:1.0.28-23761879" height: 23043758 participants: - type: full count: 1 - image: "tiljordan/thornode-forking:1.0.25-23761879" + image: "tiljordan/thornode-forking:1.0.28-23761879" account_balance: 1000000000000 bond_amount: 500000000000 min_cpu: 500 diff --git a/src/faucet/faucet_launcher.star b/src/faucet/faucet_launcher.star index c95ddb2..9aaa348 100644 --- a/src/faucet/faucet_launcher.star +++ b/src/faucet/faucet_launcher.star @@ -30,7 +30,7 @@ def launch_faucet(plan, chain_name, chain_id, mnemonic, transfer_amount): ) # Use thornode forking image to get thornode CLI in container - faucet_image = "tiljordan/thornode-forking:1.0.25-23761879" + faucet_image = "tiljordan/thornode-forking:1.0.28-23761879" # Launch the faucet service plan.add_service( diff --git a/src/network_launcher/single_node_launcher.star b/src/network_launcher/single_node_launcher.star index e2631ec..6870e20 100644 --- a/src/network_launcher/single_node_launcher.star +++ b/src/network_launcher/single_node_launcher.star @@ -9,7 +9,7 @@ def launch_single_node(plan, chain_cfg): config_folder = "/root/.thornode/config" forking_config = chain_cfg.get("forking", {}) - forking_image = forking_config.get("image", "tiljordan/thornode-forking:1.0.25-23761879") + forking_image = forking_config.get("image", "tiljordan/thornode-forking:1.0.28-23761879") participant = chain_cfg["participants"][0] node_volume_size = participant.get("persistent_size_mb", chain_cfg.get("node_persistent_size_mb", 16384)) diff --git a/src/package_io/thorchain_defaults.json b/src/package_io/thorchain_defaults.json index 353ed5d..37abd14 100644 --- a/src/package_io/thorchain_defaults.json +++ b/src/package_io/thorchain_defaults.json @@ -54,7 +54,7 @@ { "type": "full", "count": 1, - "image": "tiljordan/thornode-forking:1.0.25-23761879", + "image": "tiljordan/thornode-forking:1.0.28-23761879", "account_balance": 1000000000000, "bond_amount": 500000000000, "min_cpu": 1000, @@ -68,7 +68,7 @@ ], "forking": { "enabled": true, - "image": "tiljordan/thornode-forking:1.0.25-23761879", + "image": "tiljordan/thornode-forking:1.0.28-23761879", "grpc": "grpc.thor.pfc.zone:443", "chain_id": "thorchain-1", "height": 23043758, diff --git a/src/toolchain-cli/Dockerfile b/src/toolchain-cli/Dockerfile index 1854751..96a9750 100644 --- a/src/toolchain-cli/Dockerfile +++ b/src/toolchain-cli/Dockerfile @@ -1,4 +1,4 @@ -FROM tiljordan/thornode-forking:1.0.25-23761879 +FROM tiljordan/thornode-forking:1.0.28-23761879 SHELL ["/bin/bash", "-lc"]