Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.particle.network/llms.txt

Use this file to discover all available pages before exploring further.

After broadcasting a transaction with sendTransaction(), the SDK will return a detailed object containing its execution status, fee breakdowns, token flows, and analytics. Below is a breakdown of the key fields within this object:
FieldDescription
transactionIdUnique ID of the transaction (used to query status or activity details)
modeNetwork mode, typically "mainnet" or "testnet"
sender / receiverAddress that initiated and received the transaction (usually same)
typeTransaction type (e.g. "universal")
statusExecution status code (internal enum)
tagTransaction tag (e.g., "buy" or "swap")
created_at / updated_atISO timestamps for lifecycle tracking
FieldDescription
totals.feeTokenAmountInUSDTotal fee in USD
feeTokens[]List of tokens used to pay fees, with symbols and USD values
freeGasFee / freeServiceFeeWhether any component was waived
Tokens deducted from the user’s account to fund the transaction. Each entry includes:
  • token.symbol
  • token.chainId
  • amount and amountInUSD
  • Full metadata (decimals, icon, etc.)
Provides the most useful high-level insight into what changed:
FieldDescription
decr[]Tokens deducted from the user (chain, token, amount)
incr[]Tokens received by the user
swaps[]Swap routes (e.g. from USDC to USDT via 1inch)
tokenBalances[]Final post-transaction token balances
FieldDescription
slippageSlippage used for the route (in basis points)
totalFeeInUSDFinal USD fee value
totalDecrAmountInUSDTotal USD value deducted
totalIncrAmountInUSDTotal USD value received
priceImpactEstimated price impact (0 if none)
minReceiveAmountInUSDMinimum expected amount (to be received, post-slippage) in USD
minReceiveTokenToken targeted by the buy/swap action

Next steps

Transaction History

Fetch past transactions and details for a Universal Account.

Transaction Preview

Inspect fees and token movements before signing.