secp256k1Blake160: {
    CellCollector: CellCollectorConstructor;
    injectCapacity: ((txSkeleton, outputIndex, fromAddress, options?) => Promise<TransactionSkeletonType>);
    payFee: ((txSkeleton, fromAddress, amount, options?) => Promise<TransactionSkeletonType>);
    prepareSigningEntries: ((txSkeleton, options?) => TransactionSkeletonType);
    setupInputCell: ((txSkeleton, inputCell, _fromInfo?, options?) => Promise<TransactionSkeletonType>);
    transfer: {
        (txSkeleton, fromAddress, toAddress, amount, options?): Promise<TransactionSkeletonType>;
        (txSkeleton, fromAddress, toAddress, amount, options): Promise<[TransactionSkeletonType, bigint]>;
    };
    transferCompatible: {
        (txSkeleton, fromAddress, toAddress, amount, options?): Promise<TransactionSkeletonType>;
        (txSkeleton, fromAddress, toAddress, amount, options): Promise<[TransactionSkeletonType, BI]>;
    };
}

Type declaration

Generated using TypeDoc