From 88be1835114479ee7576eb0bf444c031b6f67936 Mon Sep 17 00:00:00 2001 From: Jason Schrader Date: Wed, 15 Jan 2025 03:09:02 -0700 Subject: [PATCH] fix: raise fee to 0.5 STX My testnet txs go through super fast at 0.1 STX, my test deploys on mainnet at 0.5 STX were super speedy, we might be able to meet somewhere in the middle but tagging @human058382928 so he is aware. --- src/stacks-contracts/services/contract-deployer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stacks-contracts/services/contract-deployer.ts b/src/stacks-contracts/services/contract-deployer.ts index 64f6a0d7..6fae4499 100644 --- a/src/stacks-contracts/services/contract-deployer.ts +++ b/src/stacks-contracts/services/contract-deployer.ts @@ -45,7 +45,7 @@ export class ContractDeployer { anchorMode: AnchorMode.Any, postConditionMode: PostConditionMode.Allow, nonce: nonce !== undefined ? nonce : undefined, - fee: BigInt(100_000), // 0.1 STX + fee: BigInt(500_000), // 0.5 STX }; const transaction = await makeContractDeploy(deployOptions);