Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link

Icon LinkClass: Predicate<TInputData>

@fuel-ts/account .Predicate

Predicate provides methods to populate transaction data with predicate information and sending transactions with them.

Icon LinkType parameters

NameType
TInputDataextends InputValue[]

Icon LinkHierarchy

Icon LinkConstructors

Icon Linkconstructor

new Predicate<TInputData>(«destructured»): Predicate <TInputData>

Creates an instance of the Predicate class.

Icon LinkType parameters

NameType
TInputDataextends InputValue[]

Icon LinkParameters

NameType
«destructured»PredicateParams <TInputData>

Icon LinkReturns

Predicate <TInputData>

Icon LinkOverrides

Account .constructor

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:52 Icon Link

Icon LinkProperties

Icon Link_connector

Protected Optional _connector: FuelConnector

Icon LinkInherited from

Account ._connector

Icon LinkDefined in

packages/account/src/account.ts:67 Icon Link


Icon Link_provider

Protected Optional _provider: Provider

The provider used to interact with the network.

Icon LinkInherited from

Account ._provider

Icon LinkDefined in

packages/account/src/account.ts:65 Icon Link


Icon Linkaddress

Readonly address: AbstractAddress

The address associated with the account.

Icon LinkInherited from

Account .address

Icon LinkDefined in

packages/account/src/account.ts:60 Icon Link


Icon Linkbytes

bytes: Uint8Array

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:39 Icon Link


Icon Linkinterface

Optional interface: Interface<JsonAbi>

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:41 Icon Link


Icon LinkpredicateData

predicateData: TInputData

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:40 Icon Link

Icon LinkAccessors

Icon Linkprovider

get provider(): Provider

The provider used to interact with the network.

Throws

FuelError if the provider is not set.

Icon LinkReturns

Provider

A Provider instance.

Icon LinkInherited from

Account.provider

Icon LinkDefined in

packages/account/src/account.ts:89 Icon Link

set provider(provider): void

Sets the provider for the account.

Icon LinkParameters

NameTypeDescription
providerProvider A Provider instance.

Icon LinkReturns

void

Icon LinkInherited from

Account.provider

Icon LinkDefined in

packages/account/src/account.ts:102 Icon Link

Icon LinkMethods

Icon Linkconnect

connect(provider): Provider

Changes the provider connection for the account.

Icon LinkParameters

NameTypeDescription
providerProvider A Provider instance.

Icon LinkReturns

Provider

The updated Provider instance.

Icon LinkInherited from

Account .connect

Icon LinkDefined in

packages/account/src/account.ts:112 Icon Link


Icon LinkcreateTransfer

createTransfer(destination, amount, assetId?, txParams?): Promise<TransactionRequest >

A helper that creates a transfer transaction request and returns it.

Icon LinkParameters

NameTypeDescription
destinationstring | AbstractAddress The address of the destination.
amountBigNumberishThe amount of coins to transfer.
assetId?BytesLike The asset ID of the coins to transfer.
txParamsTxParamsType The transaction parameters (gasLimit, tip, maturity, maxFee, witnessLimit).

Icon LinkReturns

Promise<TransactionRequest >

A promise that resolves to the prepared transaction request.

Icon LinkInherited from

Account .createTransfer

Icon LinkDefined in

packages/account/src/account.ts:371 Icon Link


Icon Linkfund

fund<T>(request, params): Promise<T>

Funds a transaction request by adding the necessary resources.

Icon LinkType parameters

NameTypeDescription
Textends TransactionRequest The type of the TransactionRequest.

Icon LinkParameters

NameTypeDescription
requestTThe transaction request to fund.
paramsEstimatedTxParams The estimated transaction parameters.

Icon LinkReturns

Promise<T>

The funded transaction request.

Icon LinkInherited from

Account .fund

Icon LinkDefined in

packages/account/src/account.ts:254 Icon Link


Icon LinkgetBalance

getBalance(assetId?): Promise<BN>

Retrieves the balance of the account for the given asset.

Icon LinkParameters

NameTypeDescription
assetId?BytesLike The asset ID to check the balance for.

Icon LinkReturns

Promise<BN>

A promise that resolves to the balance amount.

Icon LinkInherited from

Account .getBalance

Icon LinkDefined in

packages/account/src/account.ts:206 Icon Link


Icon LinkgetBalances

getBalances(): Promise<CoinQuantity []>

Retrieves all the balances for the account.

Icon LinkReturns

Promise<CoinQuantity []>

A promise that resolves to an array of Coins and their quantities.

Icon LinkInherited from

Account .getBalances

Icon LinkDefined in

packages/account/src/account.ts:217 Icon Link


Icon LinkgetCoins

getCoins(assetId?): Promise<Coin []>

Retrieves coins owned by the account.

Icon LinkParameters

NameTypeDescription
assetId?BytesLike The asset ID of the coins to retrieve.

Icon LinkReturns

Promise<Coin []>

A promise that resolves to an array of Coins.

Icon LinkInherited from

Account .getCoins

Icon LinkDefined in

packages/account/src/account.ts:137 Icon Link


Icon LinkgetIndexFromPlaceholderWitness

getIndexFromPlaceholderWitness(request): number

Returns the index of the witness placeholder that was added to this predicate. If no witness placeholder was added, it returns -1.

Icon LinkParameters

NameTypeDescription
requestTransactionRequest The transaction request.

Icon LinkReturns

number

The index of the witness placeholder, or -1 if there is no witness placeholder.

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:251 Icon Link


Icon LinkgetMessages

getMessages(): Promise<Message []>

Retrieves messages owned by the account.

Icon LinkReturns

Promise<Message []>

A promise that resolves to an array of Messages.

Icon LinkInherited from

Account .getMessages

Icon LinkDefined in

packages/account/src/account.ts:171 Icon Link


Icon LinkgetPredicateData

getPredicateData(): Uint8Array

Icon LinkReturns

Uint8Array

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:127 Icon Link


Icon LinkgetResourcesToSpend

getResourcesToSpend(quantities, excludedIds?): Promise<Resource []>

Retrieves resources satisfying the spend query for the account.

Icon LinkParameters

NameTypeDescription
quantitiesCoinQuantityLike []IDs of coins to exclude.
excludedIds?ExcludeResourcesOptionIDs of resources to be excluded from the query.

Icon LinkReturns

Promise<Resource []>

A promise that resolves to an array of Resources.

Icon LinkOverrides

Account .getResourcesToSpend

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:183 Icon Link


Icon LinkpopulateTransactionPredicateData

populateTransactionPredicateData<T>(transactionRequestLike): T

Populates the transaction data with predicate data.

Icon LinkType parameters

NameType
Textends TransactionRequest

Icon LinkParameters

NameTypeDescription
transactionRequestLikeTransactionRequestLike The transaction request-like object.

Icon LinkReturns

T

The transaction request with predicate data.

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:80 Icon Link


Icon LinksendTransaction

sendTransaction(transactionRequestLike): Promise<TransactionResponse >

Sends a transaction with the populated predicate data.

Icon LinkParameters

NameTypeDescription
transactionRequestLikeTransactionRequestLike The transaction request-like object.

Icon LinkReturns

Promise<TransactionResponse >

A promise that resolves to the transaction response.

Icon LinkOverrides

Account .sendTransaction

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:111 Icon Link


Icon LinksignMessage

signMessage(message): Promise<string>

Icon LinkParameters

NameType
messagestring

Icon LinkReturns

Promise<string>

Icon LinkInherited from

Account .signMessage

Icon LinkDefined in

packages/account/src/account.ts:540 Icon Link


Icon LinksignTransaction

signTransaction(transactionRequestLike): Promise<string>

Signs a transaction with the wallet's private key.

Icon LinkParameters

NameTypeDescription
transactionRequestLikeTransactionRequestLike The transaction request to sign.

Icon LinkReturns

Promise<string>

A promise that resolves to the signature of the transaction.

Icon LinkInherited from

Account .signTransaction

Icon LinkDefined in

packages/account/src/account.ts:553 Icon Link


Icon LinksimulateTransaction

simulateTransaction(transactionRequestLike): Promise<CallResult >

Simulates a transaction with the populated predicate data.

Icon LinkParameters

NameTypeDescription
transactionRequestLikeTransactionRequestLike The transaction request-like object.

Icon LinkReturns

Promise<CallResult >

A promise that resolves to the call result.

Icon LinkOverrides

Account .simulateTransaction

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:122 Icon Link


Icon Linktransfer

transfer(destination, amount, assetId?, txParams?): Promise<TransactionResponse >

Transfers coins to a destination address.

Icon LinkParameters

NameTypeDescription
destinationstring | AbstractAddress The address of the destination.
amountBigNumberishThe amount of coins to transfer.
assetId?BytesLike The asset ID of the coins to transfer.
txParamsTxParamsType The transaction parameters (gasLimit, maturity).

Icon LinkReturns

Promise<TransactionResponse >

A promise that resolves to the transaction response.

Icon LinkInherited from

Account .transfer

Icon LinkDefined in

packages/account/src/account.ts:410 Icon Link


Icon LinktransferToContract

transferToContract(contractId, amount, assetId?, txParams?): Promise<TransactionResponse >

Transfers coins to a contract address.

Icon LinkParameters

NameTypeDescription
contractIdstring | AbstractAddress The address of the contract.
amountBigNumberishThe amount of coins to transfer.
assetId?BytesLike The asset ID of the coins to transfer.
txParamsTxParamsType The optional transaction parameters.

Icon LinkReturns

Promise<TransactionResponse >

A promise that resolves to the transaction response.

Icon LinkInherited from

Account .transferToContract

Icon LinkDefined in

packages/account/src/account.ts:440 Icon Link


Icon LinkwithdrawToBaseLayer

withdrawToBaseLayer(recipient, amount, txParams?): Promise<TransactionResponse >

Withdraws an amount of the base asset to the base chain.

Icon LinkParameters

NameTypeDescription
recipientstring | AbstractAddress Address of the recipient on the base chain.
amountBigNumberishAmount of base asset.
txParamsTxParamsType The optional transaction parameters.

Icon LinkReturns

Promise<TransactionResponse >

A promise that resolves to the transaction response.

Icon LinkInherited from

Account .withdrawToBaseLayer

Icon LinkDefined in

packages/account/src/account.ts:498 Icon Link


Icon LinkprocessPredicateData

processPredicateData(bytes, jsonAbi?, configurableConstants?): Object

Processes the predicate data and returns the altered bytecode and interface.

Icon LinkParameters

NameTypeDescription
bytesBytesLike The bytes of the predicate.
jsonAbi?JsonAbiThe JSON ABI of the predicate.
configurableConstants?ObjectOptional configurable constants for the predicate.

Icon LinkReturns

Object

An object containing the new predicate bytes and interface.

NameType
predicateBytesUint8Array
predicateInterfaceundefined | Interface<JsonAbi>

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:144 Icon Link


Icon LinksetConfigurableConstants

setConfigurableConstants(bytes, configurableConstants, abiInterface?): Uint8Array

Sets the configurable constants for the predicate.

Icon LinkParameters

NameTypeDescription
bytesUint8ArrayThe bytes of the predicate.
configurableConstantsObjectConfigurable constants to be set.
abiInterface?Interface<JsonAbi>The ABI interface of the predicate.

Icon LinkReturns

Uint8Array

The mutated bytes with the configurable constants set.

Icon LinkDefined in

packages/account/src/predicate/predicate.ts:206 Icon Link