Skip to content

Commit 93ff7ea

Browse files
Jared CorduanJaredCorduan
Jared Corduan
authored andcommitted
clarify script integrity hash data further in CDDL
1 parent d9cf28a commit 93ff7ea

File tree

2 files changed

+34
-6
lines changed

2 files changed

+34
-6
lines changed

eras/babbage/test-suite/cddl-files/babbage.cddl

+17-3
Original file line numberDiff line numberDiff line change
@@ -124,21 +124,35 @@ script_data_hash = $hash32
124124
; in (byte-wise) lexical order sorts earlier.
125125
;
126126
; For PlutusV1 (language id 0), the language view is the following:
127-
; - the value of costmdls map at key 0 is encoded as an indefinite length
128-
; list and the result is encoded as a bytestring. (our apologies)
127+
; - the value of costmdls map at key 0 (in other words, the script_integrity_data)
128+
; is encoded as an indefinite length list and the result is encoded as a bytestring.
129+
; (our apologies)
130+
; For example, the script_integrity_data corresponding to the all zero costmodel for V1
131+
; would be encoded as (in hex):
132+
; 58a89f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff
129133
; - the language ID tag is also encoded twice. first as a uint then as
130134
; a bytestring. (our apologies)
135+
; Concretely, this means that the language version for V1 is encoded as
136+
; 4100 in hex.
131137
; For PlutusV2 (language id 1), the language view is the following:
132138
; - the value of costmdls map at key 1 is encoded as an definite length list.
139+
; For example, the script_integrity_data corresponding to the all zero costmodel for V2
140+
; would be encoded as (in hex):
141+
; 98af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
142+
; - the language ID tag is encoded as expected.
143+
; Concretely, this means that the language version for V2 is encoded as
144+
; 01 in hex.
133145
;
134146
; Note that each Plutus language represented inside a transaction must have
135147
; a cost model in the costmdls protocol parameter in order to execute,
136148
; regardless of what the script integrity data is.
137149
;
138150
; Finally, note that in the case that a transaction includes datums but does not
139-
; include any redeemers, the script data format becomes (in hex):
151+
; include the redeemers field, the script data format becomes (in hex):
140152
; [ 80 | datums | A0 ]
141153
; corresponding to a CBOR empty list and an empty map.
154+
; Note that a transaction might include the redeemers field and set it to the
155+
; empty map, in which case the user supplied encoding of the empty map is used.
142156

143157
; address = bytes
144158
; reward_account = bytes

eras/conway/test-suite/cddl-files/conway.cddl

+17-3
Original file line numberDiff line numberDiff line change
@@ -201,21 +201,35 @@ script_data_hash = $hash32
201201
; in (byte-wise) lexical order sorts earlier.
202202
;
203203
; For PlutusV1 (language id 0), the language view is the following:
204-
; - the value of costmdls map at key 0 is encoded as an indefinite length
205-
; list and the result is encoded as a bytestring. (our apologies)
204+
; - the value of costmdls map at key 0 (in other words, the script_integrity_data)
205+
; is encoded as an indefinite length list and the result is encoded as a bytestring.
206+
; (our apologies)
207+
; For example, the script_integrity_data corresponding to the all zero costmodel for V1
208+
; would be encoded as (in hex):
209+
; 58a89f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff
206210
; - the language ID tag is also encoded twice. first as a uint then as
207211
; a bytestring. (our apologies)
212+
; Concretely, this means that the language version for V1 is encoded as
213+
; 4100 in hex.
208214
; For PlutusV2 (language id 1), the language view is the following:
209215
; - the value of costmdls map at key 1 is encoded as an definite length list.
216+
; For example, the script_integrity_data corresponding to the all zero costmodel for V2
217+
; would be encoded as (in hex):
218+
; 98af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
219+
; - the language ID tag is encoded as expected.
220+
; Concretely, this means that the language version for V2 is encoded as
221+
; 01 in hex.
210222
;
211223
; Note that each Plutus language represented inside a transaction must have
212224
; a cost model in the costmdls protocol parameter in order to execute,
213225
; regardless of what the script integrity data is.
214226
;
215227
; Finally, note that in the case that a transaction includes datums but does not
216-
; include any redeemers, the script data format becomes (in hex):
228+
; include the redeemers field, the script data format becomes (in hex):
217229
; [ 80 | datums | A0 ]
218230
; corresponding to a CBOR empty list and an empty map.
231+
; Note that a transaction might include the redeemers field and set it to the
232+
; empty map, in which case the user supplied encoding of the empty map is used.
219233

220234
; address = bytes
221235
; reward_account = bytes

0 commit comments

Comments
 (0)