Vaulta

ogmadonate11

Contract

The data structures defined by this contract.

  • Struct base type of destination

    {
      "name": "_destination",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint8"
        },
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "rate",
          "type": "uint32"
        }
      ]
    }
  • Struct base type of statistics

    {
      "name": "_statistics",
      "base": "",
      "fields": [
        {
          "name": "received",
          "type": "uint64"
        },
        {
          "name": "remained",
          "type": "uint64"
        },
        {
          "name": "issued",
          "type": "uint64[]"
        },
        {
          "name": "active_num",
          "type": "uint64"
        },
        {
          "name": "update_time",
          "type": "time_point"
        }
      ]
    }
  • Action parameter in add

    {
      "name": "add",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "rate",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in del

    {
      "name": "del",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        }
      ]
    }
  • Extends base type of _destination

    Table row type of destination

    {
      "name": "destination",
      "base": "_destination",
      "fields": []
    }
  • Action parameter in issue

    {
      "name": "issue",
      "base": "",
      "fields": []
    }
  • Action parameter in modify

    {
      "name": "modify",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "rate",
          "type": "uint64"
        }
      ]
    }
  • Extends base type of _statistics

    Table row type of statistics

    {
      "name": "statistics",
      "base": "_statistics",
      "fields": []
    }