From 539fdd80e1307551a0cd35e0171015e5decd7aa7 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Wed, 10 Jun 2026 17:05:57 +0300 Subject: [PATCH 1/2] bin/deposit: use committee address for deposits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do not use single address, this requires to wait until balance is big enough: ``` ▶ make prepare.ir Running bin/deposit.sh can't make transaction: script failed (FAULT state) due to an error: at instruction 94 (ASSERT): ASSERT failed 35 main ./bin/deposit.sh: Cannot transfer GAS to NeoFS contract make: *** [services/ir/prepare.mk:3: prepare.ir] Error 1 ``` Signed-off-by: Pavel Karpy --- bin/deposit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/deposit.sh b/bin/deposit.sh index 851e1ee..64adc9b 100755 --- a/bin/deposit.sh +++ b/bin/deposit.sh @@ -16,7 +16,7 @@ CONFIG="${CONFIG:-/wallets/config.yml}" DEPOSIT="${1:-50}" # Internal variables -ADDR=$(jq -r .accounts[0].address < "${WALLET}" \ +ADDR=$(jq -r .accounts[1].address < "${WALLET}" \ || die "Cannot get address from wallet: ${WALLET}") CONTRACT_ADDR=$(${NEOGO} util convert "${NEOFS_IR_MAINNET_CONTRACTS_NEOFS}" \ | grep 'LE ScriptHash to Address' \ From 25f9cb14313940b2560521b66b7ad2be81f84045 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Wed, 10 Jun 2026 17:08:10 +0300 Subject: [PATCH 2/2] .env: add placeholder for neo-go local path ENV It was always supported but there was never a stub for it unlike it is done for cli/contracts/adm. For local runs it saves binary download time. Signed-off-by: Pavel Karpy --- .env | 1 + 1 file changed, 1 insertion(+) diff --git a/.env b/.env index 22d74f7..349628b 100644 --- a/.env +++ b/.env @@ -12,6 +12,7 @@ NEOGO_VERSION=0.119.0 NEOGO_IMAGE=nspccdev/neo-go NEO_GO_PLATFORM=linux-amd64 NEO_GO_URL="https://github.com/nspcc-dev/neo-go/releases/download/v${NEOGO_VERSION}/neo-go-${NEO_GO_PLATFORM}" +#NEO_GO_PATH=/path/to/neo-go-binary # NeoFS InnerRing nodes IR_VERSION=0.53.0