@fuel-ts/account v0.95.0 • Docs
Class: BlobTransactionRequest
Abstract class to define the functionalities of a transaction request transaction request.
Extends
Constructors
new BlobTransactionRequest()
new BlobTransactionRequest(
blobTransactionRequestLike
):BlobTransactionRequest
Creates an instance BlobTransactionRequest
.
Parameters
• blobTransactionRequestLike: BlobTransactionRequestLike
The initial values for the instance
Returns
Overrides
BaseTransactionRequest
.constructor
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:36
Properties
blobId
blobId:
string
Blob ID
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:27
inputs
inputs:
TransactionRequestInput
[] =[]
List of inputs
Inherited from
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:116
maturity?
optional
maturity:number
Block until which tx cannot be included
Inherited from
BaseTransactionRequest
.maturity
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:110
maxFee
maxFee:
BN
The maximum fee payable by this transaction using BASE_ASSET.
Inherited from
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:112
outputs
outputs:
TransactionRequestOutput
[] =[]
List of outputs
Inherited from
BaseTransactionRequest
.outputs
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:118
tip?
optional
tip:BN
Gas price for transaction
Inherited from
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:108
type
type:
Blob
Type of the transaction
Overrides
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:25
witnessIndex
witnessIndex:
number
Witness index of contract bytecode to create
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:29
witnessLimit?
optional
witnessLimit:BN
The maximum amount of witness data allowed for the transaction
Inherited from
BaseTransactionRequest
.witnessLimit
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:114
witnesses
witnesses:
BytesLike
[] =[]
List of witnesses
Inherited from
BaseTransactionRequest
.witnesses
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:120
Methods
addAccountWitnesses()
addAccountWitnesses(
account
):Promise
<BlobTransactionRequest
>
Helper function to add an external signature to the transaction.
Parameters
• account: Account
| Account
[]
The account/s to sign to the transaction.
Returns
Promise
<BlobTransactionRequest
>
The transaction with the signature witness added.
Inherited from
BaseTransactionRequest
.addAccountWitnesses
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:294
addChangeOutput()
addChangeOutput(
to
,assetId
):void
Adds a change output to the transaction.
Parameters
• to: AddressLike
Address of the owner.
• assetId: BytesLike
Asset ID of coin.
Returns
void
Inherited from
BaseTransactionRequest
.addChangeOutput
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:519
addCoinInput()
addCoinInput(
coin
):void
Adds a single coin input to the transaction and a change output for the related assetId, if one it was not added yet.
Parameters
• coin: Coin
Coin resource.
Returns
void
Inherited from
BaseTransactionRequest
.addCoinInput
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:368
addCoinOutput()
addCoinOutput(
to
,amount
,assetId
):BlobTransactionRequest
Adds a coin output to the transaction.
Parameters
• to: AddressLike
Address of the owner.
• amount: BigNumberish
Amount of coin.
• assetId: BytesLike
Asset ID of coin.
Returns
Inherited from
BaseTransactionRequest
.addCoinOutput
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:483
addCoinOutputs()
addCoinOutputs(
to
,quantities
):BlobTransactionRequest
Adds multiple coin outputs to the transaction.
Parameters
• to: AddressLike
Address of the destination.
• quantities: CoinQuantityLike
[]
Quantities of coins.
Returns
Inherited from
BaseTransactionRequest
.addCoinOutputs
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:500
addMessageInput()
addMessageInput(
message
):void
Adds a single message input to the transaction and a change output for the asset against the message
Parameters
• message: Message
| MessageCoin
Message resource.
Returns
void
Inherited from
BaseTransactionRequest
.addMessageInput
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:409
addResource()
addResource(
resource
):BlobTransactionRequest
Adds a single resource to the transaction by adding a coin/message input and a change output for the related assetId, if one it was not added yet.
Parameters
• resource: Resource
The resource to add.
Returns
This transaction.
Inherited from
BaseTransactionRequest
.addResource
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:453
addResources()
addResources(
resources
):BlobTransactionRequest
Adds multiple resources to the transaction by adding coin/message inputs and change outputs from the related assetIds.
Parameters
• resources: readonly Resource
[]
The resources to add.
Returns
This transaction.
Inherited from
BaseTransactionRequest
.addResources
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:470
byteLength()
byteLength():
number
Returns
number
Inherited from
BaseTransactionRequest
.byteLength
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:709
calculateMaxGas()
calculateMaxGas(
chainInfo
,minGas
):BN
Parameters
• chainInfo: ChainInfo
• minGas: BN
Returns
BN
Inherited from
BaseTransactionRequest
.calculateMaxGas
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:567
fundWithFakeUtxos()
fundWithFakeUtxos(
quantities
,baseAssetId
,resourcesOwner
?):BlobTransactionRequest
Funds the transaction with fake UTXOs for each assetId and amount in the quantities array.
Parameters
• quantities: CoinQuantity
[]
CoinQuantity Array.
• baseAssetId: string
The base asset to fund the transaction.
• resourcesOwner?: AbstractAddress
Returns
Deprecated
- This method is deprecated and will be removed in future versions. Please use
Account.generateFakeResources
along withthis.addResources
instead.
Inherited from
BaseTransactionRequest
.fundWithFakeUtxos
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:596
getBaseTransaction()
protected
getBaseTransaction():ToBaseTransactionResponse
Method to obtain the base transaction details.
Returns
ToBaseTransactionResponse
The base transaction details.
Inherited from
BaseTransactionRequest
.getBaseTransaction
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:179
getChangeOutputs()
getChangeOutputs():
ChangeTransactionRequestOutput
[]
Gets the change outputs for a transaction.
Returns
ChangeTransactionRequestOutput
[]
The change outputs.
Inherited from
BaseTransactionRequest
.getChangeOutputs
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:332
getCoinInputs()
getCoinInputs():
CoinTransactionRequestInput
[]
Gets the coin inputs for a transaction.
Returns
The coin inputs.
Inherited from
BaseTransactionRequest
.getCoinInputs
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:310
getCoinOutputs()
getCoinOutputs():
CoinTransactionRequestOutput
[]
Gets the coin outputs for a transaction.
Returns
CoinTransactionRequestOutput
[]
The coin outputs.
Inherited from
BaseTransactionRequest
.getCoinOutputs
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:321
getCoinOutputsQuantities()
getCoinOutputsQuantities():
CoinQuantity
[]
Retrieves an array of CoinQuantity for each coin output present in the transaction. a transaction.
Returns
CoinQuantity array.
Inherited from
BaseTransactionRequest
.getCoinOutputsQuantities
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:647
getTransactionId()
getTransactionId(
chainId
):string
Gets the Transaction Request by hashing the transaction.
Parameters
• chainId: number
The chain ID.
Returns
string
- A hash of the transaction, which is the transaction ID.
Overrides
BaseTransactionRequest
.getTransactionId
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:65
metadataGas()
metadataGas(
gasCosts
):BN
Calculates the metadata gas cost for a blob transaction.
Parameters
• gasCosts: GasCosts
gas costs passed from the chain.
Returns
BN
metadata gas cost for the blob transaction.
Overrides
BaseTransactionRequest.metadataGas
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:75
removeWitness()
removeWitness(
index
):void
Parameters
• index: number
Returns
void
Inherited from
BaseTransactionRequest
.removeWitness
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:675
toJSON()
toJSON():
any
Return the minimum amount in native coins required to create a transaction.
Returns
any
The transaction as a JSON object.
Inherited from
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:671
toTransaction()
toTransaction():
TransactionBlob
Converts the transaction request to a TransactionBlob
.
Returns
TransactionBlob
The transaction create object.
Overrides
BaseTransactionRequest
.toTransaction
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:47
toTransactionBytes()
toTransactionBytes():
Uint8Array
Converts the transaction request to a byte array.
Returns
Uint8Array
The transaction bytes.
Inherited from
BaseTransactionRequest
.toTransactionBytes
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:210
updatePredicateGasUsed()
updatePredicateGasUsed(
inputs
):void
Parameters
• inputs: TransactionRequestInput
[]
Returns
void
Inherited from
BaseTransactionRequest
.updatePredicateGasUsed
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:689
updateWitness()
updateWitness(
index
,witness
):void
Updates an existing witness without any side effects.
Parameters
• index: number
The index of the witness to update.
• witness: BytesLike
The new witness.
Returns
void
Throws
If the witness does not exist.
Inherited from
BaseTransactionRequest
.updateWitness
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:281
updateWitnessByOwner()
updateWitnessByOwner(
address
,signature
):void
Updates the witness for a given owner and signature.
Parameters
• address: string
| AbstractAddress
The address to get the coin input witness index for.
• signature: BytesLike
The signature to update the witness with.
Returns
void
Inherited from
BaseTransactionRequest
.updateWitnessByOwner
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:266
from()
static
from(obj
):BlobTransactionRequest
Parameters
• obj: BlobTransactionRequestLike
Returns
Defined in
packages/account/src/providers/transaction-request/blob-transaction-request.ts:20
getPolicyMeta()
static
getPolicyMeta(req
):object
Parameters
• req: BaseTransactionRequest
Returns
object
policies
policies:
Policy
[]
policyTypes
policyTypes:
number
Inherited from
BaseTransactionRequest
.getPolicyMeta
Defined in
packages/account/src/providers/transaction-request/transaction-request.ts:145