Skip to content

Commit

Permalink
fix: raise fee to 0.5 STX
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
whoabuddy committed Jan 15, 2025
1 parent ed83fb3 commit 88be183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stacks-contracts/services/contract-deployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 88be183

Please sign in to comment.