mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
23 lines
1.0 KiB
Markdown
23 lines
1.0 KiB
Markdown
# Look up Transaction Results
|
|
|
|
To see the final result of a transaction, use the [tx method][], [account_tx method][], or other response from `rippled`. Look for `"validated": true` to indicate that this response uses a ledger version that has been validated by consensus.
|
|
|
|
| Field | Value | Description |
|
|
|:-----------------------|:--------|:------------------------------------------|
|
|
| meta.TransactionResult | String | A code that categorizes the result, such as `tecPATH_DRY` |
|
|
| validated | Boolean | Whether or not this result comes from a validated ledger. If `false`, then the result is provisional. If `true`, then the result is final. |
|
|
|
|
```json
|
|
"hash": "E08D6E9754025BA2534A78707605E0601F03ACE063687A0CA1BDDACFCD1698C7",
|
|
"meta": {
|
|
...
|
|
"TransactionResult": "tesSUCCESS"
|
|
},
|
|
"validated": true
|
|
```
|
|
|
|
<!--{# common link defs #}-->
|
|
{% include '_snippets/rippled-api-links.md' %}
|
|
{% include '_snippets/tx-type-links.md' %}
|
|
{% include '_snippets/rippled_versions.md' %}
|