From 7237f48ebfc7497f93f3f78becff3231287771fa Mon Sep 17 00:00:00 2001 From: aitbc Date: Wed, 20 May 2026 10:24:16 +0200 Subject: [PATCH] fix: update deployment script with 1 million token balance - Set initial wallet balance to 1 million tokens - Compatible with BigInteger Account model fix - Wallet receives initial coin allocation from genesis block --- scripts/deployment/deploy-integrated-blockchain-node.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deployment/deploy-integrated-blockchain-node.sh b/scripts/deployment/deploy-integrated-blockchain-node.sh index 6c65c6f8..a93499a6 100755 --- a/scripts/deployment/deploy-integrated-blockchain-node.sh +++ b/scripts/deployment/deploy-integrated-blockchain-node.sh @@ -255,7 +255,7 @@ genesis_allocation = { "allocations": [ { "address": address, - "balance": "1000000000000000000000000", # 1 billion tokens + "balance": "1000000", # 1 million tokens "nonce": 0 } ]