You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The resolved datum, if available. The field is only and always present (yet may be `null`) if `?resolve_hashes` was set.
1373
+
oneOf:
1374
+
- <<: *BinaryData
1375
+
description: A serialized Plutus' Data.
1376
+
- type: "null"
1377
+
description: None or unknown datum.
1378
+
datum_type:
1379
+
$ref: "#/components/schemas/DatumType"
1380
+
script_hash:
1381
+
$ref: "#/components/schemas/ScriptHash"
1382
+
script:
1383
+
description: The resolved script, if available. The field is only and always present (yet may be `null`) if `?resolve_hashes` was set.
1384
+
oneOf:
1385
+
- $ref: "#/components/schemas/Script"
1386
+
- type: "null"
1387
+
description: None or unknown script.
1388
+
created_at:
1389
+
<<: *Point
1390
+
description: Block reference at which this transaction was included in the ledger.
1391
+
spent_at:
1392
+
description: Block reference at which this transaction input was spent, if any.
1393
+
oneOf:
1394
+
- $ref: "#/components/schemas/SpentAt"
1395
+
- type: "null"
1396
+
1320
1397
Health:
1321
1398
type: object
1322
1399
description: An overview of the server & connection status. Note that, when `most_recent_checkpoint` and `most_recent_node_tip` are equal, the index is fully synchronized.
@@ -1780,6 +1857,13 @@ paths:
1780
1857
Optionally, use `?resolve_hashes` to automatically resolve and include `datum` and `script` associated with hash references, if available. Datums and scripts can otherwise be fetched using the [_Get Datum by Hash_](#tag/Datums/paths/~1datums~1{datum-hash}/get) and [_Get Script by Hash_](#tag/Scripts/paths/~1scripts~1{script-hash}/get) endpoints respectively.
1781
1858
1782
1859
Note that it is generally a bad idea to fetch **ALL matches** for indexes built off permissive patterns (e.g. `*`), for the server will yield a large response.
1860
+
1861
+
> <sup><strong>TIP</strong></sup> <br/>
1862
+
>
1863
+
> You can customize coins and assets quantities encoding to always be strings instead of integers through the
0 commit comments