pub struct SignedVoucher {
    pub channel_addr: Address,
    pub time_lock_min: ChainEpoch,
    pub time_lock_max: ChainEpoch,
    pub secret_pre_image: Vec<u8>,
    pub extra: Option<ModVerifyParams>,
    pub lane: usize,
    pub nonce: u64,
    pub amount: BigInt,
    pub min_settle_height: ChainEpoch,
    pub merges: Vec<Merge>,
    pub signature: Option<Signature>,
}
Expand description

A voucher is sent by from to to off-chain in order to enable to to redeem payments on-chain in the future

Fields

channel_addr: Address

ChannelAddr is the address of the payment channel this signed voucher is valid for

time_lock_min: ChainEpoch

Min epoch before which the voucher cannot be redeemed

time_lock_max: ChainEpoch

Max epoch beyond which the voucher cannot be redeemed set to 0 means no timeout

secret_pre_image: Vec<u8>

(optional) Used by to to validate

extra: Option<ModVerifyParams>

(optional) Specified by from to add a verification method to the voucher

lane: usize

Specifies which lane the Voucher merges into (will be created if does not exist)

nonce: u64

Set by from to prevent redemption of stale vouchers on a lane

amount: BigInt

Amount voucher can be redeemed for

min_settle_height: ChainEpoch

(optional) Can extend channel min_settle_height if needed

merges: Vec<Merge>

(optional) Set of lanes to be merged into lane

signature: Option<Signature>

Sender’s signature over the voucher (sign on none)

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.