Vaulta

eosbtextoken

Contract

The data structures defined by this contract.

  • Table row type of accounts

    {
      "name": "account",
      "base": "",
      "fields": [
        {
          "name": "balance",
          "type": "asset"
        }
      ]
    }
  • Table row type of stat

    {
      "name": "c_stats",
      "base": "",
      "fields": [
        {
          "name": "supply",
          "type": "asset"
        },
        {
          "name": "max_supply",
          "type": "asset"
        },
        {
          "name": "issuer",
          "type": "account_name"
        }
      ]
    }
  • Table row type of minerals

    {
      "name": "mineral",
      "base": "",
      "fields": [
        {
          "name": "quantity",
          "type": "asset"
        }
      ]
    }
  • Table row type of btexrights

    {
      "name": "ex_rights",
      "base": "",
      "fields": [
        {
          "name": "rights",
          "type": "asset"
        },
        {
          "name": "multiple_rate",
          "type": "float64"
        },
        {
          "name": "multiple_amount",
          "type": "asset"
        }
      ]
    }
  • Table row type of topexrights

    {
      "name": "top_rights",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "owner",
          "type": "account_name"
        },
        {
          "name": "buy_amount",
          "type": "asset"
        },
        {
          "name": "multiple_rate",
          "type": "float64"
        },
        {
          "name": "multiple_amount",
          "type": "asset"
        },
        {
          "name": "buy_time",
          "type": "uint64"
        }
      ]
    }
  • Table row type of referrers

    {
      "name": "referrer",
      "base": "",
      "fields": [
        {
          "name": "referrer",
          "type": "account_name"
        }
      ]
    }
  • Table row type of rewards

    {
      "name": "reward",
      "base": "",
      "fields": [
        {
          "name": "reward",
          "type": "asset"
        }
      ]
    }
  • Table row type of latesttrends

    {
      "name": "latest_trend",
      "base": "",
      "fields": [
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "time",
          "type": "uint64"
        },
        {
          "name": "other_side",
          "type": "account_name"
        }
      ]
    }
  • Table row type of latestbuys

    {
      "name": "latest_buy",
      "base": "",
      "fields": [
        {
          "name": "buyer",
          "type": "account_name"
        },
        {
          "name": "buy_time",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in create

    {
      "name": "create",
      "base": "",
      "fields": [
        {
          "name": "issuer",
          "type": "account_name"
        },
        {
          "name": "maximum_supply",
          "type": "asset"
        }
      ]
    }
  • Action parameter in issue

    {
      "name": "issue",
      "base": "",
      "fields": [
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in transfer

    {
      "name": "transfer",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in exchangemine

    {
      "name": "exchangemine",
      "base": "",
      "fields": [
        {
          "name": "contract",
          "type": "account_name"
        },
        {
          "name": "owner",
          "type": "account_name"
        },
        {
          "name": "owner_qty",
          "type": "asset"
        },
        {
          "name": "maker",
          "type": "account_name"
        },
        {
          "name": "maker_qty",
          "type": "asset"
        },
        {
          "name": "seller",
          "type": "account_name"
        },
        {
          "name": "seller_qty",
          "type": "asset"
        }
      ]
    }
  • Action parameter in takeminerals

    {
      "name": "takeminerals",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "account_name"
        }
      ]
    }