Quick Reference
| Parameter | Value |
|---|---|
| Gas token | WKRC (KRW-pegged) |
| Fee model | EIP-1559 (modified) |
| Base fee range | 20,000 gwei – 20,000,000 gwei |
| Governance tip (default) | 27,600 gwei |
| Base fee destination | Validators (not burned) |
| Max block gas limit | 105,000,000 (~5,000 transfers/block) |
| Mainnet Chain ID | 8282 |
| Testnet Chain ID | 8283 |
Gas Mechanics
Base fee
The base fee adjusts ±2% per block based on the parent block’s gas utilization:| Utilization | Adjustment |
|---|---|
| > 20% | +2% per block |
| 6% – 20% | unchanged |
| < 6% | −2% per block |
Priority fee
The priority fee (gas tip) is not a user-competitive value — it is enforced by theGovValidator system contract. For regular accounts:
- Your
maxPriorityFeePerGasis overridden by the governance-enforced tip. - Transactions below the minimum tip are rejected.
- You cannot pay extra to jump the queue.
Effective gas price
0x16), the effective gas price is charged to the fee payer’s account.
Fee Policy
Base fee adjustment constants
| Constant | Value | Description |
|---|---|---|
IncreasingThreshold | 20 | Utilization % above which base fee increases |
DecreasingThreshold | 6 | Utilization % below which base fee decreases |
BaseFeeChangeRate | 2 | Adjustment magnitude per block (%) |
MinBaseFee | 20,000 gwei | Floor |
MaxBaseFee | 20,000,000 gwei | Ceiling |
Comparison with standard Ethereum
| Aspect | Ethereum | StableNet |
|---|---|---|
| Base fee destination | Burned | Paid to validators |
| Adjustment model | ±12.5% at 50% utilization | ±2% at 6%/20% thresholds |
| Priority fee | User-competitive | Governance-enforced |
| Fee volatility | High | Low |
| Fee currency | ETH (volatile) | WKRC (KRW-pegged) |
| Block gas limit | ~60M | 105M |
| Fee delegation | Not supported | Supported (0x16) |
Fee Query APIs
These standard JSON-RPC methods return StableNet-specific values:| Method | Returns |
|---|---|
eth_maxPriorityFeePerGas | Governance-enforced gas tip (e.g. 27,600 gwei) |
eth_gasPrice | Recommended price: baseFee + governanceTip |
eth_feeHistory | Historical base fees and utilization |
Replace
RPC_URL with the endpoint from Network Information.Fee Delegation
StableNet supports gasless UX flows through fee delegation (FeeDelegateDynamicFeeTxType, type 0x16). The fee payer signs alongside the sender, and all gas costs are charged to the fee payer’s balance.
See Fee Delegation for usage and signing details.
Monitoring
- Block Explorer — view live base fee per block
- Network Info — RPC endpoints and chain IDs
- WKRC: KRW-Pegged Gas Token — token mechanics and ERC-20 interface

