chore: sync state and push to Gitea (Chain 138 deploy)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 13:17:20 -08:00
parent 2f1bcdac7e
commit d946606870
3 changed files with 78 additions and 30374 deletions

View File

@@ -279,6 +279,22 @@ module.exports = {
skipDryRun: true
},
chain138: {
networkCheckTimeout: 60000,
provider: () => {
const rpc = process.env.RPC_URL_138 || process.env.CHAIN138_RPC_URL || "http://127.0.0.1:8545";
return new HDWalletProvider({
privateKeys: [privKey],
providerOrUrl: rpc,
chainId: 138
});
},
network_id: "138",
gas: 8000000,
gasPrice: process.env.GAS_PRICE_138 ? parseInt(process.env.GAS_PRICE_138, 10) : 1000000000,
skipDryRun: true
},
coverage: {
host: "127.0.0.1",
port: 6545,