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,
    TransferV1 = 0x02,
    OtcSwapV1 = 0x03,
    TokenMintV1 = 0x04,
    TokenFreezeV1 = 0x05,
    PoWRewardV1 = 0x06,
    AuthTokenMintV1 = 0x07,
}