Interface
Outputs represent the destination Address and amount transferred of a given Asset.
The sum of the unspent Outputs of an Address represent the total balance of the Address. export interface Output {
readonly asset: Hash256String;
readonly value: BigNumber;
readonly address: AddressString;
}