Vaulta

eosvrcomment

Contract

The data structures defined by this contract.

  • Table row type of commentss

    {
      "name": "comments",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "deposit",
          "type": "int64"
        },
        {
          "name": "memo",
          "type": "string"
        },
        {
          "name": "weight",
          "type": "int64"
        },
        {
          "name": "lastupdate",
          "type": "int64"
        }
      ]
    }
  • Table row type of gcommentss

    {
      "name": "gcomments",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "account_name"
        },
        {
          "name": "total",
          "type": "int64"
        },
        {
          "name": "totaldown",
          "type": "int64"
        },
        {
          "name": "lastupdate",
          "type": "int64"
        }
      ]
    }
  • Action parameter in comment

    {
      "name": "comment",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in withdraw

    Action parameter in clear

    {
      "name": "withdraw",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        }
      ]
    }
  • Action parameter in dismiss

    {
      "name": "dismiss",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "account_name"
        }
      ]
    }
  • Table row type of timelockss

    {
      "name": "timelocks",
      "base": "",
      "fields": [
        {
          "name": "timeout",
          "type": "int64"
        },
        {
          "name": "quantity",
          "type": "int64"
        },
        {
          "name": "from",
          "type": "int64"
        }
      ]
    }