Vaulta

pixeos1paint

Contract

The data structures defined by this contract.

  • Action parameter in clearstate

    {
      "name": "clearstate",
      "base": "",
      "fields": [
        {
          "name": "limit",
          "type": "uint64"
        }
      ]
    }
  • Table row type of deposit

    {
      "name": "deposit",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "balance",
          "type": "asset"
        }
      ]
    }
  • Table row type of gamestate

    {
      "name": "gamestate",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "total_pixeos_spent",
          "type": "asset"
        },
        {
          "name": "balance_daily",
          "type": "asset"
        },
        {
          "name": "processing_daily",
          "type": "asset"
        },
        {
          "name": "pixels_drawn",
          "type": "uint32"
        },
        {
          "name": "block_daily",
          "type": "uint32"
        }
      ]
    }
  • Table row type of pixel

    {
      "name": "pixel",
      "base": "",
      "fields": [
        {
          "name": "x",
          "type": "uint16"
        },
        {
          "name": "y",
          "type": "uint16"
        },
        {
          "name": "t",
          "type": "uint16"
        },
        {
          "name": "o",
          "type": "name"
        },
        {
          "name": "c",
          "type": "uint32"
        }
      ]
    }
  • Table row type of userstate

    {
      "name": "userstate",
      "base": "",
      "fields": [
        {
          "name": "user",
          "type": "name"
        },
        {
          "name": "referrer",
          "type": "name"
        },
        {
          "name": "balance",
          "type": "uint64"
        }
      ]
    }