Vaulta

openbrmeos11

Contract

The data structures defined by this contract.

  • Table row type of accounts

    {
      "name": "account",
      "base": "",
      "fields": [
        {
          "name": "balance",
          "type": "asset"
        }
      ]
    }
  • Action parameter in close

    {
      "name": "close",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        },
        {
          "name": "symbol",
          "type": "symbol"
        }
      ]
    }
  • Table row type of configs

    {
      "name": "config",
      "base": "",
      "fields": [
        {
          "name": "config_id",
          "type": "uint64"
        },
        {
          "name": "running",
          "type": "uint8"
        },
        {
          "name": "overflow",
          "type": "name"
        },
        {
          "name": "active_accounts",
          "type": "uint32"
        },
        {
          "name": "staked_weekly",
          "type": "asset"
        },
        {
          "name": "staked_monthly",
          "type": "asset"
        },
        {
          "name": "staked_quarterly",
          "type": "asset"
        },
        {
          "name": "total_staked",
          "type": "asset"
        },
        {
          "name": "total_escrowed_monthly",
          "type": "asset"
        },
        {
          "name": "total_escrowed_quarterly",
          "type": "asset"
        },
        {
          "name": "total_shares",
          "type": "uint64"
        },
        {
          "name": "base_payout",
          "type": "asset"
        },
        {
          "name": "bonus",
          "type": "asset"
        },
        {
          "name": "total_payout",
          "type": "asset"
        },
        {
          "name": "interest_share",
          "type": "asset"
        },
        {
          "name": "unclaimed_tokens",
          "type": "asset"
        },
        {
          "name": "spare_a1",
          "type": "asset"
        },
        {
          "name": "spare_a2",
          "type": "asset"
        },
        {
          "name": "spare_i1",
          "type": "uint64"
        },
        {
          "name": "spare_i2",
          "type": "uint64"
        }
      ]
    }
  • 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"
        }
      ]
    }
  • Table row type of cinvoices

    {
      "name": "customer_invoice",
      "base": "",
      "fields": [
        {
          "name": "invoice_id_key",
          "type": "uint64"
        },
        {
          "name": "created_date",
          "type": "uint32"
        },
        {
          "name": "sender",
          "type": "name"
        }
      ]
    }
  • Action parameter in issue

    {
      "name": "issue",
      "base": "",
      "fields": [
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "asset"
        },
        {
          "name": "memo",
          "type": "string"
        }
      ]
    }
  • Table row type of lockedbals

    {
      "name": "lock_balance",
      "base": "",
      "fields": [
        {
          "name": "stake_account",
          "type": "name"
        },
        {
          "name": "locked_balance",
          "type": "asset"
        },
        {
          "name": "refund_due",
          "type": "uint32"
        }
      ]
    }
  • Action parameter in open

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

    {
      "name": "payinvoice",
      "base": "",
      "fields": [
        {
          "name": "payer",
          "type": "name"
        },
        {
          "name": "invoice_id",
          "type": "uint64"
        },
        {
          "name": "invoice_total",
          "type": "asset"
        }
      ]
    }
  • Action parameter in refund

    {
      "name": "refund",
      "base": "",
      "fields": [
        {
          "name": "owner",
          "type": "name"
        }
      ]
    }
  • Action parameter in rejctinvoice

    {
      "name": "rejctinvoice",
      "base": "",
      "fields": [
        {
          "name": "payer",
          "type": "name"
        },
        {
          "name": "invoice_id",
          "type": "uint64"
        },
        {
          "name": "reason",
          "type": "string"
        }
      ]
    }
  • Action parameter in retire

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

    {
      "name": "sendinvoice",
      "base": "",
      "fields": [
        {
          "name": "from",
          "type": "name"
        },
        {
          "name": "to",
          "type": "name"
        },
        {
          "name": "invoice_total",
          "type": "asset"
        },
        {
          "name": "payment_due",
          "type": "uint32"
        },
        {
          "name": "descr",
          "type": "string"
        }
      ]
    }
  • Action parameter in stake

    {
      "name": "stake",
      "base": "",
      "fields": [
        {
          "name": "_stake_account",
          "type": "name"
        },
        {
          "name": "_staked",
          "type": "asset"
        }
      ]
    }
  • Table row type of stakes

    {
      "name": "stake_row",
      "base": "",
      "fields": [
        {
          "name": "stake_account",
          "type": "name"
        },
        {
          "name": "stake_period",
          "type": "uint8"
        },
        {
          "name": "staked",
          "type": "asset"
        },
        {
          "name": "stake_date",
          "type": "uint32"
        },
        {
          "name": "stake_due",
          "type": "uint32"
        },
        {
          "name": "escrow",
          "type": "asset"
        }
      ]
    }
  • Action parameter in transfer

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

    {
      "name": "unstake",
      "base": "",
      "fields": [
        {
          "name": "_stake_account",
          "type": "name"
        },
        {
          "name": "_unstaked",
          "type": "asset"
        }
      ]
    }
  • Table row type of uinvoices

    {
      "name": "utility_invoice",
      "base": "",
      "fields": [
        {
          "name": "invoice_id_key",
          "type": "uint64"
        },
        {
          "name": "invoice_status",
          "type": "uint8"
        },
        {
          "name": "from_account",
          "type": "name"
        },
        {
          "name": "to_account",
          "type": "name"
        },
        {
          "name": "invoice_total",
          "type": "asset"
        },
        {
          "name": "paid_total",
          "type": "asset"
        },
        {
          "name": "payment_due",
          "type": "uint32"
        },
        {
          "name": "payment_date",
          "type": "uint32"
        },
        {
          "name": "payment_id",
          "type": "string"
        },
        {
          "name": "invoice_descr",
          "type": "string"
        }
      ]
    }