Output represents the result or consequence of a blockchain transaction.

interface Output {
    contractAddress: string;
    events: Event[];
    transfers: Transfer[];
}

Properties

contractAddress: string

address of the contract involved in the clause output.

events: Event[]

Events emitted by executing the clause.

transfers: Transfer[]

Transfers of VET or VIP180 tokens that occur from the clause.