Vaulta

crmaniadivid

Contract

The data structures defined by this contract.

  • Table row type of balances

    {
      "name": "balances",
      "base": "",
      "fields": [
        {
          "name": "user",
          "type": "name"
        },
        {
          "name": "balance",
          "type": "asset"
        },
        {
          "name": "fractions",
          "type": "uint64"
        }
      ]
    }
  • Table row type of dividends

    {
      "name": "dividends",
      "base": "",
      "fields": [
        {
          "name": "day",
          "type": "uint64"
        },
        {
          "name": "balance",
          "type": "asset"
        },
        {
          "name": "lastpaid",
          "type": "name"
        }
      ]
    }
  • Table row type of last

    {
      "name": "last",
      "base": "",
      "fields": [
        {
          "name": "day",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in claim

    {
      "name": "claim",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "name"
        }
      ]
    }
  • Action parameter in distribute

    {
      "name": "distribute",
      "base": "",
      "fields": [
        {
          "name": "cache",
          "type": "uint64"
        }
      ]
    }