Configuration
Overview
Fees
public enum Fee has copy, drop, store {
Value(u64, Distributor),
Percentage(BPS, Distributor),
}
public struct FeePayload has copy, drop, store {
value: u64,
percentages: vector<u64>,
recipients: vector<address>,
}
public struct Allocation<phantom T> has store {
balance: Balance<T>,
vesting_periods: vector<u64>,
distributor: Distributor,
}
public struct MemezFees has copy, drop, store {
creation: FeePayload,
meme_swap: FeePayload,
quote_swap: FeePayload,
migration: FeePayload,
allocation: FeePayload,
vesting_periods: vector<u64>,
dynamic_stake_holders: u64,
}Pump Configuration
Burn Tax
Move Dependencies
Interest BPS
IPX Coin Standard
Interest Math
Constant Product
Last updated
Was this helpful?