TransactionCallBuilder

TransactionCallBuilder

TransactionCallBuilder

Constructor

new TransactionCallBuilder(serverUrl)

Source:
See:
Parameters:
Name Type Description
serverUrl string

Horizon server URL.

Extends

Methods

call() → {Promise}

Triggers a HTTP request using this builder's current configuration.

Overrides:
Source:
Returns:
Type:
Promise

a Promise that resolves to the server's response.

cursor(cursor) → {object}

Sets cursor parameter for the current call. Returns the CallBuilder object on which this method has been called.

Overrides:
Source:
See:
Parameters:
Name Type Description
cursor string

A cursor is a value that points to a specific location in a collection of resources.

Returns:
Type:
object

current CallBuilder instance

forAccount(accountId) → {TransactionCallBuilder}

This endpoint represents all transactions that affected a given account.

Source:
See:
Parameters:
Name Type Description
accountId string

For example: GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD

Returns:
Type:
TransactionCallBuilder

current TransactionCallBuilder instance

forClaimableBalance(claimableBalanceId) → {TransactionCallBuilder}

This endpoint represents all transactions that reference a given claimable_balance.

Source:
See:
Parameters:
Name Type Description
claimableBalanceId string

Claimable Balance ID

Returns:
Type:
TransactionCallBuilder

this TransactionCallBuilder instance

forEndpoint(endpoint, param) → {CallBuilder}

A helper method to craft queries to "neighbor" endpoints.

For example, we have an /effects suffix endpoint on many different "root" endpoints, such as /transactions/:id and /accounts/:id. So, it's helpful to be able to conveniently create queries to the /accounts/:id/effects endpoint:

this.forEndpoint("accounts", accountId)`.

Overrides:
Source:
Parameters:
Name Type Description
endpoint string

neighbor endpoint in question, like /operations

param string

filter parameter, like an operation ID

Returns:
Type:
CallBuilder

this CallBuilder instance

forLedger(sequence) → {TransactionCallBuilder}

This endpoint represents all transactions in a given ledger.

Source:
See:
Parameters:
Name Type Description
sequence number | string

Ledger sequence

Returns:
Type:
TransactionCallBuilder

current TransactionCallBuilder instance

forLiquidityPool(poolId) → {TransactionCallBuilder}

This endpoint represents all transactions involving a particular liquidity pool.

Source:
Parameters:
Name Type Description
poolId string

liquidity pool ID

Returns:
Type:
TransactionCallBuilder

this TransactionCallBuilder instance

includeFailed(value) → {TransactionCallBuilder}

Adds a parameter defining whether to include failed transactions. By default only successful transactions are returned.

Source:
Parameters:
Name Type Description
value bool

Set to true to include failed transactions.

Returns:
Type:
TransactionCallBuilder

current TransactionCallBuilder instance

join(join) → {object}

Sets join parameter for the current call. The join parameter includes the requested resource in the response. Currently, the only valid value for the parameter is transactions and is only supported on the operations and payments endpoints. The response will include a transaction field for each operation in the response.

Overrides:
Source:
Parameters:
Name Type Description
join "transactions"

Records to be included in the response.

Returns:
Type:
object

current CallBuilder instance.

limit(number) → {object}

Sets limit parameter for the current call. Returns the CallBuilder object on which this method has been called.

Overrides:
Source:
See:
Parameters:
Name Type Description
number number

Number of records the server should return.

Returns:
Type:
object

current CallBuilder instance

order(direction) → {object}

Sets order parameter for the current call. Returns the CallBuilder object on which this method has been called.

Overrides:
Source:
Parameters:
Name Type Description
direction "asc" | "desc"

Sort direction

Returns:
Type:
object

current CallBuilder instance

stream(optionsopt) → {function}

Creates an EventSource that listens for incoming messages from the server. To stop listening for new events call the function returned by this method.

Overrides:
Source:
See:
Parameters:
Name Type Attributes Description
options object <optional>

EventSource options.

Name Type Attributes Description
onmessage function <optional>

Callback function to handle incoming messages.

onerror function <optional>

Callback function to handle errors.

reconnectTimeout number <optional>

Custom stream connection timeout in ms, default is 15 seconds.

Returns:
Type:
function

Close function. Run to close the connection and stop listening for new events.

transaction(transactionId) → {CallBuilder}

The transaction details endpoint provides information on a single transaction. The transaction hash provided in the hash argument specifies which transaction to load.

Source:
See:
Parameters:
Name Type Description
transactionId string

Transaction ID

Returns:
Type:
CallBuilder

a CallBuilder instance