Vaulta

wirebittoken

Contract

The data structures defined by this contract.

  • Table row type of accounts

    {
      "name": "account",
      "base": "",
      "fields": [
        {
          "name": "balance",
          "type": "asset"
        }
      ]
    }
  • Table row type of articles

    {
      "name": "article",
      "base": "",
      "fields": [
        {
          "name": "writer",
          "type": "name"
        },
        {
          "name": "publisher",
          "type": "name"
        },
        {
          "name": "article_hash",
          "type": "uint64"
        },
        {
          "name": "id",
          "type": "asset"
        }
      ]
    }
  • Action parameter in burn

    {
      "name": "burn",
      "base": "",
      "fields": [
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in close

    {
      "name": "close",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in create

    {
      "name": "create",
      "base": "",
      "fields": [
        {
          "name": "issuer",
          "type": "name"
        },
        {
          "name": "maximum_supply",
          "type": "asset"
        }
      ]
    }
  • Table row type of stat

    {
      "name": "currency_stats",
      "base": "",
      "fields": [
        {
          "name": "supply",
          "type": "asset"
        },
        {
          "name": "max_supply",
          "type": "asset"
        },
        {
          "name": "issuer",
          "type": "name"
        }
      ]
    }
  • Action parameter in issue

    {
      "name": "issue",
      "base": "",
      "fields": [
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in open

    {
      "name": "open",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "symbol",
          "type": "asset"
        },
        {
          "name": "ram_payer",
          "type": "name"
        }
      ]
    }
  • Action parameter in publish

    {
      "name": "publish",
      "base": "",
      "fields": [
        {
          "name": "writer",
          "type": "name"
        },
        {
          "name": "article",
          "type": "string"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in publishwith

    {
      "name": "publishwith",
      "base": "",
      "fields": [
        {
          "name": "writer",
          "type": "name"
        },
        {
          "name": "publisher",
          "type": "name"
        },
        {
          "name": "article",
          "type": "string"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Table row type of rates

    {
      "name": "rate",
      "base": "",
      "fields": [
        {
          "name": "read_fee",
          "type": "float64"
        },
        {
          "name": "transfer_fee",
          "type": "float64"
        },
        {
          "name": "tip_fee",
          "type": "float64"
        },
        {
          "name": "plain_writer_rate",
          "type": "float64"
        },
        {
          "name": "publish_writer_rate",
          "type": "float64"
        },
        {
          "name": "publish_publisher_rate",
          "type": "float64"
        },
        {
          "name": "hash_prefix",
          "type": "string"
        },
        {
          "name": "id",
          "type": "asset"
        }
      ]
    }
  • Action parameter in read

    {
      "name": "read",
      "base": "",
      "fields": [
        {
          "name": "reader",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "article",
          "type": "string"
        }
      ]
    }
  • Action parameter in setpubrate

    {
      "name": "setpubrate",
      "base": "",
      "fields": [
        {
          "name": "writer_rate",
          "type": "float64"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in setpubwrate

    {
      "name": "setpubwrate",
      "base": "",
      "fields": [
        {
          "name": "writer_rate",
          "type": "float64"
        },
        {
          "name": "publisher_rate",
          "type": "float64"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in setreadfee

    {
      "name": "setreadfee",
      "base": "",
      "fields": [
        {
          "name": "fee",
          "type": "float64"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in settipfee

    {
      "name": "settipfee",
      "base": "",
      "fields": [
        {
          "name": "fee",
          "type": "float64"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in settransfee

    {
      "name": "settransfee",
      "base": "",
      "fields": [
        {
          "name": "fee",
          "type": "float64"
        },
        {
          "name": "symbol",
          "type": "asset"
        }
      ]
    }
  • Action parameter in tip

    {
      "name": "tip",
      "base": "",
      "fields": [
        {
          "name": "reader",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "article",
          "type": "string"
        }
      ]
    }
  • Action parameter in transfer

    {
      "name": "transfer",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "name"
        },
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }