Fair Burn is a specification for processing fees in Stargaze, influenced by EIP-1559.
With Fair Burn, a portion of fees are burned, and the remaining portion is distributed to stakers. Currently, 50% is burned, and 50% go to the Community Pool.
rs
const FEE_BURN_PERCENT: u64 = 50;
Contracts can use Fair Burn via one of the following functions:
```rs
/// Burn and distribute fees and return an error if the fee is not enough
checkedfairburn(info: &MessageInfo, fee_amount: u128) -> Result
/// Burn and distribute fees, assuming the right fee is passed in
fairburn(feeamount: u128) -> Vec