mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
1.2 KiB
1.2 KiB
トランザクションの結果の確認
トランザクションの最終結果を確認するには、[txメソッド][]または[account_txメソッド][]を使用するか、rippledの他の応答を使用します。コンセンサスにより検証されたレジャーバージョンがこの応答に使用されていることを示す"validated": trueを検索します。
| フィールド | 値 | 説明 |
|---|---|---|
| meta.TransactionResult | 文字列 | 結果を以下のように分類するコード(tecPATH_DRYなど) |
| validated | ブール値 | この結果が検証済みレジャーの結果であるかどうか。falseの場合、結果は暫定的です。trueの場合、結果は最終結果です。 |
"hash": "E08D6E9754025BA2534A78707605E0601F03ACE063687A0CA1BDDACFCD1698C7",
"meta": {
...
"TransactionResult": "tesSUCCESS"
},
"validated": true
{% include '_snippets/rippled-api-links.md' %} {% include '_snippets/tx-type-links.md' %} {% include '_snippets/rippled_versions.md' %}