Interface RequireTimeBeforeScript

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

This condition guarantees that the actual slot number in which the transaction is included is (strictly) less than slot number X.

interface RequireTimeBeforeScript {
    kind: RequireTimeBefore;
    slot: number;
    type: Native;
}

Properties

Properties

The native script kind.

slot: number

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

type: Native

Script type.