@@ -162,7 +162,7 @@ channels:
162
162
Accepts transactions encoded as Base16 CBOR string, TextEnvelope type or JSON.
163
163
payload :
164
164
oneOf :
165
- - $ref : " api.yaml#/components/schemas/RawTransaction "
165
+ - $ref : " api.yaml#/components/schemas/Transaction "
166
166
- $ref : " api.yaml#/components/schemas/TextEnvelopeTransaction"
167
167
bindings :
168
168
http :
@@ -241,7 +241,7 @@ components:
241
241
enum : ["NewTx"]
242
242
transaction :
243
243
oneOf :
244
- - $ref : " api.yaml#/components/schemas/RawTransaction "
244
+ - $ref : " api.yaml#/components/schemas/Transaction "
245
245
- $ref : " api.yaml#/components/schemas/TextEnvelopeTransaction"
246
246
247
247
Close :
@@ -602,7 +602,7 @@ components:
602
602
transaction :
603
603
description : Choose between output formats using the `tx-output` query parameter.
604
604
oneOf :
605
- - $ref : " api.yaml#/components/schemas/RawTransaction "
605
+ - $ref : " api.yaml#/components/schemas/Transaction "
606
606
seq :
607
607
$ref : " api.yaml#/components/schemas/SequenceNumber"
608
608
timestamp :
@@ -637,7 +637,7 @@ components:
637
637
transaction :
638
638
description : Choose between output formats using the `tx-output` query parameter.
639
639
oneOf :
640
- - $ref : " api.yaml#/components/schemas/RawTransaction "
640
+ - $ref : " api.yaml#/components/schemas/Transaction "
641
641
validationError :
642
642
type : object
643
643
properties :
@@ -1344,7 +1344,7 @@ components:
1344
1344
type : string
1345
1345
enum : ["InternalWalletError"]
1346
1346
tx :
1347
- $ref : " api.yaml#/components/schemas/RawTransaction "
1347
+ $ref : " api.yaml#/components/schemas/Transaction "
1348
1348
description : |
1349
1349
A representation of the faulty transaction
1350
1350
reason :
@@ -1639,8 +1639,8 @@ components:
1639
1639
type : integer
1640
1640
minimum : 0
1641
1641
1642
- RawTransaction :
1643
- title : RawTransaction
1642
+ Transaction :
1643
+ title : Transaction
1644
1644
description : |
1645
1645
A CBOR-serialised signed Cardano transaction, encoded in base16.
1646
1646
type : string
@@ -1700,7 +1700,15 @@ components:
1700
1700
description :
1701
1701
type : string
1702
1702
cborHex :
1703
- $ref : " api.yaml#/components/schemas/RawTransaction"
1703
+ $ref : " api.yaml#/components/schemas/Transaction"
1704
+
1705
+ TxId :
1706
+ type : string
1707
+ description : |
1708
+ A Cardano transaction identifier. This is the hex-encoded hash of the
1709
+ transaction's body.
1710
+ pattern : " ^[0-9a-f]{64}"
1711
+ example : " 8df1616d4337ede40bbad2914f12977815234b83951bcce3bfcd735aed3f63e4"
1704
1712
1705
1713
TxIn :
1706
1714
type : string
0 commit comments