locktimePool: {
    CellCollector: CellCollectorConstructor;
    injectCapacity: ((txSkeleton, outputIndex, fromInfos, tipHeader, __namedParameters?) => Promise<TransactionSkeletonType>);
    injectCapacityWithoutChange: ((txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters) => Promise<{
        capacity: bigint;
        changeCapacity: bigint;
        txSkeleton: TransactionSkeletonType;
    }>);
    injectCapacityWithoutChangeCompatible: ((txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters) => Promise<{
        capacity: BI;
        changeCapacity: BI;
        txSkeleton: TransactionSkeletonType;
    }>);
    payFee: ((txSkeleton, fromInfos, amount, tipHeader, __namedParameters?) => Promise<TransactionSkeletonType>);
    prepareSigningEntries: ((txSkeleton, __namedParameters?) => TransactionSkeletonType);
    setupInputCell: ((txSkeleton, inputCell, fromInfo?, __namedParameters?) => Promise<TransactionSkeletonType>);
    transfer: {
        (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>;
        (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, bigint]>;
    };
    transferCompatible: {
        (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>;
        (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, BI]>;
    };
}

Type declaration

Generated using TypeDoc