Class Predicate<TData, TConfigurables>

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

Type Parameters

  • TData extends InputValue[] = InputValue[]
  • TConfigurables extends {
        [name: string]: unknown;
    } | undefined = {
        [name: string]: unknown;
    }

Hierarchy (view full)

Constructors

Properties

_connector?: FuelConnector

The connector for use with external wallets

_provider?: Provider

The provider used to interact with the network.

address: Address

The address associated with the account.

bytes: Uint8Array<ArrayBufferLike>
configurableConstants: undefined | TConfigurables
initialBytecode: Uint8Array<ArrayBufferLike>
interface: Interface
predicateData: TData = ...

Accessors

  • get provider(): Provider
  • The provider used to interact with the network.

    Returns Provider

    A Provider instance.

    FuelError if the provider is not set.

  • set provider(provider): void
  • Sets the provider for the account.

    Parameters

    Returns void

Methods

  • Transfers multiple amounts of a token to multiple recipients.

    Parameters

    • transferParams: TransferParams[]

      An array of TransferParams objects representing the transfers to be made.

    • txParams: TxParamsType = {}

      Optional transaction parameters.

    Returns Promise<TransactionResponse>

    A promise that resolves to a TransactionResponse object representing the transaction result.

  • Changes the provider connection for the account.

    Parameters

    Returns Provider

    The updated Provider instance.

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

    Parameters

    • destination: string | Address

      The address of the destination.

    • amount: BigNumberish

      The amount of coins to transfer.

    • OptionalassetId: BytesLike

      The asset ID of the coins to transfer (optional).

    • txParams: TxParamsType = {}

      The transaction parameters (optional).

    Returns Promise<ScriptTransactionRequest>

    A promise that resolves to the prepared transaction request.

  • Type Parameters

    Parameters

    • account: Account

      The account used to pay the deployment costs.

    Returns Promise<{
        blobId: string;
        waitForResult: (() => Promise<T>);
    }>

    The blobId and a waitForResult callback that returns the deployed predicate once the blob deployment transaction finishes.

    The returned loader predicate will have the same configurable constants as the original predicate which was used to generate the loader predicate.

  • Funds a transaction request by adding the necessary resources.

    Type Parameters

    Parameters

    • request: T

      The transaction request to fund.

    • params: EstimatedTxParams

      The estimated transaction parameters.

    Returns Promise<T>

    A promise that resolves to the funded transaction request.

  • Generates an array of fake resources based on the provided coins.

    Parameters

    • coins: FakeResources[]

      An array of FakeResources objects representing the coins.

    Returns Resource[]

    An array of Resource objects with generated properties.

  • Retrieves the balance of the account for the given asset.

    Parameters

    • OptionalassetId: BytesLike

      The asset ID to check the balance for (optional).

    Returns Promise<BN>

    A promise that resolves to the balance amount.

  • Retrieves coins owned by the account.

    Parameters

    • OptionalassetId: BytesLike

      The asset ID of the coins to retrieve (optional).

    • OptionalpaginationArgs: CursorPaginationArgs

    Returns Promise<GetCoinsResponse>

    A promise that resolves to an array of Coins.

  • Retrieves messages owned by the account.

    Parameters

    • OptionalpaginationArgs: CursorPaginationArgs

    Returns Promise<GetMessagesResponse>

    A promise that resolves to an array of Messages.

  • Retrieves resources satisfying the spend query for the account.

    Parameters

    • quantities: CoinQuantityLike[]

      IDs of coins to exclude.

    • OptionalexcludedIds: ExcludeResourcesOption

      IDs of resources to be excluded from the query.

    Returns Promise<Resource[]>

    A promise that resolves to an array of Resources.

  • Returns a transaction cost to enable user to set gasLimit and also reserve balance amounts on the transaction.

    Parameters

    Returns Promise<TransactionCost>

    A promise that resolves to the transaction cost object.

  • Populates the transaction data with predicate data.

    Type Parameters

    Parameters

    Returns T

    The transaction request with predicate data.

  • Signs a transaction from the account via the connector..

    Parameters

    Returns Promise<string>

    A promise that resolves to the signature of the transaction.

  • Simulates a transaction with the populated predicate data.

    Parameters

    Returns Promise<CallResult>

    A promise that resolves to the call result.

  • Creates a new Predicate instance from an existing Predicate instance.

    Parameters

    Returns Predicate<TData, TConfigurables>

    A new Predicate instance with the same bytecode, ABI and provider but with the ability to set the data and configurable constants.

  • Transfers coins to a destination address.

    Parameters

    • destination: string | Address

      The address of the destination.

    • amount: BigNumberish

      The amount of coins to transfer.

    • OptionalassetId: BytesLike

      The asset ID of the coins to transfer (optional).

    • txParams: TxParamsType = {}

      The transaction parameters (optional).

    Returns Promise<TransactionResponse>

    A promise that resolves to the transaction response.

  • Transfers coins to a contract address.

    Parameters

    • contractId: string | Address

      The address of the contract.

    • amount: BigNumberish

      The amount of coins to transfer.

    • assetId: BytesLike

      The asset ID of the coins to transfer (optional).

    • txParams: TxParamsType = {}

      The transaction parameters (optional).

    Returns Promise<TransactionResponse>

    A promise that resolves to the transaction response.