RelativeTimelock: { type: "seconds" | "blocks"; value: bigint }

RelativeTimelock lets to create timelocked with CHECKSEQUENCEVERIFY script.

Type declaration

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