get_transactions
Fetch up to 50 Sui transactions by digests in one call, returning sender, status, timing, balance changes, move calls, decoded events, and protocols. Missing digests are listed in not_found.
Instructions
Read up to 50 Sui transactions in ONE call, given their digests. Returns sender, status, timing, balance changes, Move call targets and events WITH their decoded fields for each, plus the protocols involved. Use this whenever you hold several digests at once — the outputs of a fan-out, the evidence on a cluster edge, a set of hops to compare — instead of calling get_transaction repeatedly; ten digests go from ten round trips to one. Digests that could not be read come back in not_found rather than being dropped. For ONE transaction, or for a transaction with more than 50 events, prefer get_transaction: it pages events to the end.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| digests | Yes | Transaction digests, Base58 (1-50). Duplicates are collapsed. | |
| network | No | Which Sui network to run this call against: 'mainnet' (default), 'testnet', or 'devnet'. Set this per-call — different tool calls in the same session can target different networks (e.g. to compare a value on testnet against mainnet). |