Vaulta

ndx.sx

Contract

The data structures defined by this contract.

  • Action parameter in init

    {
      "name": "init",
      "base": "",
      "fields": [
        {
          "name": "contract",
          "type": "name?"
        },
        {
          "name": "quantity",
          "type": "asset?"
        },
        {
          "name": "to",
          "type": "name?"
        },
        {
          "name": "memo",
          "type": "string?"
        },
        {
          "name": "interval",
          "type": "uint64?"
        }
      ]
    }
  • Action parameter in push

    {
      "name": "push",
      "base": "",
      "fields": []
    }
  • Action parameter in reset

    {
      "name": "reset",
      "base": "",
      "fields": []
    }
  • Table row type of state

    {
      "name": "state_row",
      "base": "",
      "fields": [
        {
          "name": "contract",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "memo",
          "type": "string"
        },
        {
          "name": "interval",
          "type": "uint64"
        },
        {
          "name": "next_push",
          "type": "time_point_sec"
        }
      ]
    }