AUTO-BURN MECHANISM
Utility token with automatic deflationary mechanism. Creator fee → Buy → Burn. Configurable percentage.
How It Works
Creator Fee
Automatic fee collection on every transaction
Auto Buy
Fee automatically buys $RUN tokens from market
Auto Burn
Purchased tokens are permanently burned
Configurable
Set your desired fee percentage in the smart contract code. Fully customizable.
Automatic
No manual intervention needed. The mechanism runs automatically on every transaction.
Deflationary
Continuous token burn reduces supply over time, creating deflationary pressure.
💻 Smart Contract
The fee percentage is configurable in the smart contract code. Set it to your desired value (e.g., 1%, 3%, 5%). The mechanism is fully automated and transparent on-chain.
🔥 Burn Mechanism
Every transaction triggers the auto-burn cycle: fee collection → token purchase → permanent burn. This creates continuous deflationary pressure and reduces total supply over time.
Contract Configuration
// Configurable fee percentage
uint256 public creatorFeePercent = 5; // Set your desired percentage
function _transfer(...) {
// Calculate fee
uint256 fee = amount * creatorFeePercent / 100;
// Auto buy $RUN tokens
// Auto burn purchased tokens
}