Voucher
Representation of a transaction that can be carried out on the base layer blockchain, such as a transfer of assets.
type Voucher {
index: Int!
input: Input!
destination: String!
payload: String!
proof: Proof
}
Fields
Name | Type | Description |
---|---|---|
index | Int! | Unique identifier for the voucher. |
input | Input! | The input associated with this voucher. |
destination | String! | The address or identifier of the voucher's destination. |
payload | String! | The actual data/content of the voucher. |
proof | Proof | Proof object that allows this voucher to be validated and executed on the base layer blockchain(if available). |