import { TokenValueAB } from '../common/token-value-ab.cjs'; import { TxBase } from '../common/tx-base.cjs'; import { TxSignature } from '../common/tx-signature.cjs'; export type TxProvideScript = TxBase & TxSignature & { target: string; targetAfterTimeLock: string; amount: string; balance: string; tokens: TokenValueAB[]; tokenProof: string; tokenHash: string; timeLock: number; args: string[]; scriptProvide: string; scriptAccept: string; };