Interface RequireTimeAfterScript

This script evaluates to true if the lower bound of the transaction validity interval is a slot number Y, and Y <= X.

This condition guarantees that the actual slot number in which the transaction is included is greater than or equal to slot number X.

interface RequireTimeAfterScript {
    kind: RequireTimeAfter;
    slot: number;
    type: Native;
}

Properties

Properties

The native script kind.

slot: number

The slot number specifying the lower bound of the validity interval.

type: Native

Script type.