UNPKG

scrypt-ts

Version:

A toolset for building sCrypt smart contract applications on Bitcoin SV network written in typescript.

8 lines (7 loc) 243 B
import { SmartContract } from './contract'; interface Outpoint { txId: string; outputIndex: number; } export declare function replayToLatest<T extends SmartContract>(instance: T, outpoint: Outpoint): Promise<T | undefined>; export {};