DAO
Abstract
The Money contract implements network fees, token transfers, atomic swaps, and token minting.
The functions provided by this smart contract are:
pub enum MoneyFunction {
FeeV1 = 0x00,
GenesisMintV1 = 0x01,
PoWRewardV1 = 0x02,
TransferV1 = 0x03,
OtcSwapV1 = 0x04,
AuthTokenMintV1 = 0x05,
AuthTokenFreezeV1 = 0x06,
TokenMintV1 = 0x07,
}