fix: Update testnet RPC URL to use aitbc1 endpoint
Some checks failed
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Deploy to Testnet / notify-deployment (push) Has been cancelled
Contract Performance Benchmarks / benchmark-gas-usage (push) Successful in 1m22s
Contract Performance Benchmarks / benchmark-execution-time (push) Successful in 1m5s
Contract Performance Benchmarks / benchmark-throughput (push) Successful in 59s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Failing after 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Failing after 1s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Contract Performance Benchmarks / compare-benchmarks (push) Successful in 1s

- Change testnet RPC URL fallback from localhost:8545 to 10.1.223.40:8006
- aitbc1 node supports ait-testnet and is accessible from CI runner
- Fixes HH108 error when deploying contracts to testnet in CI
This commit is contained in:
aitbc
2026-04-29 17:07:40 +02:00
parent e586f66ec9
commit 3cf1942b85

View File

@@ -22,7 +22,7 @@ const config = {
url: "http://127.0.0.1:8545"
},
testnet: {
url: process.env.TESTNET_RPC_URL || "http://localhost:8545",
url: process.env.TESTNET_RPC_URL || "http://10.1.223.40:8006",
accounts: process.env.TESTNET_DEPLOYER_PRIVATE_KEY ? [process.env.TESTNET_DEPLOYER_PRIVATE_KEY] : [],
chainId: 31337
}