beignet / Transaction
- addExternalInputs
- addInput
- addOutput
- createPsbtFromTransactionData
- createTransaction
- estimateTransactionCosts
- getMaxSatsPerByte
- getMaxSendAmount
- getTotalFee
- getTotalFeeObj
- getTransactionInputValue
- getTransactionOutputValue
- removeBlackListedUtxos
- resetSendTransaction
- sendMax
- setupCpfp
- setupTransaction
- signPsbt
- updateFee
- updateSendTransaction
• new Transaction(«destructured»
)
Name | Type |
---|---|
«destructured» |
Object |
› wallet |
Wallet |
• Private
_data: ISendTransaction
• Private
Readonly
_wallet: Wallet
• get
data(): ISendTransaction
▸ addExternalInputs(«destructured»
): Result
<IUtxo
[]>
Adds external inputs to the current transaction.
Name | Type |
---|---|
«destructured» |
Object |
› inputs |
IUtxo [] |
› keyPair |
BIP32Interface | ECPairInterface |
▸ addInput(«destructured»
): Promise
<Result
<string
>>
Name | Type |
---|---|
«destructured» |
IAddInput |
Promise
<Result
<string
>>
▸ addOutput(«destructured»
): Promise
<Result
<string
>>
Adds an output at the specified index to the current transaction.
Name | Type |
---|---|
«destructured» |
IOutput |
Promise
<Result
<string
>>
▸ createPsbtFromTransactionData(«destructured»
): Promise
<Result
<Psbt
>>
Returns a PSBT that includes unsigned funding inputs.
Name | Type |
---|---|
«destructured» |
Object |
› bip32Interface? |
BIP32Interface |
› shuffleTargets? |
boolean |
› transactionData |
ISendTransaction |
Promise
<Result
<Psbt
>>
▸ createTransaction(«destructured»?
): Promise
<Result
<{ hex
: string
; id
: string
}>>
Creates complete signed transaction using the transaction data store
Name | Type |
---|---|
«destructured» |
ICreateTransaction |
Promise
<Result
<{ hex
: string
; id
: string
}>>
▸ estimateTransactionCosts(«destructured»?
): Result
<{ amount
: number
; fee
: number
; satsPerByte
: number
}>
Calculates the max amount able to send for onchain/lightning
Name | Type |
---|---|
«destructured» |
Object |
› customFeeRate? |
number |
› transaction? |
ISendTransaction |
Result
<{ amount
: number
; fee
: number
; satsPerByte
: number
}>
▸ getMaxSatsPerByte(«destructured»
): number
Returns the maximum sats per byte that can be used for a given transaction.
Name | Type |
---|---|
«destructured» |
Object |
› balance? |
number |
› transactionByteCount |
number |
number
▸ getMaxSendAmount(«destructured»
): Result
<{ amount
: number
; fee
: number
}>
Calculates the max amount able to send for the provided/current onchain transaction.
Name | Type |
---|---|
«destructured» |
Object |
› satsPerByte |
number |
› selectedFeeId? |
EFeeId |
› transaction? |
ISendTransaction |
Result
<{ amount
: number
; fee
: number
}>
▸ getTotalFee(«destructured»?
): number
Attempt to estimate the current fee for a given transaction and its UTXO's
Name | Type |
---|---|
«destructured» |
Object |
› fundingLightning? |
boolean |
› message? |
string |
› satsPerByte |
number |
› transaction? |
Partial <ISendTransaction > |
number
▸ getTotalFeeObj(«destructured»?
): Result
<TGetTotalFeeObj
>
Attempt to estimate the current fee for a given transaction and its UTXO's
Name | Type |
---|---|
«destructured» |
Object |
› fundingLightning? |
boolean |
› message? |
string |
› satsPerByte? |
number |
› transaction? |
Partial <ISendTransaction > |
▸ getTransactionInputValue(inputs?
): number
Returns total value of all utxos.
Name | Type |
---|---|
inputs? |
Object |
inputs.inputs? |
IUtxo [] |
number
▸ getTransactionOutputValue(outputs?
): number
Returns total value of all outputs. Excludes any value that would be sent to the change address.
Name | Type |
---|---|
outputs? |
Object |
outputs.outputs? |
IOutput [] |
number
▸ removeBlackListedUtxos(utxos?
): IUtxo
[]
Removes blacklisted UTXO's from the UTXO array.
Name | Type |
---|---|
utxos? |
IUtxo [] |
IUtxo
[]
▸ resetSendTransaction(): Promise
<Result
<string
>>
This completely resets the send transaction state.
Promise
<Result
<string
>>
▸ sendMax(«destructured»?
): Promise
<Result
<string
>>
Toggles the max amount to the provided output index.
Name | Type |
---|---|
«destructured» |
Object |
› address? |
string |
› index? |
number |
› rbf? |
boolean |
› satsPerByte? |
number |
› transaction? |
ISendTransaction |
Promise
<Result
<string
>>
▸ setupCpfp(«destructured»?
): Promise
<Result
<ISendTransaction
>>
Sets up a CPFP transaction.
Name | Type |
---|---|
«destructured» |
Object |
› satsPerByte? |
number |
› txid? |
string |
Promise
<Result
<ISendTransaction
>>
▸ setupTransaction(«destructured»?
): Promise
<TSetupTransactionResponse
>
Sets up a transaction for a given wallet by gathering inputs, setting the next available change address as an output and sets up the baseline fee structure. This function will not override previously set transaction data. To do that you'll need to call resetSendTransaction.
Name | Type |
---|---|
«destructured» |
ISetupTransaction |
Promise
<TSetupTransactionResponse
>
▸ signPsbt(«destructured»
): Promise
<Result
<Psbt
>>
Loops through inputs and signs them
Name | Type |
---|---|
«destructured» |
Object |
› bip32Interface |
BIP32Interface |
› psbt |
Psbt |
Promise
<Result
<Psbt
>>
▸ updateFee(«destructured»?
): Result
<{ fee
: number
}>
Updates the fee for the current transaction by the specified amount.
Name | Type |
---|---|
«destructured» |
Object |
› index? |
number |
› satsPerByte |
number |
› selectedFeeId? |
EFeeId |
› transaction? |
ISendTransaction |
Result
<{ fee
: number
}>
▸ updateSendTransaction(transaction
): Result
<string
>
This updates the transaction state used for sending.
Name | Type |
---|---|
transaction |
Object |
transaction.transaction |
Partial <ISendTransaction > |
Result
<string
>