- Preparing search index...
 
- The search index is not available
 
Lumos 
 
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
- 
 
- 
injectCapacity: ((txSkeleton, outputIndex, fromInfos, tipHeader, __namedParameters?) => Promise<TransactionSkeletonType>)
 
- 
injectCapacityWithoutChange: ((txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters) => Promise<{ 
    capacity: bigint; 
    changeCapacity: bigint; 
    txSkeleton: TransactionSkeletonType; 
}>)
- 
- (txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters): Promise<{ 
    capacity: bigint; 
    changeCapacity: bigint; 
    txSkeleton: TransactionSkeletonType; 
}> 
- 
Parameters
- 
 
- 
 
- 
amount: bigint
 
- 
 
- 
minimalChangeCapacity: bigint
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    config?: Config; 
    enableDeductCapacity?: boolean; 
}
- 
 
- 
Optional config?: Config
 
- 
Optional enableDeductCapacity?: boolean
 
 
 
Returns Promise<{ 
    capacity: bigint; 
    changeCapacity: bigint; 
    txSkeleton: TransactionSkeletonType; 
}>
 
 
 
- 
injectCapacityWithoutChangeCompatible: ((txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters) => Promise<{ 
    capacity: BI; 
    changeCapacity: BI; 
    txSkeleton: TransactionSkeletonType; 
}>)
- 
- (txSkeleton, fromInfos, amount, tipHeader, minimalChangeCapacity, __namedParameters): Promise<{ 
    capacity: BI; 
    changeCapacity: BI; 
    txSkeleton: TransactionSkeletonType; 
}> 
- 
Parameters
- 
 
- 
 
- 
 
- 
 
- 
minimalChangeCapacity: BIish
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    config?: Config; 
    enableDeductCapacity?: boolean; 
}
- 
 
- 
Optional config?: Config
 
- 
Optional enableDeductCapacity?: boolean
 
 
 
Returns 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>)
- 
- (txSkeleton, inputCell, fromInfo?, __namedParameters?): Promise<TransactionSkeletonType>
 
- 
Parameters
- 
 
- 
inputCell: Cell
 
- 
Optional fromInfo: FromInfo
 
- 
__namedParameters: Options & { 
    defaultWitness?: string; 
    since?: string; 
} = {}
 
 
 
 
 
- 
transfer: { 
    (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>; 
    (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, bigint]>; 
}
- 
- (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>
 
- 
Parameters
- 
 
- 
 
- 
toAddress: undefined | string
 
- 
amount: bigint
 
- 
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    assertAmountEnough?: true; 
    config?: Config; 
    requireToAddress?: boolean; 
}
- 
 
- 
Optional assertAmountEnough?: true
 
- 
Optional config?: Config
 
- 
Optional requireToAddress?: boolean
 
 
 
 
- (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, bigint]>
 
- 
Parameters
- 
 
- 
 
- 
toAddress: undefined | string
 
- 
amount: bigint
 
- 
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    assertAmountEnough: false; 
    config?: Config; 
    requireToAddress?: boolean; 
}
- 
 
- 
assertAmountEnough: false
 
- 
Optional config?: Config
 
- 
Optional requireToAddress?: boolean
 
 
 
 
 
 
- 
transferCompatible: { 
    (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>; 
    (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, BI]>; 
}
- 
- (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<TransactionSkeletonType>
 
- 
Parameters
- 
 
- 
 
- 
toAddress: undefined | string
 
- 
 
- 
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    assertAmountEnough?: true; 
    config?: Config; 
    requireToAddress?: boolean; 
}
- 
 
- 
Optional assertAmountEnough?: true
 
- 
Optional config?: Config
 
- 
Optional requireToAddress?: boolean
 
 
 
 
- (txSkeleton, fromInfos, toAddress, amount, tipHeader, __namedParameters): Promise<[TransactionSkeletonType, BI]>
 
- 
Parameters
- 
 
- 
 
- 
toAddress: undefined | string
 
- 
 
- 
 
- 
__namedParameters: { 
    LocktimeCellCollector?: CellCollectorConstructor; 
    assertAmountEnough: false; 
    config?: Config; 
    requireToAddress?: boolean; 
}
- 
 
- 
assertAmountEnough: false
 
- 
Optional config?: Config
 
- 
Optional requireToAddress?: boolean