Vaulta

ppquickdicer

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": "currency_stat",
      "base": "",
      "fields": [
        {
          "name": "supply",
          "type": "asset"
        },
        {
          "name": "max_supply",
          "type": "asset"
        },
        {
          "name": "issuer",
          "type": "name"
        }
      ]
    }
  • Table row type of details

    {
      "name": "detail",
      "base": "",
      "fields": [
        {
          "name": "sym",
          "type": "symbol_name"
        },
        {
          "name": "age",
          "type": "uint64"
        }
      ]
    }
  • Table row type of gamevars

    {
      "name": "gamevars",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "val",
          "type": "uint64"
        }
      ]
    }
  • Table row type of depositsets

    Table row type of withdrawsets

    {
      "name": "assetrecords",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "actor",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "time",
          "type": "time_point_sec"
        }
      ]
    }
  • Table row type of actors

    {
      "name": "actors",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "symbol_name",
          "type": "symbol_name"
        },
        {
          "name": "total_deposit",
          "type": "uint64"
        },
        {
          "name": "total_withdraw",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in initialize

    {
      "name": "initialize",
      "base": "",
      "fields": []
    }
  • Action parameter in withdraw

    {
      "name": "withdraw",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        }
      ]
    }
  • Action parameter in deposited

    {
      "name": "deposited",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "from",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "time",
          "type": "time_point_sec"
        }
      ]
    }
  • Action parameter in setglobal

    {
      "name": "setglobal",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "value",
          "type": "uint64"
        }
      ]
    }