@arkade-os/sdk Documentation - v0.3.11
    Preparing search index...

    Type Alias RelativeTimelock

    RelativeTimelock lets to create timelocked with CHECKSEQUENCEVERIFY script.

    const timelock = { value: 144n, type: "blocks" }; // 1 day in blocks
    const timelock = { value: 512n, type: "seconds" }; // 8 minutes in seconds
    type RelativeTimelock = {
        type: "seconds" | "blocks";
        value: bigint;
    }
    Index

    Properties

    Properties

    type: "seconds" | "blocks"
    value: bigint