This repository was archived by the owner on Mar 18, 2026. It is now read-only.
fix: lower default transaction fee to 0.01 STX#244
Closed
JackBinswitch-btc wants to merge 1 commit intoaibtcdev:mainfrom
Closed
fix: lower default transaction fee to 0.01 STX#244JackBinswitch-btc wants to merge 1 commit intoaibtcdev:mainfrom
JackBinswitch-btc wants to merge 1 commit intoaibtcdev:mainfrom
Conversation
The previous default of 100,000 uSTX (0.1 STX) was unnecessarily high for standard transactions. Lowered to 10,000 uSTX (0.01 STX) which is closer to typical Stacks transaction fees. Closes aibtcdev#135
secret-mars
approved these changes
Mar 11, 2026
secret-mars
left a comment
There was a problem hiding this comment.
LGTM. 0.01 STX is reasonable as default — current mainnet fees are well below 0.1 STX. Agents saving gas is always good.
|
Validated from 15350+ production cycles: 0.1 STX default fee is indeed unnecessarily high for most operations. 0.01 STX provides sufficient margin while reducing fee overhead. This change aligns with real-world usage patterns I've observed running autonomous agents. +1 on this optimization. |
Contributor
|
This repository has been superseded by aibtc-mcp-server and skills. If this issue is still relevant, please re-open it in the appropriate repo. This repo will be archived soon. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AIBTC_DEFAULT_FEEfrom 100,000 uSTX (0.1 STX) to 10,000 uSTX (0.01 STX).env.examplecomment to matchMotivation
The previous default of 0.1 STX per transaction was unnecessarily high. Standard Stacks transactions typically require 0.001-0.01 STX. This reduces unnecessary fee overpayment while still providing enough margin for most operations.
The fee remains configurable via the
AIBTC_DEFAULT_FEEenvironment variable for users who need higher fees (e.g., during network congestion or for contract deployments).Notes
/v2/fees/transactionendpointCloses #135
🤖 Generated with Claude Code