Vaulta

cutiesvaultx

Contract

The data structures defined by this contract.

  • Action parameter in cleanup

    {
      "name": "cleanup",
      "base": "",
      "fields": [
        {
          "name": "to",
          "type": "uint64"
        }
      ]
    }
  • Table row type of config

    {
      "name": "config",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "minPointer",
          "type": "uint64"
        },
        {
          "name": "maxPointer",
          "type": "uint64"
        },
        {
          "name": "chain",
          "type": "string"
        },
        {
          "name": "signer",
          "type": "public_key"
        }
      ]
    }
  • Table row type of event

    {
      "name": "event",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "time",
          "type": "uint32"
        },
        {
          "name": "type",
          "type": "uint8"
        },
        {
          "name": "log",
          "type": "string"
        },
        {
          "name": "txHash",
          "type": "string"
        }
      ]
    }
  • Action parameter in init

    {
      "name": "init",
      "base": "",
      "fields": [
        {
          "name": "chain",
          "type": "string"
        }
      ]
    }
  • Table row type of nonce

    {
      "name": "nonce",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "nonce",
          "type": "uint64"
        }
      ]
    }
  • Action parameter in setsigkey

    {
      "name": "setsigkey",
      "base": "",
      "fields": [
        {
          "name": "key",
          "type": "public_key"
        }
      ]
    }
  • Action parameter in withdraw

    {
      "name": "withdraw",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "amount",
          "type": "int64"
        },
        {
          "name": "expire",
          "type": "uint32"
        },
        {
          "name": "sign",
          "type": "signature"
        }
      ]
    }
  • Table row type of withdrawal

    {
      "name": "withdrawal",
      "base": "",
      "fields": [
        {
          "name": "nonce",
          "type": "uint64"
        },
        {
          "name": "signature",
          "type": "string"
        }
      ]
    }