Voucher
Representation of a transaction that can be carried out on the base layer blockchain, such as a transfer of assets
type Voucher {
id: ID!
index: Int!
input: Input!
proof: Proof
destination: String!
payload: String!
}
Fields
id (ID!)
Voucher identifier
index (Int!)
Voucher index within the context of the input that produced it
input (Input!)
Input whose processing produced the notice
proof (Proof)
Proof object that allows this voucher to be validated and executed in the base layer blockchain
destination (String!)
Transaction destination address in Ethereum hex binary format (20 bytes), starting with '0x'
payload (String!)
Transaction payload in Ethereum hex binary format, starting with '0x'