Represents a response for a transaction.

Constructors

  • Constructor for TransactionResponse.

    Parameters

    • tx: string | TransactionRequest

      The transaction ID or TransactionRequest.

    • provider: Provider

      The provider.

    • chainId: number
    • Optionalabis: JsonAbisFromAllCalls
    • OptionalsubmitTxSubscription: AsyncIterable<GqlSubmitAndAwaitStatusSubscription, any, any>

    Returns TransactionResponse

Properties

gasUsed: BN = ...

Gas used on the transaction

id: string

Transaction ID

provider: Provider

Current provider

Methods

  • Assembles the result of a transaction by retrieving the transaction summary, decoding logs (if available), and handling transaction failure.

    This method can be used to obtain the result of a transaction that has just been submitted or one that has already been processed.

    Type Parameters

    • TTransactionType = void

      The type of the transaction.

    Parameters

    • OptionalcontractsAbiMap: AbiMap

      The map of contract ABIs.

    Returns Promise<TransactionResult<TTransactionType>>

    • The assembled transaction result.

    If the transaction status is a failure.

  • Fetch the transaction with receipts from the provider.

    Returns Promise<GqlTransaction>

    Transaction with receipts query result.

  • Retrieves the TransactionSummary. If the gqlTransaction is not set, it will fetch it from the provider

    Type Parameters

    • TTransactionType = void

    Parameters

    • OptionalcontractsAbiMap: AbiMap

      The contracts ABI map.

    Returns Promise<TransactionSummary<TTransactionType>>

  • Waits for transaction to complete and returns the result.

    Type Parameters

    • TTransactionType = void

    Parameters

    • OptionalcontractsAbiMap: AbiMap

      The contracts ABI map.

    Returns Promise<TransactionResult<TTransactionType>>

  • Waits for transaction to complete and returns the result.

    Type Parameters

    • TTransactionType = void

    Parameters

    • OptionalcontractsAbiMap: AbiMap

    Returns Promise<TransactionResult<TTransactionType>>

    The completed transaction result

  • Async constructor for TransactionResponse. This method can be used to create an instance of TransactionResponse and wait for the transaction to be fetched from the chain, ensuring that the gqlTransaction property is set.

    Parameters

    Returns Promise<TransactionResponse>

""