Vaulta

dafiteionfts

Contract

The data structures defined by this contract.

  • Action parameter in buylog

    {
      "name": "buylog",
      "base": "",
      "fields": [
        {
          "name": "buyer",
          "type": "name"
        },
        {
          "name": "seller",
          "type": "name"
        },
        {
          "name": "order_id",
          "type": "uint64"
        },
        {
          "name": "card_id",
          "type": "uint64"
        },
        {
          "name": "level",
          "type": "uint64"
        },
        {
          "name": "price",
          "type": "asset"
        }
      ]
    }
  • Action parameter in cancelsell

    {
      "name": "cancelsell",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "order_id",
          "type": "uint64"
        }
      ]
    }
  • Table row type of cards

    {
      "name": "card",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "level",
          "type": "uint64"
        },
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "cost_gra",
          "type": "asset"
        },
        {
          "name": "cost_daf",
          "type": "asset"
        },
        {
          "name": "cost_pto",
          "type": "asset"
        },
        {
          "name": "cost_candy",
          "type": "asset"
        },
        {
          "name": "income_hold",
          "type": "asset"
        },
        {
          "name": "income_mining",
          "type": "asset"
        },
        {
          "name": "status",
          "type": "uint8"
        },
        {
          "name": "type",
          "type": "uint8"
        },
        {
          "name": "power_hold",
          "type": "uint64"
        },
        {
          "name": "power_mining",
          "type": "uint64"
        },
        {
          "name": "create_time",
          "type": "time_point_sec"
        }
      ]
    }
  • Table row type of cardmining

    {
      "name": "card_mining",
      "base": "",
      "fields": [
        {
          "name": "card_id",
          "type": "uint64"
        },
        {
          "name": "create_time",
          "type": "time_point_sec"
        }
      ]
    }
  • Action parameter in claim

    {
      "name": "claim",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        }
      ]
    }
  • Action parameter in claimlog

    {
      "name": "claimlog",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "income_hold",
          "type": "asset"
        },
        {
          "name": "income_mining",
          "type": "asset"
        }
      ]
    }
  • Action parameter in compose

    {
      "name": "compose",
      "base": "",
      "fields": [
        {
          "name": "user",
          "type": "name"
        }
      ]
    }
  • Action parameter in composelog

    {
      "name": "composelog",
      "base": "",
      "fields": [
        {
          "name": "user",
          "type": "name"
        },
        {
          "name": "level",
          "type": "uint64"
        },
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "cost_gra",
          "type": "asset"
        },
        {
          "name": "cost_daf",
          "type": "asset"
        },
        {
          "name": "cost_pto",
          "type": "asset"
        },
        {
          "name": "cost_candy",
          "type": "asset"
        }
      ]
    }
  • Table row type of equitypool

    {
      "name": "equitypool",
      "base": "",
      "fields": [
        {
          "name": "total_reward",
          "type": "asset"
        },
        {
          "name": "released_reward",
          "type": "asset"
        },
        {
          "name": "status",
          "type": "uint8"
        },
        {
          "name": "epoch_time",
          "type": "uint64"
        },
        {
          "name": "duration",
          "type": "uint64"
        },
        {
          "name": "last_harvest_time",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in exitpool

    {
      "name": "exitpool",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "pool_id",
          "type": "uint64"
        },
        {
          "name": "card_id",
          "type": "uint64"
        }
      ]
    }
  • Table row type of global

    {
      "name": "global",
      "base": "",
      "fields": [
        {
          "name": "dao",
          "type": "name"
        },
        {
          "name": "swap",
          "type": "name"
        },
        {
          "name": "token_pto",
          "type": "name"
        },
        {
          "name": "token_gra",
          "type": "name"
        },
        {
          "name": "token_daf",
          "type": "name"
        },
        {
          "name": "token_candy",
          "type": "name"
        },
        {
          "name": "init_gra",
          "type": "asset"
        },
        {
          "name": "min_market_amount",
          "type": "asset"
        },
        {
          "name": "mid_eos_pto",
          "type": "uint64"
        },
        {
          "name": "mid_eos_gra",
          "type": "uint64"
        },
        {
          "name": "mid_eos_daf",
          "type": "uint64"
        },
        {
          "name": "mid_eos_candy",
          "type": "uint64"
        },
        {
          "name": "status",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in init

    {
      "name": "init",
      "base": "",
      "fields": [
        {
          "name": "dao",
          "type": "name"
        },
        {
          "name": "swap",
          "type": "name"
        },
        {
          "name": "token_gra",
          "type": "name"
        },
        {
          "name": "token_daf",
          "type": "name"
        },
        {
          "name": "token_pto",
          "type": "name"
        },
        {
          "name": "token_candy",
          "type": "name"
        },
        {
          "name": "init_gra",
          "type": "asset"
        },
        {
          "name": "min_market_amount",
          "type": "asset"
        },
        {
          "name": "mid_eos_pto",
          "type": "uint64"
        },
        {
          "name": "mid_eos_gra",
          "type": "uint64"
        },
        {
          "name": "mid_eos_daf",
          "type": "uint64"
        },
        {
          "name": "mid_eos_candy",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in initequpool

    {
      "name": "initequpool",
      "base": "",
      "fields": [
        {
          "name": "reward",
          "type": "asset"
        },
        {
          "name": "status",
          "type": "uint8"
        },
        {
          "name": "epoch_time",
          "type": "uint64"
        },
        {
          "name": "duration",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in initnftpool

    {
      "name": "initnftpool",
      "base": "",
      "fields": [
        {
          "name": "title",
          "type": "string"
        },
        {
          "name": "reward",
          "type": "asset"
        },
        {
          "name": "epoch_time",
          "type": "uint64"
        },
        {
          "name": "duration",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in joinpool

    {
      "name": "joinpool",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "pool_id",
          "type": "uint64"
        },
        {
          "name": "card_id",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in mineequity

    {
      "name": "mineequity",
      "base": "",
      "fields": [
        {
          "name": "nonce",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in minenft

    {
      "name": "minenft",
      "base": "",
      "fields": [
        {
          "name": "nonce",
          "type": "uint64"
        },
        {
          "name": "pool_id",
          "type": "uint64"
        }
      ]
    }
  • Table row type of miners

    {
      "name": "miner",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "claimed_hold",
          "type": "asset"
        },
        {
          "name": "claimed_mining",
          "type": "asset"
        },
        {
          "name": "unclaimed_hold",
          "type": "asset"
        },
        {
          "name": "unclaimed_mining",
          "type": "asset"
        }
      ]
    }
  • Table row type of nftpools

    {
      "name": "nftpool",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "name",
          "type": "string"
        },
        {
          "name": "total_reward",
          "type": "asset"
        },
        {
          "name": "released_reward",
          "type": "asset"
        },
        {
          "name": "status",
          "type": "uint8"
        },
        {
          "name": "epoch_time",
          "type": "uint64"
        },
        {
          "name": "duration",
          "type": "uint64"
        },
        {
          "name": "last_harvest_time",
          "type": "uint64"
        }
      ]
    }
  • Table row type of ordercompose

    {
      "name": "order_compose",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "amt0",
          "type": "asset"
        },
        {
          "name": "amt1",
          "type": "asset"
        }
      ]
    }
  • Table row type of ordertrade

    {
      "name": "order_trade",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "card_id",
          "type": "uint64"
        },
        {
          "name": "price",
          "type": "asset"
        },
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "status",
          "type": "uint64"
        },
        {
          "name": "create_time",
          "type": "time_point_sec"
        },
        {
          "name": "deal_time",
          "type": "time_point_sec"
        }
      ]
    }
  • Action parameter in rmcompose

    {
      "name": "rmcompose",
      "base": "",
      "fields": [
        {
          "name": "user",
          "type": "name"
        }
      ]
    }
  • Action parameter in sell

    {
      "name": "sell",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "card_id",
          "type": "uint64"
        },
        {
          "name": "price",
          "type": "asset"
        }
      ]
    }
  • Action parameter in setstatus

    {
      "name": "setstatus",
      "base": "",
      "fields": [
        {
          "name": "status",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in split

    {
      "name": "split",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "card_id",
          "type": "uint64"
        },
        {
          "name": "amount",
          "type": "uint64"
        }
      ]
    }