Vaulta

eoslocktoken

Contract

The data structures defined by this contract.

  • Action parameter in transfer

    {
      "name": "transfer",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Action parameter in create

    {
      "name": "create",
      "base": "",
      "fields": [
        {
          "name": "issuer",
          "type": "account_name"
        },
        {
          "name": "maximum_supply",
          "type": "asset"
        }
      ]
    }
  • Action parameter in issue

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

    {
      "name": "confirm",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "key",
          "type": "string"
        },
        {
          "name": "executer",
          "type": "account_name"
        }
      ]
    }
  • Table row type of accounts

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

    {
      "name": "currency_stats",
      "base": "",
      "fields": [
        {
          "name": "supply",
          "type": "asset"
        },
        {
          "name": "max_supply",
          "type": "asset"
        },
        {
          "name": "issuer",
          "type": "account_name"
        }
      ]
    }
  • Table row type of lockss

    Table row type of depositss

    {
      "name": "lockaccounts",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "quantity",
          "type": "int64"
        },
        {
          "name": "memo",
          "type": "string"
        },
        {
          "name": "reverse",
          "type": "int64"
        },
        {
          "name": "lastupdate",
          "type": "int64"
        }
      ]
    }
  • Table row type of timelockss

    {
      "name": "timelocks",
      "base": "",
      "fields": [
        {
          "name": "timeout",
          "type": "int64"
        },
        {
          "name": "quantity",
          "type": "int64"
        },
        {
          "name": "from",
          "type": "int64"
        }
      ]
    }
  • Table row type of hashlockss

    {
      "name": "hashlocks",
      "base": "",
      "fields": [
        {
          "name": "mix",
          "type": "int64"
        },
        {
          "name": "from",
          "type": "account_name"
        },
        {
          "name": "to",
          "type": "account_name"
        },
        {
          "name": "quantity",
          "type": "int64"
        },
        {
          "name": "hash",
          "type": "checksum256"
        },
        {
          "name": "timeout",
          "type": "int64"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Table row type of hashss

    {
      "name": "hashlist",
      "base": "",
      "fields": [
        {
          "name": "timeout",
          "type": "int64"
        },
        {
          "name": "hash",
          "type": "checksum256"
        },
        {
          "name": "key",
          "type": "string"
        }
      ]
    }
  • Action parameter in news

    {
      "name": "news",
      "base": "",
      "fields": [
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "msg",
          "type": "string"
        }
      ]
    }