@easy1staking/cip113-sdk-ts 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/blueprints/standard/v0.3.0/UPSTREAM_PIN.json +30 -0
- package/blueprints/standard/v0.5.0-alpha.2/UPSTREAM_PIN.json +33 -0
- package/blueprints/standard/v0.5.0-alpha.2/plutus.json +1010 -0
- package/blueprints/substandards/dummy/v0.1.0/UPSTREAM_PIN.json +29 -0
- package/blueprints/substandards/dummy/v0.2.0/UPSTREAM_PIN.json +36 -0
- package/blueprints/substandards/dummy/v0.2.0/plutus.json +84 -0
- package/blueprints/substandards/freeze-and-seize/v0.1.0/UPSTREAM_PIN.json +35 -0
- package/dist/core/cip171.d.ts +149 -0
- package/dist/core/cip171.d.ts.map +1 -0
- package/dist/core/cip171.js +284 -0
- package/dist/core/cip171.js.map +1 -0
- package/dist/core/evo-utils.d.ts +125 -17
- package/dist/core/evo-utils.d.ts.map +1 -1
- package/dist/core/evo-utils.js +149 -21
- package/dist/core/evo-utils.js.map +1 -1
- package/dist/core/ledger-order.d.ts +109 -0
- package/dist/core/ledger-order.d.ts.map +1 -0
- package/dist/core/ledger-order.js +185 -0
- package/dist/core/ledger-order.js.map +1 -0
- package/dist/core/registry.d.ts +16 -3
- package/dist/core/registry.d.ts.map +1 -1
- package/dist/core/registry.js +18 -9
- package/dist/core/registry.js.map +1 -1
- package/dist/index.d.ts +26 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +54 -16
- package/dist/index.js.map +1 -1
- package/dist/standard/blueprint.d.ts +48 -1
- package/dist/standard/blueprint.d.ts.map +1 -1
- package/dist/standard/blueprint.js +71 -5
- package/dist/standard/blueprint.js.map +1 -1
- package/dist/standard/scripts.d.ts +76 -27
- package/dist/standard/scripts.d.ts.map +1 -1
- package/dist/standard/scripts.js +177 -49
- package/dist/standard/scripts.js.map +1 -1
- package/dist/substandards/dummy/index.d.ts.map +1 -1
- package/dist/substandards/dummy/index.js +443 -26
- package/dist/substandards/dummy/index.js.map +1 -1
- package/dist/substandards/freeze-and-seize/index.d.ts.map +1 -1
- package/dist/substandards/freeze-and-seize/index.js +283 -41
- package/dist/substandards/freeze-and-seize/index.js.map +1 -1
- package/dist/substandards/interface.d.ts +93 -1
- package/dist/substandards/interface.d.ts.map +1 -1
- package/dist/types.d.ts +87 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -1
|
@@ -0,0 +1,1010 @@
|
|
|
1
|
+
{
|
|
2
|
+
"preamble": {
|
|
3
|
+
"title": "cardano-foundation/cip113-programmable-tokens",
|
|
4
|
+
"description": "Aiken implementation of CIP-113 programmable tokens",
|
|
5
|
+
"version": "0.5.0-alpha.2",
|
|
6
|
+
"plutusVersion": "v3",
|
|
7
|
+
"compiler": {
|
|
8
|
+
"name": "Aiken",
|
|
9
|
+
"version": "v1.1.23+8949565"
|
|
10
|
+
},
|
|
11
|
+
"license": "Apache-2.0"
|
|
12
|
+
},
|
|
13
|
+
"validators": [
|
|
14
|
+
{
|
|
15
|
+
"title": "always_fail.always_fail.spend",
|
|
16
|
+
"datum": {
|
|
17
|
+
"title": "_d",
|
|
18
|
+
"schema": {
|
|
19
|
+
"$ref": "#/definitions/Data"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"redeemer": {
|
|
23
|
+
"title": "_r",
|
|
24
|
+
"schema": {
|
|
25
|
+
"$ref": "#/definitions/Data"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"parameters": [
|
|
29
|
+
{
|
|
30
|
+
"title": "_nonce",
|
|
31
|
+
"schema": {
|
|
32
|
+
"$ref": "#/definitions/ByteArray"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"compiledCode": "585f010100229800aba2aba1aab9eaab9dab9a9bae00248888896600264653001300700198039804000cc01c0092225980099b8748008c020dd500144c8cc898c02c004c02cc030004c024dd50014590070c01c004c010dd5003c52689b2b20041",
|
|
37
|
+
"hash": "e9d8d9c7fc531f0b179d502c86bffee829613c537794dab053ae28fe"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"title": "always_fail.always_fail.else",
|
|
41
|
+
"redeemer": {
|
|
42
|
+
"schema": {}
|
|
43
|
+
},
|
|
44
|
+
"parameters": [
|
|
45
|
+
{
|
|
46
|
+
"title": "_nonce",
|
|
47
|
+
"schema": {
|
|
48
|
+
"$ref": "#/definitions/ByteArray"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"compiledCode": "585f010100229800aba2aba1aab9eaab9dab9a9bae00248888896600264653001300700198039804000cc01c0092225980099b8748008c020dd500144c8cc898c02c004c02cc030004c024dd50014590070c01c004c010dd5003c52689b2b20041",
|
|
53
|
+
"hash": "e9d8d9c7fc531f0b179d502c86bffee829613c537794dab053ae28fe"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"title": "coordination_spend.coordination_spend.spend",
|
|
57
|
+
"datum": {
|
|
58
|
+
"title": "datum",
|
|
59
|
+
"schema": {
|
|
60
|
+
"$ref": "#/definitions/programmable_logic~1params~1ProgrammableLogicGlobalParams"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"redeemer": {
|
|
64
|
+
"title": "_redeemer",
|
|
65
|
+
"schema": {
|
|
66
|
+
"$ref": "#/definitions/Data"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"parameters": [
|
|
70
|
+
{
|
|
71
|
+
"title": "_nonce",
|
|
72
|
+
"schema": {
|
|
73
|
+
"$ref": "#/definitions/ByteArray"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"compiledCode": "5904ac010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae0024888888896600264653001300900198049805000cc0240092225980099b8748008c020dd500144ca6002601a003300d300e0019b874800122259800980098061baa002899912cc004c00cc038dd5000c4cc88cc8966002602e660026eb0c058c04cdd5005919baf301730143754600860286ea800400e26464b300130190018992cc004cc88ca60026038603a00332598009807180c9baa00189bad301a301d3756603a60346ea8006290002030301c0019bab00248896600200315980099baf003005899b894800000a294101a44c96600266ebd301014000301c0018acc004cdc49bad301d30203756603a00200713375e0086e98c08400a294101b456600266e252000003899baf0040068a50406c80d8c07c00501d0ca6002003003911980e8011980e9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980219ba548000cc080c07800d2f5c00031330044c103d87a80000054071198008034006446600c0046604400a002803101c1bae301b0013020003301e00240706eacc018c058dd50009803180b1baa30063016375400f1325980099b8748010c058dd5000c4cc8966002601a60306ea800a2646464646464653001375a6046003375c604600f302300598118024c08c00e60460049111112cc004c0a801e26601c605201826601c00826601c00626601c00426601c0022b30013375e602c604c6ea803cc058c098dd500cc56600266e3cdd7181498131baa00f375c6052604c6ea806626464b3001300130153028375402315980098009815981618161816181618141baa0118992cc004c008c004c0a4dd500944c9660026006600260546ea804e2b30013375e980103d87a80003001302a375402b132332233002002001225980099baf302c30300010038a518998010011818800a0563756605c605e605e605e605e605e605e60566ea808cc008c0a8dd500ec52820508a5040a04605a605c605c605c00314a081388c0b0c0b4c0b4c0b4c0b4c0b400629410264528204c259800980e18139baa001898011bae302b3028375400313002375c605660506ea8005026119b87480e0dc6800c52820488a50409116409c3023001302200130210013020001301f001301e0013019375400516405c6034602e6ea800488c966002601c0031323259800981000140122c80e8dd7180f000980d1baa0038acc004cdc3a40040031323259800981000140122c80e8dd7180f000980d1baa0038b2030406060306ea800a2c80a8c00cc058dd5000c59014180c000c59016198011bac300130143754018466ebcc060c054dd50008021180b980c180c000c59014180a18089baa30013011375400444646600200200644b30010018a5eb8226644b3001300500289980c80119802002000c4cc010010005015180c000980c800a02c3012300f37540024602660280031640346020601a6ea8008c8cc004004dd6180898071baa0062259800800c5300103d87a80008992cc004cdd7980998081baa001006899ba548000cc0480052f5c113300300330140024038602400280822c805860126ea800a2c8038601200260086ea802629344d9590021",
|
|
78
|
+
"hash": "4ee565e02806380747942c2f31f368105386b51349db0dd37cc1cd28"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"title": "coordination_spend.coordination_spend.else",
|
|
82
|
+
"redeemer": {
|
|
83
|
+
"schema": {}
|
|
84
|
+
},
|
|
85
|
+
"parameters": [
|
|
86
|
+
{
|
|
87
|
+
"title": "_nonce",
|
|
88
|
+
"schema": {
|
|
89
|
+
"$ref": "#/definitions/ByteArray"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"compiledCode": "5904ac010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae0024888888896600264653001300900198049805000cc0240092225980099b8748008c020dd500144ca6002601a003300d300e0019b874800122259800980098061baa002899912cc004c00cc038dd5000c4cc88cc8966002602e660026eb0c058c04cdd5005919baf301730143754600860286ea800400e26464b300130190018992cc004cc88ca60026038603a00332598009807180c9baa00189bad301a301d3756603a60346ea8006290002030301c0019bab00248896600200315980099baf003005899b894800000a294101a44c96600266ebd301014000301c0018acc004cdc49bad301d30203756603a00200713375e0086e98c08400a294101b456600266e252000003899baf0040068a50406c80d8c07c00501d0ca6002003003911980e8011980e9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980219ba548000cc080c07800d2f5c00031330044c103d87a80000054071198008034006446600c0046604400a002803101c1bae301b0013020003301e00240706eacc018c058dd50009803180b1baa30063016375400f1325980099b8748010c058dd5000c4cc8966002601a60306ea800a2646464646464653001375a6046003375c604600f302300598118024c08c00e60460049111112cc004c0a801e26601c605201826601c00826601c00626601c00426601c0022b30013375e602c604c6ea803cc058c098dd500cc56600266e3cdd7181498131baa00f375c6052604c6ea806626464b3001300130153028375402315980098009815981618161816181618141baa0118992cc004c008c004c0a4dd500944c9660026006600260546ea804e2b30013375e980103d87a80003001302a375402b132332233002002001225980099baf302c30300010038a518998010011818800a0563756605c605e605e605e605e605e605e60566ea808cc008c0a8dd500ec52820508a5040a04605a605c605c605c00314a081388c0b0c0b4c0b4c0b4c0b4c0b400629410264528204c259800980e18139baa001898011bae302b3028375400313002375c605660506ea8005026119b87480e0dc6800c52820488a50409116409c3023001302200130210013020001301f001301e0013019375400516405c6034602e6ea800488c966002601c0031323259800981000140122c80e8dd7180f000980d1baa0038acc004cdc3a40040031323259800981000140122c80e8dd7180f000980d1baa0038b2030406060306ea800a2c80a8c00cc058dd5000c59014180c000c59016198011bac300130143754018466ebcc060c054dd50008021180b980c180c000c59014180a18089baa30013011375400444646600200200644b30010018a5eb8226644b3001300500289980c80119802002000c4cc010010005015180c000980c800a02c3012300f37540024602660280031640346020601a6ea8008c8cc004004dd6180898071baa0062259800800c5300103d87a80008992cc004cdd7980998081baa001006899ba548000cc0480052f5c113300300330140024038602400280822c805860126ea800a2c8038601200260086ea802629344d9590021",
|
|
94
|
+
"hash": "4ee565e02806380747942c2f31f368105386b51349db0dd37cc1cd28"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"title": "issuance_cbor_hex_mint.issuance_cbor_hex_mint.mint",
|
|
98
|
+
"redeemer": {
|
|
99
|
+
"title": "_redeemer",
|
|
100
|
+
"schema": {
|
|
101
|
+
"$ref": "#/definitions/Data"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"parameters": [
|
|
105
|
+
{
|
|
106
|
+
"title": "utxo_ref",
|
|
107
|
+
"schema": {
|
|
108
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"title": "always_fail_hash",
|
|
113
|
+
"schema": {
|
|
114
|
+
"$ref": "#/definitions/ByteArray"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"compiledCode": "59038a0101002229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e264b300132330010013758601e60186ea800c896600200314a115980099baf3010300d3754602000202b14a31330020023011001402c8072264b30013259800980298061baa0018992cc004c048006264b30013370e90011bad300f001899b8f375c601c00291010f49737375616e636543626f72486578008b201a30110018b201e37566020601a6ea80062c8058c8c8cc004004dd59808980918091809180918071baa0052259800800c00e26464b30013372200e00315980099b8f0070018980319809980880125eb8200a807a266008008602a0068078dd718078009809000a02014c0103d87a8000899192cc004c018c034dd5000c4c8c96600266e1d2004300f375400313259800980498081baa0018991919912cc004c06400e266ebcc060c054dd500398051980b99ba548008cc05cdd480925eb80cc05d300103d87a80004bd704590161bae3016001375c602c004602c00260226ea80062c8078c04cc040dd5000c5900e180198079baa0013011300e375400316403064660020026eb0c008c038dd5002912cc004006298103d87a80008992cc004cc896600200514a11329800980b180b800cc966002601860266ea800626eb4c050c05cdd5980b980a1baa0018a40008090c0580066eac00d22259800800c56600266ebc00c01a26600a0049000452820288992cc004cdd7a60101400030160018acc004cc01800cdd6980b980d1bab3017001899baf004374c603600514a080aa2b30013300600348002266ebc01001e2941015202a3019001405c329800800cdd5980b180b98099baa004911980b8011980b9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980d180c001a5eb80006266008980103d87a80000054059198008034006446600c0046603800a00280310161bae3015001301a0033018002405914a114a114a080b8dd31980919bb0375200c6e98cc048cdd8261104f49737375616e636543626f72486578004c010101004bd6f7b63025eb7bdb1808928c4c014cc0480052f5c113300300330140024038602400280808c040c044c0440062c8050dd2a40011640246eb8c034c028dd5001c590080c024004c010dd5005452689b2b200401",
|
|
119
|
+
"hash": "218be633d9b7c3c2cb9b6d3d63e21fa74bca1fed34a8f1c103f29adc"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"title": "issuance_cbor_hex_mint.issuance_cbor_hex_mint.else",
|
|
123
|
+
"redeemer": {
|
|
124
|
+
"schema": {}
|
|
125
|
+
},
|
|
126
|
+
"parameters": [
|
|
127
|
+
{
|
|
128
|
+
"title": "utxo_ref",
|
|
129
|
+
"schema": {
|
|
130
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"title": "always_fail_hash",
|
|
135
|
+
"schema": {
|
|
136
|
+
"$ref": "#/definitions/ByteArray"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"compiledCode": "59038a0101002229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e264b300132330010013758601e60186ea800c896600200314a115980099baf3010300d3754602000202b14a31330020023011001402c8072264b30013259800980298061baa0018992cc004c048006264b30013370e90011bad300f001899b8f375c601c00291010f49737375616e636543626f72486578008b201a30110018b201e37566020601a6ea80062c8058c8c8cc004004dd59808980918091809180918071baa0052259800800c00e26464b30013372200e00315980099b8f0070018980319809980880125eb8200a807a266008008602a0068078dd718078009809000a02014c0103d87a8000899192cc004c018c034dd5000c4c8c96600266e1d2004300f375400313259800980498081baa0018991919912cc004c06400e266ebcc060c054dd500398051980b99ba548008cc05cdd480925eb80cc05d300103d87a80004bd704590161bae3016001375c602c004602c00260226ea80062c8078c04cc040dd5000c5900e180198079baa0013011300e375400316403064660020026eb0c008c038dd5002912cc004006298103d87a80008992cc004cc896600200514a11329800980b180b800cc966002601860266ea800626eb4c050c05cdd5980b980a1baa0018a40008090c0580066eac00d22259800800c56600266ebc00c01a26600a0049000452820288992cc004cdd7a60101400030160018acc004cc01800cdd6980b980d1bab3017001899baf004374c603600514a080aa2b30013300600348002266ebc01001e2941015202a3019001405c329800800cdd5980b180b98099baa004911980b8011980b9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980d180c001a5eb80006266008980103d87a80000054059198008034006446600c0046603800a00280310161bae3015001301a0033018002405914a114a114a080b8dd31980919bb0375200c6e98cc048cdd8261104f49737375616e636543626f72486578004c010101004bd6f7b63025eb7bdb1808928c4c014cc0480052f5c113300300330140024038602400280808c040c044c0440062c8050dd2a40011640246eb8c034c028dd5001c590080c024004c010dd5005452689b2b200401",
|
|
141
|
+
"hash": "218be633d9b7c3c2cb9b6d3d63e21fa74bca1fed34a8f1c103f29adc"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"title": "issuance_mint.issuance_mint.mint",
|
|
145
|
+
"redeemer": {
|
|
146
|
+
"title": "redeemer",
|
|
147
|
+
"schema": {
|
|
148
|
+
"$ref": "#/definitions/types~1MintingRegistryProof"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"parameters": [
|
|
152
|
+
{
|
|
153
|
+
"title": "programmable_logic_base",
|
|
154
|
+
"schema": {
|
|
155
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"title": "registry_node_cs",
|
|
160
|
+
"schema": {
|
|
161
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"title": "minting_logic_cred",
|
|
166
|
+
"schema": {
|
|
167
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"title": "params_policy",
|
|
172
|
+
"schema": {
|
|
173
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"compiledCode": "590801010100222229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae0049bae002488888888896600264653001300a00198051805800cdc3a4001300a0024888966002600460146ea800e266446644b30013006001899192cc004c05400a0091640486eb4c04c004c03cdd5004456600260060031323259800980a80140122c8090dd6980980098079baa0088b201a40342664464b3001323300100137566028602a602a602a602a602a602a60226ea801c896600200314a115980099baf3011301500101a8a51899801001180b000a020404d13322980091119912cc00400a29422653001301b301c001992cc004c040c060dd5000c4dd6980c980e1bab301c30193754003148001017180d800cdd5801a444b30010018acc004cdd780180344cc01400920008a5040651325980099baf4c01014000301b0018acc004cc01800cdd6980e180f9bab301c001899baf004374c604000514a080d22b30013300600348002266ebc01001e294101a2034301e0014070329800800c01a4466038004660386e980052f5c08008889660020051330014c0103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980f980e801a5eb80006266008980103d87a8000005406d198008034006446600c0046604200a002803101b1bae301a001301f003301d002406d14a114a114a080e0dd31980b99bb037520046e98cc05ccdd81ba90014c010101004bd6f7b63025eb7bdb1808928c8c966002600660266ea80062602e60286ea80062c8090c014c04cdd5000c8896600200514c0103d87a80008acc004c0300062600a6602e603000497ae08cc00400e6032005337009000800a006404c80b24464b3001300c001899192cc004c06c00a0091640606eb8c064004c054dd5001c56600260120031323259800980d80140122c80c0dd7180c800980a9baa0038b2026404c60266ea80092222323322598009806980c1baa0128992cc004c044c064dd5000c5660033001301d301a3754003017807a004805c59018459018198011bac300b3019375401e6eb4c070c064dd500944c8c966002602460346ea80062b300198009807180d9baa301e301b375400301880820068acc004cc8966002602260386ea80062942264b300132598009809980f1baa0018a5089919198008009bac3024302530213754604860426ea800c896600200314a115980099baf00330250018a518998010011813000a040408c601e660426ea00192f5c080e8c8c8cc004004014896600200314c103d87a80008994c004c08400660440033026002488966002602860486ea800e2b30013375e6050604a6ea800c01e2b3001301c302437540051323322598009816000c4c8cc004004dd6181600111192cc00400a260366605a01097ae089919912cc004c09400a26464b30013034002801c590311bad3032001302e3754007159800981100144c8c96600260680050038b2062375a6064002605c6ea800e2c816102c18159baa001130023030003302e00240b060040051640a46eb4c0a4004c0a8004c094dd500145902344cc01801800502344cc0180180050230c09000502219198050008800981098111811000c528c4c8c9660026028603e6ea80062942266e1cdd69811981218101baa30233020375400200e80f0c8cc004004014896600200314c0103d87a80008994c004c08400660440033026002488966002602860486ea800e2b30013375e6050604a6ea800c01e2b3001301c30243754005132323298009bad302b0019bad302b0039bad302b002488966002605e0091301b3302d0084bd7045902c0c0ac004c0a8004c094dd500145902344cc01801800502344cc0180180050230c090005022191980500088009810981118111811000a038301d375460146020603a6ea8c080c074dd5000a0363756603c603e603e603e603e603e603e603e603e603e60366ea8044c8cc004004dd61807980e1baa0122259800800c530103d87a80008992cc00660026eacc044c078dd51808980f1baa00180d52210e50726f746f636f6c506172616d730040311300e330200014bd7044cc00c00cc08800901c1810000a03c8a5180620328b20328b2032330033758601a60346ea8040004dd6980e180c9baa012405c44b300133710002900045300103d87a8000899801801000a02e22259800cc004dd59806980d1baa003801400500844c966002602460346ea80062646464646464653001375c604a003375c604a00f375c604a00d30250049812801cc094009222222598009816003c4cc04cc0ac02c4cc04c00c4cc04c0084cc04c0044cdc79bae302b3028375401c01f1640a4302500130240013023001302200130210013020001301b3754003164064600e0071640606004004374a90001b8748012294100e099198008009bac30023010375400c44b30010018a518acc004c96600266ebcc054c048dd5180a98091baa00101c8992cc004c028c048dd5000c566002601460246ea8c058c04cdd5000c566002b3001300730123754600a60266ea800a2942294501144cdd7a60103d87a800030163017301730173013375400514a0808a2c808a2c8088c014c048dd5180a98091baa0018acc004c8c8cc004004dd59803980a1baa0032259800800c00e26464b30013372201800315980099b8f00c00189bab3017002802a02a899802002180d801a02a375c602a002603000280b052f5bded8c114a314a08099010180a000c4cc008008c054006294100f20242301130120012301130123012001300c375400c6eb8c038c02cdd50019b874800a2c80486014002600a6ea802e29344d95900301",
|
|
178
|
+
"hash": "aae1ba7cc0b2a50ecc069334124d9c4a97df5f122afb8598353a05fd"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"title": "issuance_mint.issuance_mint.else",
|
|
182
|
+
"redeemer": {
|
|
183
|
+
"schema": {}
|
|
184
|
+
},
|
|
185
|
+
"parameters": [
|
|
186
|
+
{
|
|
187
|
+
"title": "programmable_logic_base",
|
|
188
|
+
"schema": {
|
|
189
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"title": "registry_node_cs",
|
|
194
|
+
"schema": {
|
|
195
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"title": "minting_logic_cred",
|
|
200
|
+
"schema": {
|
|
201
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"title": "params_policy",
|
|
206
|
+
"schema": {
|
|
207
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"compiledCode": "590801010100222229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae0049bae002488888888896600264653001300a00198051805800cdc3a4001300a0024888966002600460146ea800e266446644b30013006001899192cc004c05400a0091640486eb4c04c004c03cdd5004456600260060031323259800980a80140122c8090dd6980980098079baa0088b201a40342664464b3001323300100137566028602a602a602a602a602a602a60226ea801c896600200314a115980099baf3011301500101a8a51899801001180b000a020404d13322980091119912cc00400a29422653001301b301c001992cc004c040c060dd5000c4dd6980c980e1bab301c30193754003148001017180d800cdd5801a444b30010018acc004cdd780180344cc01400920008a5040651325980099baf4c01014000301b0018acc004cc01800cdd6980e180f9bab301c001899baf004374c604000514a080d22b30013300600348002266ebc01001e294101a2034301e0014070329800800c01a4466038004660386e980052f5c08008889660020051330014c0103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980f980e801a5eb80006266008980103d87a8000005406d198008034006446600c0046604200a002803101b1bae301a001301f003301d002406d14a114a114a080e0dd31980b99bb037520046e98cc05ccdd81ba90014c010101004bd6f7b63025eb7bdb1808928c8c966002600660266ea80062602e60286ea80062c8090c014c04cdd5000c8896600200514c0103d87a80008acc004c0300062600a6602e603000497ae08cc00400e6032005337009000800a006404c80b24464b3001300c001899192cc004c06c00a0091640606eb8c064004c054dd5001c56600260120031323259800980d80140122c80c0dd7180c800980a9baa0038b2026404c60266ea80092222323322598009806980c1baa0128992cc004c044c064dd5000c5660033001301d301a3754003017807a004805c59018459018198011bac300b3019375401e6eb4c070c064dd500944c8c966002602460346ea80062b300198009807180d9baa301e301b375400301880820068acc004cc8966002602260386ea80062942264b300132598009809980f1baa0018a5089919198008009bac3024302530213754604860426ea800c896600200314a115980099baf00330250018a518998010011813000a040408c601e660426ea00192f5c080e8c8c8cc004004014896600200314c103d87a80008994c004c08400660440033026002488966002602860486ea800e2b30013375e6050604a6ea800c01e2b3001301c302437540051323322598009816000c4c8cc004004dd6181600111192cc00400a260366605a01097ae089919912cc004c09400a26464b30013034002801c590311bad3032001302e3754007159800981100144c8c96600260680050038b2062375a6064002605c6ea800e2c816102c18159baa001130023030003302e00240b060040051640a46eb4c0a4004c0a8004c094dd500145902344cc01801800502344cc0180180050230c09000502219198050008800981098111811000c528c4c8c9660026028603e6ea80062942266e1cdd69811981218101baa30233020375400200e80f0c8cc004004014896600200314c0103d87a80008994c004c08400660440033026002488966002602860486ea800e2b30013375e6050604a6ea800c01e2b3001301c30243754005132323298009bad302b0019bad302b0039bad302b002488966002605e0091301b3302d0084bd7045902c0c0ac004c0a8004c094dd500145902344cc01801800502344cc0180180050230c090005022191980500088009810981118111811000a038301d375460146020603a6ea8c080c074dd5000a0363756603c603e603e603e603e603e603e603e603e603e60366ea8044c8cc004004dd61807980e1baa0122259800800c530103d87a80008992cc00660026eacc044c078dd51808980f1baa00180d52210e50726f746f636f6c506172616d730040311300e330200014bd7044cc00c00cc08800901c1810000a03c8a5180620328b20328b2032330033758601a60346ea8040004dd6980e180c9baa012405c44b300133710002900045300103d87a8000899801801000a02e22259800cc004dd59806980d1baa003801400500844c966002602460346ea80062646464646464653001375c604a003375c604a00f375c604a00d30250049812801cc094009222222598009816003c4cc04cc0ac02c4cc04c00c4cc04c0084cc04c0044cdc79bae302b3028375401c01f1640a4302500130240013023001302200130210013020001301b3754003164064600e0071640606004004374a90001b8748012294100e099198008009bac30023010375400c44b30010018a518acc004c96600266ebcc054c048dd5180a98091baa00101c8992cc004c028c048dd5000c566002601460246ea8c058c04cdd5000c566002b3001300730123754600a60266ea800a2942294501144cdd7a60103d87a800030163017301730173013375400514a0808a2c808a2c8088c014c048dd5180a98091baa0018acc004c8c8cc004004dd59803980a1baa0032259800800c00e26464b30013372201800315980099b8f00c00189bab3017002802a02a899802002180d801a02a375c602a002603000280b052f5bded8c114a314a08099010180a000c4cc008008c054006294100f20242301130120012301130123012001300c375400c6eb8c038c02cdd50019b874800a2c80486014002600a6ea802e29344d95900301",
|
|
212
|
+
"hash": "aae1ba7cc0b2a50ecc069334124d9c4a97df5f122afb8598353a05fd"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"title": "programmable_logic_base.programmable_logic_base.spend",
|
|
216
|
+
"datum": {
|
|
217
|
+
"title": "_datum",
|
|
218
|
+
"schema": {
|
|
219
|
+
"$ref": "#/definitions/Data"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"redeemer": {
|
|
223
|
+
"title": "redeemer",
|
|
224
|
+
"schema": {
|
|
225
|
+
"$ref": "#/definitions/types~1BaseSpendRedeemer"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"parameters": [
|
|
229
|
+
{
|
|
230
|
+
"title": "params_policy",
|
|
231
|
+
"schema": {
|
|
232
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"compiledCode": "59033a010100229800aba2aba1aab9faab9eaab9dab9a9bae002488888896600264653001300800198041804800cdc3a400530080024888966002600460126ea800e266453001300e00298071807801466002444664464b30019800acc004c8c8cc004004dd59802980a1baa30053014375400644b3001001801c4c8c96600266e440500062b30013371e02800313756602e0050054055133004004301a00340546eb8c054004c05c0050160a5eb7bdb18229462941013528528a0208992cc004cdc3a400860246ea8006266ebcc048ca60020033756602c602e602e602e602e602e602e60286ea802e00e80088896600266e2520040018cc00400e60326032005337009001800a0068acc004cdc4a400400319800801cc06400a66e012001001400d1598009805800c4c06000a2c80a10142028300530133754602a60266ea80062c8088c050c054c054c048dd5180198091baa0018b20209800800cdd6180118089baa008802a0022301230130012225980099b894801000633001003980a980a8014cdc024006002801a2b3001337129001000c66002007301500299b80480040050034566002600e003130140028b2020404080824464b30013004001899192cc004c05000a0091640486eb8c048004c03cdd5001c566002600e0031323259800980a00140122c8090dd7180900098079baa0038b201a4034601a6ea800a60166ea8019222598009802000c4ca60026eb4c0480066eb4c048c04c0064646600a00220026026602860280028020c03cdd5004c566002600e00313298009bad30120019bad301230130019191980280088009809980a180a180a000a008300f375401313298009bad30120019bad301230130019191980280088009809980a180a180a180a000a008300f3754012806900d260166ea80192222598009802800c4c8c8cc8966002602e0070068b202a375a60280026eb4c050008c050004c040dd50054566002601000313232332259800980b801c01a2c80a8dd6980a0009bad301400230140013010375401515980099b8748010006264646644b300130170038034590151bad3014001375a6028004602800260206ea802a2c807100e201c18051baa003370e90004590080c020004c010dd5004452689b2b20041",
|
|
237
|
+
"hash": "af228b45d78e6f3b12cb8a4a12db8a7f236b130876398c5570c179a6"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"title": "programmable_logic_base.programmable_logic_base.else",
|
|
241
|
+
"redeemer": {
|
|
242
|
+
"schema": {}
|
|
243
|
+
},
|
|
244
|
+
"parameters": [
|
|
245
|
+
{
|
|
246
|
+
"title": "params_policy",
|
|
247
|
+
"schema": {
|
|
248
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"compiledCode": "59033a010100229800aba2aba1aab9faab9eaab9dab9a9bae002488888896600264653001300800198041804800cdc3a400530080024888966002600460126ea800e266453001300e00298071807801466002444664464b30019800acc004c8c8cc004004dd59802980a1baa30053014375400644b3001001801c4c8c96600266e440500062b30013371e02800313756602e0050054055133004004301a00340546eb8c054004c05c0050160a5eb7bdb18229462941013528528a0208992cc004cdc3a400860246ea8006266ebcc048ca60020033756602c602e602e602e602e602e602e60286ea802e00e80088896600266e2520040018cc00400e60326032005337009001800a0068acc004cdc4a400400319800801cc06400a66e012001001400d1598009805800c4c06000a2c80a10142028300530133754602a60266ea80062c8088c050c054c054c048dd5180198091baa0018b20209800800cdd6180118089baa008802a0022301230130012225980099b894801000633001003980a980a8014cdc024006002801a2b3001337129001000c66002007301500299b80480040050034566002600e003130140028b2020404080824464b30013004001899192cc004c05000a0091640486eb8c048004c03cdd5001c566002600e0031323259800980a00140122c8090dd7180900098079baa0038b201a4034601a6ea800a60166ea8019222598009802000c4ca60026eb4c0480066eb4c048c04c0064646600a00220026026602860280028020c03cdd5004c566002600e00313298009bad30120019bad301230130019191980280088009809980a180a180a000a008300f375401313298009bad30120019bad301230130019191980280088009809980a180a180a180a000a008300f3754012806900d260166ea80192222598009802800c4c8c8cc8966002602e0070068b202a375a60280026eb4c050008c050004c040dd50054566002601000313232332259800980b801c01a2c80a8dd6980a0009bad301400230140013010375401515980099b8748010006264646644b300130170038034590151bad3014001375a6028004602800260206ea802a2c807100e201c18051baa003370e90004590080c020004c010dd5004452689b2b20041",
|
|
253
|
+
"hash": "af228b45d78e6f3b12cb8a4a12db8a7f236b130876398c5570c179a6"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"title": "protocol_params_mint.protocol_params_mint.mint",
|
|
257
|
+
"redeemer": {
|
|
258
|
+
"title": "_redeemer",
|
|
259
|
+
"schema": {
|
|
260
|
+
"$ref": "#/definitions/Data"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"parameters": [
|
|
264
|
+
{
|
|
265
|
+
"title": "utxo_ref",
|
|
266
|
+
"schema": {
|
|
267
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"title": "coordination_addr_hash",
|
|
272
|
+
"schema": {
|
|
273
|
+
"$ref": "#/definitions/ByteArray"
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"compiledCode": "5904160101002229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e264b300132330010013758601e60186ea800c896600200314a115980099baf3010300d3754602000202b14a31330020023011001402c8072264b30013259800980298061baa0018992cc004c048006264b30013370e90011bad300f001899b8f375c601c00291010e50726f746f636f6c506172616d73008b201a30110018b201e37566020601a6ea80062c8058c8c8cc004004dd59808980918091809180918071baa0052259800800c00e26464b30013372200e00315980099b8f0070018980319809980880125eb8200a807a266008008602a0068078dd718078009809000a02014c0103d87a8000899192cc004c018c034dd5000c4c8c96600266e1d2004300f37540031332259800980518089baa0018991919191919194c004dd6980e000cdd7180e003cc0700166038009301c003980e0012444444b300130230078998079811006099807802099807801899807801099807800899baf3022301f375402260286604266e95200233021375203897ae0330214c0103d87a80004bd704590200c070004c06c004c068004c064004c060004c05c004c048dd5000c5901011192cc004c02c00626464b300130190028024590161bae30170013013375400715980099b874800800626464b300130190028024590161bae3017001301337540071640448088c044dd5001180998081baa0018b201c3003300f37540026022601c6ea80062c8060c8cc004004dd6180118071baa0052259800800c530103d87a80008992cc004cc896600200514a11329800980b180b800cc966002601860266ea800626eb4c050c05cdd5980b980a1baa0018a40008090c0580066eac00d22259800800c56600266ebc00c01a26600a0049000452820288992cc004cdd7a60101400030160018acc004cc01800cdd6980b980d1bab3017001899baf004374c603600514a080aa2b30013300600348002266ebc01001e2941015202a3019001405c329800800cdd5980b180b98099baa004911980b8011980b9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980d180c001a5eb80006266008980103d87a80000054059198008034006446600c0046603800a00280310161bae3015001301a0033018002405914a114a114a080b8dd31980919bb0375200c6e98cc048cdd82610f4e50726f746f636f6c506172616d73004c010101004bd6f7b63025eb7bdb1808928c4c014cc0480052f5c113300300330140024038602400280808c040c044c0440062c8050dd2a40011640246eb8c034c028dd5001c590080c024004c010dd5005452689b2b200401",
|
|
278
|
+
"hash": "2255479ebfc5ffd42f9e1d96bf09eb5d039a0a53de6a191a8abf39f6"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"title": "protocol_params_mint.protocol_params_mint.else",
|
|
282
|
+
"redeemer": {
|
|
283
|
+
"schema": {}
|
|
284
|
+
},
|
|
285
|
+
"parameters": [
|
|
286
|
+
{
|
|
287
|
+
"title": "utxo_ref",
|
|
288
|
+
"schema": {
|
|
289
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"title": "coordination_addr_hash",
|
|
294
|
+
"schema": {
|
|
295
|
+
"$ref": "#/definitions/ByteArray"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"compiledCode": "5904160101002229800aba4aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e264b300132330010013758601e60186ea800c896600200314a115980099baf3010300d3754602000202b14a31330020023011001402c8072264b30013259800980298061baa0018992cc004c048006264b30013370e90011bad300f001899b8f375c601c00291010e50726f746f636f6c506172616d73008b201a30110018b201e37566020601a6ea80062c8058c8c8cc004004dd59808980918091809180918071baa0052259800800c00e26464b30013372200e00315980099b8f0070018980319809980880125eb8200a807a266008008602a0068078dd718078009809000a02014c0103d87a8000899192cc004c018c034dd5000c4c8c96600266e1d2004300f37540031332259800980518089baa0018991919191919194c004dd6980e000cdd7180e003cc0700166038009301c003980e0012444444b300130230078998079811006099807802099807801899807801099807800899baf3022301f375402260286604266e95200233021375203897ae0330214c0103d87a80004bd704590200c070004c06c004c068004c064004c060004c05c004c048dd5000c5901011192cc004c02c00626464b300130190028024590161bae30170013013375400715980099b874800800626464b300130190028024590161bae3017001301337540071640448088c044dd5001180998081baa0018b201c3003300f37540026022601c6ea80062c8060c8cc004004dd6180118071baa0052259800800c530103d87a80008992cc004cc896600200514a11329800980b180b800cc966002601860266ea800626eb4c050c05cdd5980b980a1baa0018a40008090c0580066eac00d22259800800c56600266ebc00c01a26600a0049000452820288992cc004cdd7a60101400030160018acc004cc01800cdd6980b980d1bab3017001899baf004374c603600514a080aa2b30013300600348002266ebc01001e2941015202a3019001405c329800800cdd5980b180b98099baa004911980b8011980b9ba60014bd7020022225980080144cc005300103d87a80004bd6f7b63044c8cc896600266e452201000028acc004cdc7a4410000289980218069980d180c001a5eb80006266008980103d87a80000054059198008034006446600c0046603800a00280310161bae3015001301a0033018002405914a114a114a080b8dd31980919bb0375200c6e98cc048cdd82610f4e50726f746f636f6c506172616d73004c010101004bd6f7b63025eb7bdb1808928c4c014cc0480052f5c113300300330140024038602400280808c040c044c0440062c8050dd2a40011640246eb8c034c028dd5001c590080c024004c010dd5005452689b2b200401",
|
|
300
|
+
"hash": "2255479ebfc5ffd42f9e1d96bf09eb5d039a0a53de6a191a8abf39f6"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"title": "registry_mint.registry_mint.mint",
|
|
304
|
+
"redeemer": {
|
|
305
|
+
"title": "redeemer",
|
|
306
|
+
"schema": {
|
|
307
|
+
"$ref": "#/definitions/types~1RegistryRedeemer"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"parameters": [
|
|
311
|
+
{
|
|
312
|
+
"title": "utxo_ref",
|
|
313
|
+
"schema": {
|
|
314
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"title": "issuance_cbor_hex_cs",
|
|
319
|
+
"schema": {
|
|
320
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"title": "registry_spend_cred",
|
|
325
|
+
"schema": {
|
|
326
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
],
|
|
330
|
+
"compiledCode": "59078501010022229800aba2aba1aba0aab9faab9eaab9dab9a9bae0034888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e26466446644b300130070018acc004c03cdd5004c00a2c80822b3001300500189919912cc004c05800626600e602a00200b16404c6eb8c04c004c050004c03cdd5004c5900d201a198009180898091809000c8c044c048c048c0480064602260240032259800980398071baa0028991919191919194c004dd7180c800cdd7180c803cdd7180c8034c06401260320073019002488888966002604000f133011301f00b13301100313301100213301100100e8b203a180c800980c000980b800980b000980a800980a00098079baa0028b201a911919800800980a001912cc00400629422b30013371e6eb8c040c05000400e2946266004004602a0028079012488c8cc00400400c896600200314bd7044cc8966002600a00513301500233004004001899802002000a02230140013015001404923011301230123012301200191191919800800802112cc004006007132325980099b910060018acc004cdc7803000c4dd5980a001401501244cc010010c06000d0121bae30120013015001404c297adef6c60488888888c8cc89660026020602e6ea804a2b300132330010013758603860326ea8040896600200314a115980099baf301d301a3754603a00204514a3133002002301e001406080da264b3001301d0018acc004cdd7a613ad8799f40581effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8799f40ffd8799f40ffd8799f40ffd8799f40ff40ff009800980e000c03666e9520003301b01f3301b4c103d87a80004bd702006899b8f48900330023756600c60326ea8040036294101745901a198031bac300b3018375401e4660106eacc028c064dd5000806c528202c8994c004dd7180e000cc070c0740066008601460326ea8c8cc004004dd61805980d1baa011223259800cc00566002660106eacc034c070dd51806980e1baa0010198a518a5040754a14a280d2200313300300330200024068603c0029112cc004c050c06cdd5000c4c8c8cc89660026048007159800acc004c058c07cdd500344cdc79bc833714911010300337146eb8c08cc080dd500299b8a375c604660406ea8018dd7180898101baa0050078b203c8992cc004c8cc004004dd5980118111baa0192259800800c528456600266ebcc088c0980040262946266004004604e0028109024456600266e3ccc028dd5980718109baa0180150088992cc004c098006264646602800226464b3001302a0018999119baf3233223259800cc00401a027375c603a60586ea8026024800a200b159800cc004016027375c603a60586ea8026024800a200d1640a8815088896600266e3cdd7181918179baa0040038acc004cdc79bae3020302f375400800515980098039bae3032302f3754009159800acc004c01cdd7181018179baa0048a51899b8f4891effffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00375c6040605e6ea801102d4566002600c6042605e6ea80122b30013006301c302f375400915980099baf3022302f37540080031598009803181118179baa0048acc00566002604e6e34dd7180798179baa0048a51898039bae300f302f3754008816a2b30013375e980105d8799f40ff003005302f375400914a3130063005302f3754008816a294102d4528205a8a5040b514a0816a294102d4528205a8a5040b514a0816a294102d12cc004c088c0a4dd5000c4c008dd7181698151baa001898011bae302d302a375400281408c0b4c0b8c0b8c0b8c0b8c0b80048cdc3a40706e34004c8cdd2a4000660566058002660566ea4040c0b4c0b4004c0a0dd5002cc004c0a400a035302930263754602e604c6ea80110104c004c0a4006035302930263754602e604c6ea80110104590271814800998091bac3017302437540364660286eacc058c094dd500080c9807180a18119baa00130250018b20463300f3758604860426ea80608cc044dd5980998111baa30133022375400202d16407d16407c46048604a604a604a604a604a604a0031640791640846eb8c084004dd718108011810800980e1baa0018b2034180c1baa0124058444b30013375e603860326ea800c0062b3001300f30183754601660326ea800e264b3001301e0018992cc004cdc79bae301a0010048992cc004c08000626464b30013014375a603c0051323300f00115980099b90375c6044603e6ea8004dd71808180f9baa0018acc004cdc78011bae3022301f375400310018b203a8b203a30090088b2038375c6038002603e0031640746eacc06c0062c80c8c0740062c80d8c074dd59805180c9baa0038b202e8b202e223259800980e800c4c96600260206eb4c06800626eb8c0640062c80c0c0700062c80d0cc0100080048c96600266e1d2004301637540031301a301737540031640546012602c6ea800460186ea801c88c966002600c0031323259800980a00140122c8088dd7180900098071baa0038acc004c01000626464b300130140028024590111bae3012001300e37540071640308060c030dd50011bae300e300b37540086e1d20028b2010180480098021baa0098a4d1365640081",
|
|
331
|
+
"hash": "647da5bc02568ac680690908a226d55d7d8f236f4299bcfae1f37e69"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"title": "registry_mint.registry_mint.else",
|
|
335
|
+
"redeemer": {
|
|
336
|
+
"schema": {}
|
|
337
|
+
},
|
|
338
|
+
"parameters": [
|
|
339
|
+
{
|
|
340
|
+
"title": "utxo_ref",
|
|
341
|
+
"schema": {
|
|
342
|
+
"$ref": "#/definitions/cardano~1transaction~1OutputReference"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"title": "issuance_cbor_hex_cs",
|
|
347
|
+
"schema": {
|
|
348
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"title": "registry_spend_cred",
|
|
353
|
+
"schema": {
|
|
354
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"compiledCode": "59078501010022229800aba2aba1aba0aab9faab9eaab9dab9a9bae0034888888896600264653001300900198049805000cdc3a400130090024888966002600460126ea800e26466446644b300130070018acc004c03cdd5004c00a2c80822b3001300500189919912cc004c05800626600e602a00200b16404c6eb8c04c004c050004c03cdd5004c5900d201a198009180898091809000c8c044c048c048c0480064602260240032259800980398071baa0028991919191919194c004dd7180c800cdd7180c803cdd7180c8034c06401260320073019002488888966002604000f133011301f00b13301100313301100213301100100e8b203a180c800980c000980b800980b000980a800980a00098079baa0028b201a911919800800980a001912cc00400629422b30013371e6eb8c040c05000400e2946266004004602a0028079012488c8cc00400400c896600200314bd7044cc8966002600a00513301500233004004001899802002000a02230140013015001404923011301230123012301200191191919800800802112cc004006007132325980099b910060018acc004cdc7803000c4dd5980a001401501244cc010010c06000d0121bae30120013015001404c297adef6c60488888888c8cc89660026020602e6ea804a2b300132330010013758603860326ea8040896600200314a115980099baf301d301a3754603a00204514a3133002002301e001406080da264b3001301d0018acc004cdd7a613ad8799f40581effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8799f40ffd8799f40ffd8799f40ffd8799f40ff40ff009800980e000c03666e9520003301b01f3301b4c103d87a80004bd702006899b8f48900330023756600c60326ea8040036294101745901a198031bac300b3018375401e4660106eacc028c064dd5000806c528202c8994c004dd7180e000cc070c0740066008601460326ea8c8cc004004dd61805980d1baa011223259800cc00566002660106eacc034c070dd51806980e1baa0010198a518a5040754a14a280d2200313300300330200024068603c0029112cc004c050c06cdd5000c4c8c8cc89660026048007159800acc004c058c07cdd500344cdc79bc833714911010300337146eb8c08cc080dd500299b8a375c604660406ea8018dd7180898101baa0050078b203c8992cc004c8cc004004dd5980118111baa0192259800800c528456600266ebcc088c0980040262946266004004604e0028109024456600266e3ccc028dd5980718109baa0180150088992cc004c098006264646602800226464b3001302a0018999119baf3233223259800cc00401a027375c603a60586ea8026024800a200b159800cc004016027375c603a60586ea8026024800a200d1640a8815088896600266e3cdd7181918179baa0040038acc004cdc79bae3020302f375400800515980098039bae3032302f3754009159800acc004c01cdd7181018179baa0048a51899b8f4891effffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00375c6040605e6ea801102d4566002600c6042605e6ea80122b30013006301c302f375400915980099baf3022302f37540080031598009803181118179baa0048acc00566002604e6e34dd7180798179baa0048a51898039bae300f302f3754008816a2b30013375e980105d8799f40ff003005302f375400914a3130063005302f3754008816a294102d4528205a8a5040b514a0816a294102d4528205a8a5040b514a0816a294102d12cc004c088c0a4dd5000c4c008dd7181698151baa001898011bae302d302a375400281408c0b4c0b8c0b8c0b8c0b8c0b80048cdc3a40706e34004c8cdd2a4000660566058002660566ea4040c0b4c0b4004c0a0dd5002cc004c0a400a035302930263754602e604c6ea80110104c004c0a4006035302930263754602e604c6ea80110104590271814800998091bac3017302437540364660286eacc058c094dd500080c9807180a18119baa00130250018b20463300f3758604860426ea80608cc044dd5980998111baa30133022375400202d16407d16407c46048604a604a604a604a604a604a0031640791640846eb8c084004dd718108011810800980e1baa0018b2034180c1baa0124058444b30013375e603860326ea800c0062b3001300f30183754601660326ea800e264b3001301e0018992cc004cdc79bae301a0010048992cc004c08000626464b30013014375a603c0051323300f00115980099b90375c6044603e6ea8004dd71808180f9baa0018acc004cdc78011bae3022301f375400310018b203a8b203a30090088b2038375c6038002603e0031640746eacc06c0062c80c8c0740062c80d8c074dd59805180c9baa0038b202e8b202e223259800980e800c4c96600260206eb4c06800626eb8c0640062c80c0c0700062c80d0cc0100080048c96600266e1d2004301637540031301a301737540031640546012602c6ea800460186ea801c88c966002600c0031323259800980a00140122c8088dd7180900098071baa0038acc004c01000626464b300130140028024590111bae3012001300e37540071640308060c030dd50011bae300e300b37540086e1d20028b2010180480098021baa0098a4d1365640081",
|
|
359
|
+
"hash": "647da5bc02568ac680690908a226d55d7d8f236f4299bcfae1f37e69"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"title": "registry_spend.registry_spend.spend",
|
|
363
|
+
"datum": {
|
|
364
|
+
"title": "datum",
|
|
365
|
+
"schema": {
|
|
366
|
+
"$ref": "#/definitions/registry_node~1RegistryNode"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"redeemer": {
|
|
370
|
+
"title": "_redeemer",
|
|
371
|
+
"schema": {
|
|
372
|
+
"$ref": "#/definitions/Data"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"parameters": [
|
|
376
|
+
{
|
|
377
|
+
"title": "protocol_params_cs",
|
|
378
|
+
"schema": {
|
|
379
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"compiledCode": "590618010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae0024888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a375400722323300100130110032259800800c528456600266e3cdd718069808800801c528c4cc008008c04800500c201e918071807800cdd2a4001370e9000244444653001330013758600860206ea801c8cc018dd5980298089baa30053011375400201d3013301400698098032444b3001300530123754007132323322598009804980b1baa0028991919191919194c004dd69810800cdd71810803cc0840166042009302100398108012444444b3001302800789980718138060998070020998070018998070010998070008992cc004c05cc090dd500a44cc89660033001323322330020020012259800800c52844c96600266e40004012266006006605e00513371e0080028148dd718149816800a0563756600460506ea807cdd7181518139baa002a50a51409513259800980d18139baa0018992cc004c0b4006266e212000375a605260580031640a86eacc0acc0a0dd5000c4c966002603660506ea8006264b3001302e001899912cc004ca60024b30013020302d375400313002375c6062605c6ea8006260046eb8c0c4c0b8dd5000a058992cc004cdd7981898171baa0013031302e37546044605c6ea8c0c4c0b8dd50034566002604c605a6ea8c010c0b8dd5000c4c96600260660031325980099b8f375c605e00201913259800981a800c4c8c96600260566eb4c0cc00a264b300130263033375400313232323232323298009bae303e0019bae303e0079bae303e006981f0024c0f800e607c0049111112cc004c11401e26605660880162660560062660560042660560022b3001337206eb8c110c104dd50071bae30353041375401d15980099b8f00f375c608860826ea803a201d1640fd1640fd164108303e001303d001303c001303b001303a0013039001303437540031640c8603e00d1640c46eb8c0c4004c0d00062c8190dd59818000c5902e1819000c5903018191bab3022302e37540031640b11640b06060009230313032303230323032303200148896600266ebc008c08ccc0c8c0ccc0c0dd500599819181218181baa00b33032301d3030375401666064600c60606ea8008cc0c8c028c0c0dd500119819180098181baa0023303230053030375400497ae08acc004c00cc018c0c0dd500145660026006601460606ea800a2b30015980098111b8d375c600a60606ea800a2946260086eb8c014c0c0dd5001205c8acc004cdd7a6105d8799f40ff0030013030375400514a3130033001303037540048172294102e4528205c8a5040b914a08170466e1d2038371a003159800981218159baa3019302c375400f1323322330020020012259800800c528456600266ebc00cc0b8c0c80062946266004004606600281690301bab3002302d3754048603260586ea801e294102a452820542302e302f302f302f0012302e302f302f302f302f302f302f0018b205632330010013758602e60546ea8084896600200314bd7044cc8966002660446eacc084c0b4dd5001004c4cc0bc008cc0100100062660080080028158c0b8004c0bc00502c4590271980c9bac302b3028375403e466ebcc0b0c0a4dd500080ba04c3232330010013756600660526ea80808966002003003899192cc004cdc8804000c56600266e3c0200062603e6605c605800497ae0802a0548998020021818001a054375c6054002605a00281585300103d87a80008b204a30283025375402846052605460546054605400316408c6eb8c09cc090dd5007c590250c084004c080004c07c004c078004c074004c070004c05cdd500145901518009804980a9baa30183015375400a4464b3001300a001899192cc004c07800a00916406c6eb8c070004c060dd5001c56600260200031323259800980f00140122c80d8dd7180e000980c1baa0038b202c4058602c6ea80088c96600266e1d20043015375400313019301637540031640506004602a6ea80048c05cc060c0600062c808844646600200200644b30010018a6103d87a80008992cc004c0100062600e6602c00297ae0899801801980c0012024301600140508b2010180480098021baa0098a4d13656400801",
|
|
384
|
+
"hash": "3b7a6c0057c40e5cbdb3add6255acca5b716ade651b52ee2304ed7c1"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"title": "registry_spend.registry_spend.else",
|
|
388
|
+
"redeemer": {
|
|
389
|
+
"schema": {}
|
|
390
|
+
},
|
|
391
|
+
"parameters": [
|
|
392
|
+
{
|
|
393
|
+
"title": "protocol_params_cs",
|
|
394
|
+
"schema": {
|
|
395
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
"compiledCode": "590618010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae0024888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a375400722323300100130110032259800800c528456600266e3cdd718069808800801c528c4cc008008c04800500c201e918071807800cdd2a4001370e9000244444653001330013758600860206ea801c8cc018dd5980298089baa30053011375400201d3013301400698098032444b3001300530123754007132323322598009804980b1baa0028991919191919194c004dd69810800cdd71810803cc0840166042009302100398108012444444b3001302800789980718138060998070020998070018998070010998070008992cc004c05cc090dd500a44cc89660033001323322330020020012259800800c52844c96600266e40004012266006006605e00513371e0080028148dd718149816800a0563756600460506ea807cdd7181518139baa002a50a51409513259800980d18139baa0018992cc004c0b4006266e212000375a605260580031640a86eacc0acc0a0dd5000c4c966002603660506ea8006264b3001302e001899912cc004ca60024b30013020302d375400313002375c6062605c6ea8006260046eb8c0c4c0b8dd5000a058992cc004cdd7981898171baa0013031302e37546044605c6ea8c0c4c0b8dd50034566002604c605a6ea8c010c0b8dd5000c4c96600260660031325980099b8f375c605e00201913259800981a800c4c8c96600260566eb4c0cc00a264b300130263033375400313232323232323298009bae303e0019bae303e0079bae303e006981f0024c0f800e607c0049111112cc004c11401e26605660880162660560062660560042660560022b3001337206eb8c110c104dd50071bae30353041375401d15980099b8f00f375c608860826ea803a201d1640fd1640fd164108303e001303d001303c001303b001303a0013039001303437540031640c8603e00d1640c46eb8c0c4004c0d00062c8190dd59818000c5902e1819000c5903018191bab3022302e37540031640b11640b06060009230313032303230323032303200148896600266ebc008c08ccc0c8c0ccc0c0dd500599819181218181baa00b33032301d3030375401666064600c60606ea8008cc0c8c028c0c0dd500119819180098181baa0023303230053030375400497ae08acc004c00cc018c0c0dd500145660026006601460606ea800a2b30015980098111b8d375c600a60606ea800a2946260086eb8c014c0c0dd5001205c8acc004cdd7a6105d8799f40ff0030013030375400514a3130033001303037540048172294102e4528205c8a5040b914a08170466e1d2038371a003159800981218159baa3019302c375400f1323322330020020012259800800c528456600266ebc00cc0b8c0c80062946266004004606600281690301bab3002302d3754048603260586ea801e294102a452820542302e302f302f302f0012302e302f302f302f302f302f302f0018b205632330010013758602e60546ea8084896600200314bd7044cc8966002660446eacc084c0b4dd5001004c4cc0bc008cc0100100062660080080028158c0b8004c0bc00502c4590271980c9bac302b3028375403e466ebcc0b0c0a4dd500080ba04c3232330010013756600660526ea80808966002003003899192cc004cdc8804000c56600266e3c0200062603e6605c605800497ae0802a0548998020021818001a054375c6054002605a00281585300103d87a80008b204a30283025375402846052605460546054605400316408c6eb8c09cc090dd5007c590250c084004c080004c07c004c078004c074004c070004c05cdd500145901518009804980a9baa30183015375400a4464b3001300a001899192cc004c07800a00916406c6eb8c070004c060dd5001c56600260200031323259800980f00140122c80d8dd7180e000980c1baa0038b202c4058602c6ea80088c96600266e1d20043015375400313019301637540031640506004602a6ea80048c05cc060c0600062c808844646600200200644b30010018a6103d87a80008992cc004c0100062600e6602c00297ae0899801801980c0012024301600140508b2010180480098021baa0098a4d13656400801",
|
|
400
|
+
"hash": "3b7a6c0057c40e5cbdb3add6255acca5b716ade651b52ee2304ed7c1"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"title": "third_party.third_party.withdraw",
|
|
404
|
+
"redeemer": {
|
|
405
|
+
"title": "redeemer",
|
|
406
|
+
"schema": {
|
|
407
|
+
"$ref": "#/definitions/types~1ThirdPartyRedeemer"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"parameters": [
|
|
411
|
+
{
|
|
412
|
+
"title": "params_policy",
|
|
413
|
+
"schema": {
|
|
414
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"compiledCode": "5907e6010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224602e6030003259800800c528c528202a91191919800800802112cc004006007132325980099b910060018acc004cdc7803000c4dd5980d001401501844cc010010c07800d0181bae3018001301b0014064297adef6c609180a1baa0019180b980c180c000cdc024002911111119914c004dd6980f8014dd6980f9810001660020033758601060386ea804a6eb4c07c0250012444b300198009805198049bab300b301f37546016603e6ea800407294294501d44c9660026030603e6ea8006330013009302330203754003223259800980d000c4c8c96600260520050048b204c375c604e00260466ea800e2b30013370e9001000c4c8c96600260520050048b204c375c604e00260466ea800e2c810902118109baa00291812181298129812800c8896600200314a313322323300100100522325980099b8f375c604e00a6eb8c09c0062b3001337126eb4c0a0014dd69814000c66002011302c00280220108a504099133003003302c00240986054002604c002604e002812244653001001801c0090011112cc00400a2003132332298008034c0b0016646600200200a44b300100189981619bb037520086ea000d2f5bded8c113233225980099b910070028acc004cdc780380144c96600266e1c004cdc0a400000f100289981819bb037520106ea0cdc00008038012058375a605a00713302f337606ea401cdd4003002205689981780199802802800a056375c6054002605e004605a00281590061bae3025001375a604c0026050004813244465300100180252f5bded8c080088896600200519800800d2f5bded8c14bd6f7b630200889919912cc004cdc800100446600200d00199815801802200c8acc004cdc780100446600200937566052007001401d1980080252f5bded8c1005401c81390271bae3026001302b0033029002409d22325980099b8f488100375c6044003132598009814000c4cc00cdd69812181380098140024590251bab30230018b204230250024888888a60026008009225980099192cc004cdc3a400400314a11598009811000c528c4cdc49b8d3766605c60566ea800800d029205230293754002602260526ea800a266ebd300103d87a800030073029375400514a0813a646600e00220026054605600f323259800981018141baa0018992cc004cdc79bae3029302d302e3756602c60546ea8c058c0a8dd50009bae302d00a8992cc004c08cc0a8dd5000c4c0b8c0acdd5000c59029180918151baa3016302a37540031640a0605860526ea80062c81396600266e2003120008a6103d87a80008cc0040066eb0c050c0a0dd500f4031001204c222598008014530103d87a80008acc004c084006266e9520003302c302d0024bd70466002007302e0029808800a00640a0815a6eb4c0a8c0acc0acc0acc0acc0acc0ac01d222223233223300e00115980099198008009bab30333034303430343034303430343030375404c44b30013375e6060606800200714a3133002002303500140bd1329800800cdd6180c18181baa026809d2f5bded8c0800888896600266e2400920008994c0040066eb0c0dcc0d0dd501540126603c6eacc0dcc0e0c0e0c0e0c0e0c0d0dd5015003c009001111112cc00401226602265300100180240090011112cc00400a200319800801cc0fc00a64b30013375e607e60786ea8c0fcc0f0dd5000809c4c966002606860786ea80062b30013034303c37546080607a6ea80062b30013301500201289980c998139bab3029303d37540040200071640ed1640ed1640ec605060786ea8c0fcc0f0dd5000c400903a181f001200640f0005133225980099baf303d303a3754607a60746ea8008046264b30013375e607c60766ea8004c0f8c0ecdd5001c56600266ebcc08cc0ecdd50009811981d9baa0038acc004cdd7980c981d9baa0013019303b37540071330153756604e60766ea800c88cc05cdd59814981e9baa003225980099b890040028cc00400e02522298008024056444b300198009818002d28528a0868acc0056600266ebcdd30031ba6003899baf374c0086e98006294104346600202500c98248084cc08403c0166604200401c80922c821a2c821901d20348b207a8b20728b20728b2072303d0058cc00401e003005802400d0072070303b303c303837546076008607800881ca2646644b30013375e6072606c6ea8c0e4c0d8dd5000806c4c966002605c606c6ea80062b3001302e303637546074606e6ea80062b30013300f00200c8980199809802998109bab3023303737540040151640d51640d51640d46044606c6ea8c0e4c0d8dd5000c4c00801103414c00401a005301c004800a00c3037004303700340c51640b46eb8c0c0004c0c0c0c4c0c4c0c4c0c4004c0540088b203c3007301f37546016603e6ea80062c80e8603c00e444b3001337129002000c660020073021302100299b804800c005003456600266e2520020018cc00400e60420053004001400d159800980a000c4c08000a2c80d901b20364590140c04c004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
419
|
+
"hash": "65f526caca0e1b869c4ff90f31a54482c99dab85011ad4569038a829"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"title": "third_party.third_party.publish",
|
|
423
|
+
"redeemer": {
|
|
424
|
+
"title": "_r",
|
|
425
|
+
"schema": {
|
|
426
|
+
"$ref": "#/definitions/Data"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"parameters": [
|
|
430
|
+
{
|
|
431
|
+
"title": "params_policy",
|
|
432
|
+
"schema": {
|
|
433
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"compiledCode": "5907e6010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224602e6030003259800800c528c528202a91191919800800802112cc004006007132325980099b910060018acc004cdc7803000c4dd5980d001401501844cc010010c07800d0181bae3018001301b0014064297adef6c609180a1baa0019180b980c180c000cdc024002911111119914c004dd6980f8014dd6980f9810001660020033758601060386ea804a6eb4c07c0250012444b300198009805198049bab300b301f37546016603e6ea800407294294501d44c9660026030603e6ea8006330013009302330203754003223259800980d000c4c8c96600260520050048b204c375c604e00260466ea800e2b30013370e9001000c4c8c96600260520050048b204c375c604e00260466ea800e2c810902118109baa00291812181298129812800c8896600200314a313322323300100100522325980099b8f375c604e00a6eb8c09c0062b3001337126eb4c0a0014dd69814000c66002011302c00280220108a504099133003003302c00240986054002604c002604e002812244653001001801c0090011112cc00400a2003132332298008034c0b0016646600200200a44b300100189981619bb037520086ea000d2f5bded8c113233225980099b910070028acc004cdc780380144c96600266e1c004cdc0a400000f100289981819bb037520106ea0cdc00008038012058375a605a00713302f337606ea401cdd4003002205689981780199802802800a056375c6054002605e004605a00281590061bae3025001375a604c0026050004813244465300100180252f5bded8c080088896600200519800800d2f5bded8c14bd6f7b630200889919912cc004cdc800100446600200d00199815801802200c8acc004cdc780100446600200937566052007001401d1980080252f5bded8c1005401c81390271bae3026001302b0033029002409d22325980099b8f488100375c6044003132598009814000c4cc00cdd69812181380098140024590251bab30230018b204230250024888888a60026008009225980099192cc004cdc3a400400314a11598009811000c528c4cdc49b8d3766605c60566ea800800d029205230293754002602260526ea800a266ebd300103d87a800030073029375400514a0813a646600e00220026054605600f323259800981018141baa0018992cc004cdc79bae3029302d302e3756602c60546ea8c058c0a8dd50009bae302d00a8992cc004c08cc0a8dd5000c4c0b8c0acdd5000c59029180918151baa3016302a37540031640a0605860526ea80062c81396600266e2003120008a6103d87a80008cc0040066eb0c050c0a0dd500f4031001204c222598008014530103d87a80008acc004c084006266e9520003302c302d0024bd70466002007302e0029808800a00640a0815a6eb4c0a8c0acc0acc0acc0acc0acc0ac01d222223233223300e00115980099198008009bab30333034303430343034303430343030375404c44b30013375e6060606800200714a3133002002303500140bd1329800800cdd6180c18181baa026809d2f5bded8c0800888896600266e2400920008994c0040066eb0c0dcc0d0dd501540126603c6eacc0dcc0e0c0e0c0e0c0e0c0d0dd5015003c009001111112cc00401226602265300100180240090011112cc00400a200319800801cc0fc00a64b30013375e607e60786ea8c0fcc0f0dd5000809c4c966002606860786ea80062b30013034303c37546080607a6ea80062b30013301500201289980c998139bab3029303d37540040200071640ed1640ed1640ec605060786ea8c0fcc0f0dd5000c400903a181f001200640f0005133225980099baf303d303a3754607a60746ea8008046264b30013375e607c60766ea8004c0f8c0ecdd5001c56600266ebcc08cc0ecdd50009811981d9baa0038acc004cdd7980c981d9baa0013019303b37540071330153756604e60766ea800c88cc05cdd59814981e9baa003225980099b890040028cc00400e02522298008024056444b300198009818002d28528a0868acc0056600266ebcdd30031ba6003899baf374c0086e98006294104346600202500c98248084cc08403c0166604200401c80922c821a2c821901d20348b207a8b20728b20728b2072303d0058cc00401e003005802400d0072070303b303c303837546076008607800881ca2646644b30013375e6072606c6ea8c0e4c0d8dd5000806c4c966002605c606c6ea80062b3001302e303637546074606e6ea80062b30013300f00200c8980199809802998109bab3023303737540040151640d51640d51640d46044606c6ea8c0e4c0d8dd5000c4c00801103414c00401a005301c004800a00c3037004303700340c51640b46eb8c0c0004c0c0c0c4c0c4c0c4c0c4004c0540088b203c3007301f37546016603e6ea80062c80e8603c00e444b3001337129002000c660020073021302100299b804800c005003456600266e2520020018cc00400e60420053004001400d159800980a000c4c08000a2c80d901b20364590140c04c004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
438
|
+
"hash": "65f526caca0e1b869c4ff90f31a54482c99dab85011ad4569038a829"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"title": "third_party.third_party.else",
|
|
442
|
+
"redeemer": {
|
|
443
|
+
"schema": {}
|
|
444
|
+
},
|
|
445
|
+
"parameters": [
|
|
446
|
+
{
|
|
447
|
+
"title": "params_policy",
|
|
448
|
+
"schema": {
|
|
449
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
],
|
|
453
|
+
"compiledCode": "5907e6010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224602e6030003259800800c528c528202a91191919800800802112cc004006007132325980099b910060018acc004cdc7803000c4dd5980d001401501844cc010010c07800d0181bae3018001301b0014064297adef6c609180a1baa0019180b980c180c000cdc024002911111119914c004dd6980f8014dd6980f9810001660020033758601060386ea804a6eb4c07c0250012444b300198009805198049bab300b301f37546016603e6ea800407294294501d44c9660026030603e6ea8006330013009302330203754003223259800980d000c4c8c96600260520050048b204c375c604e00260466ea800e2b30013370e9001000c4c8c96600260520050048b204c375c604e00260466ea800e2c810902118109baa00291812181298129812800c8896600200314a313322323300100100522325980099b8f375c604e00a6eb8c09c0062b3001337126eb4c0a0014dd69814000c66002011302c00280220108a504099133003003302c00240986054002604c002604e002812244653001001801c0090011112cc00400a2003132332298008034c0b0016646600200200a44b300100189981619bb037520086ea000d2f5bded8c113233225980099b910070028acc004cdc780380144c96600266e1c004cdc0a400000f100289981819bb037520106ea0cdc00008038012058375a605a00713302f337606ea401cdd4003002205689981780199802802800a056375c6054002605e004605a00281590061bae3025001375a604c0026050004813244465300100180252f5bded8c080088896600200519800800d2f5bded8c14bd6f7b630200889919912cc004cdc800100446600200d00199815801802200c8acc004cdc780100446600200937566052007001401d1980080252f5bded8c1005401c81390271bae3026001302b0033029002409d22325980099b8f488100375c6044003132598009814000c4cc00cdd69812181380098140024590251bab30230018b204230250024888888a60026008009225980099192cc004cdc3a400400314a11598009811000c528c4cdc49b8d3766605c60566ea800800d029205230293754002602260526ea800a266ebd300103d87a800030073029375400514a0813a646600e00220026054605600f323259800981018141baa0018992cc004cdc79bae3029302d302e3756602c60546ea8c058c0a8dd50009bae302d00a8992cc004c08cc0a8dd5000c4c0b8c0acdd5000c59029180918151baa3016302a37540031640a0605860526ea80062c81396600266e2003120008a6103d87a80008cc0040066eb0c050c0a0dd500f4031001204c222598008014530103d87a80008acc004c084006266e9520003302c302d0024bd70466002007302e0029808800a00640a0815a6eb4c0a8c0acc0acc0acc0acc0acc0ac01d222223233223300e00115980099198008009bab30333034303430343034303430343030375404c44b30013375e6060606800200714a3133002002303500140bd1329800800cdd6180c18181baa026809d2f5bded8c0800888896600266e2400920008994c0040066eb0c0dcc0d0dd501540126603c6eacc0dcc0e0c0e0c0e0c0e0c0d0dd5015003c009001111112cc00401226602265300100180240090011112cc00400a200319800801cc0fc00a64b30013375e607e60786ea8c0fcc0f0dd5000809c4c966002606860786ea80062b30013034303c37546080607a6ea80062b30013301500201289980c998139bab3029303d37540040200071640ed1640ed1640ec605060786ea8c0fcc0f0dd5000c400903a181f001200640f0005133225980099baf303d303a3754607a60746ea8008046264b30013375e607c60766ea8004c0f8c0ecdd5001c56600266ebcc08cc0ecdd50009811981d9baa0038acc004cdd7980c981d9baa0013019303b37540071330153756604e60766ea800c88cc05cdd59814981e9baa003225980099b890040028cc00400e02522298008024056444b300198009818002d28528a0868acc0056600266ebcdd30031ba6003899baf374c0086e98006294104346600202500c98248084cc08403c0166604200401c80922c821a2c821901d20348b207a8b20728b20728b2072303d0058cc00401e003005802400d0072070303b303c303837546076008607800881ca2646644b30013375e6072606c6ea8c0e4c0d8dd5000806c4c966002605c606c6ea80062b3001302e303637546074606e6ea80062b30013300f00200c8980199809802998109bab3023303737540040151640d51640d51640d46044606c6ea8c0e4c0d8dd5000c4c00801103414c00401a005301c004800a00c3037004303700340c51640b46eb8c0c0004c0c0c0c4c0c4c0c4c0c4004c0540088b203c3007301f37546016603e6ea80062c80e8603c00e444b3001337129002000c660020073021302100299b804800c005003456600266e2520020018cc00400e60420053004001400d159800980a000c4c08000a2c80d901b20364590140c04c004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
454
|
+
"hash": "65f526caca0e1b869c4ff90f31a54482c99dab85011ad4569038a829"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"title": "transfer.transfer.withdraw",
|
|
458
|
+
"redeemer": {
|
|
459
|
+
"title": "redeemer",
|
|
460
|
+
"schema": {
|
|
461
|
+
"$ref": "#/definitions/types~1TransferRedeemer"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"parameters": [
|
|
465
|
+
{
|
|
466
|
+
"title": "params_policy",
|
|
467
|
+
"schema": {
|
|
468
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
],
|
|
472
|
+
"compiledCode": "5908e8010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8cc896600260280031323300100137586028004446644b30010038cc004c050dd5004c8c060c064c0640064602a6ea80064603060320032225980099b894801000633001003980d980d8014cdc024006002801a2b3001337129001000c66002007301b00299b80480040050034566002601c0031301a0028b202a405480a9222223259800cc005660026464660020026eacc014c070dd51802980e1baa0032259800800c00e26464b30013372203800315980099b8f01c00189bab301f002802a03a8998020021811801a03a375c603a002604000280f052f5bded8c114a314a080da94294501844c966002602660346ea8006330013005301e301b3754003223259800980a800c4c8c96600260480050048b2042375c6044002603c6ea800e2b3001300b001899192cc004c09000a0091640846eb8c088004c078dd5001c5901c2038301c375400522329800800c00e004800888966002005100189919914c00401a604e00b32330010010052259800800c4cc09ccdd81ba9004375000697adef6c6089919912cc004cdc8803801456600266e3c01c00a264b30013370e00266e052000007880144cc0accdd81ba9008375066e0000401c0090271bad302800389981519bb0375200e6ea001801102644cc0a800ccc0140140050261bae3025001302a002302800140988030dd718100009bad30210013023002408522259800800c528c4cc88c8cc00400401488c96600266e3cdd718110029bae30220018acc004cdc49bad3023005375a6046003198008044c09c00a0088042294102144cc00c00cc09c009021181280098108009811000a03e9180f981018101810181018101810000c8896600200310028994c0040124b30013375e00400314a313004001407930230024010603a604200280f922222298009112cc00400a2003132332298008034c0ac016646600200200a44b300100189981599bb037520086e9800d2f5bded8c113233225980099b910070028acc004cdc780380144cc0b8cdd81ba9007374c6601e00c6eacc0b000c00626605c66ec0dd48039ba600600440a913302e0033300500500140a86eb8c0a4004c0b8008c0b000502a200c375c60480026eacc094004c09c00902548896600200310028acc00400a297adef6c608994c004dd71812000cdd59812800cc0a400d22232329800800c01e97adef6c604004444b30010028cc00400697adef6c60a5eb7bdb18100444c8cc896600266e4000802a33001006800ccc0c400c011006456600266e3c00802a330010049bab302f003800a00e8cc00401297adef6c60802a00e40b48168dd7181600098188019817801205a2223302d598008014401e266ec0dd48031ba63300e00200540b1300100a802400500a0c09c009025204a9801801cc004006646600c00220026048604a00d32329800800d20009bac300c302337540332640044444b30010028800c4ca600200b3370090010024c0ac00e4b30013370e00a00315980099b8f375c604e605660586eacc044c0a0dd5180898141baa0020078992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180998141baa3011302837540051640991300300140988028c0a40090271bae30240069bad3024302530253025302530253025006981018121bab30023021375402e91111111194c004888ca6002003004801a002222598008014400633001003981a00166002606600523300800230353756603460626ea800620028021003206299803119baf001003302e3756601660546ea8082601001091119baf4c1018000374e6530010019bac3031303201a998014c004dd6181898171baa024a5eb7bdb18244464b30013375e606a60646ea8c0d4c0c8dd5000806c4c8c010008c966002605460646ea8006264b3001302b3033375400313259800acc004c0b0c0d0dd5000c4c8c8cc004004dd6181d181d981d981d981d981d981d981d981d981b9baa02d225980099b8f375c607600200714a3133002002303c00140d86eb8c0e0c0d4dd5000c4c028005033440062c8198c0dcc0d0dd5000c59032181b18199baa0018b2062301b30323754606a60646ea80060048180c068c0c4dd5001a008375660626064606460646064605c6ea8093300137586032605c6ea809297adef6c609112cc004cdd7981a18189baa30343031375400601913259800981498189baa0018acc004c0a4c0c4dd5181a98191baa0018acc005660026464b300130210018a508acc004c0ac0062946266e24dc69bb330373034375400401a819103218191baa001301d3032375400913375e980103d87a800030353036303630363032375400914a08182260060091640c11640c11640c0603460626ea8c0d0c0c4dd5001c00502f200840044444b30010028801c4ca60026eb8c0c40066eacc0c8006606a00930360034888966002605a606a6ea800a26466446603a0022b30013371e00400f1598009807000c66002019303d00b80256600266ebd300101a000374c00d10098991980080080511192cc004cdc78051bae303b0018acc004cc064dd5981e000804c4c10000a2c81d2266006006608000481d0c0f800503720188b206e8b206e375c60740026074607660766076002604060206eb4c0e4c0d8dd500144c96600266e40dd7181d000802c56600266e40014dd7181d181d800c66002015303b009801401d00a459035459035181018081bad30393036375400481a06068004819060100104590191802980d1baa3003301a375400316406130010019bac30023019375401f375a603800a8009132332259800980700144c8c966002603a0050038b2034375a6036002602e6ea800e2b30013004002899192cc004c07400a0071640686eb4c06c004c05cdd5001c59015202a30143754002260066032008602e00680a8c008008dc3a40051640446eb4c044004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
473
|
+
"hash": "a0af5477a21bbbf6dcd8e41a67d25ed45893055b66268f03a25fb18e"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"title": "transfer.transfer.publish",
|
|
477
|
+
"redeemer": {
|
|
478
|
+
"title": "_r",
|
|
479
|
+
"schema": {
|
|
480
|
+
"$ref": "#/definitions/Data"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"parameters": [
|
|
484
|
+
{
|
|
485
|
+
"title": "params_policy",
|
|
486
|
+
"schema": {
|
|
487
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
],
|
|
491
|
+
"compiledCode": "5908e8010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8cc896600260280031323300100137586028004446644b30010038cc004c050dd5004c8c060c064c0640064602a6ea80064603060320032225980099b894801000633001003980d980d8014cdc024006002801a2b3001337129001000c66002007301b00299b80480040050034566002601c0031301a0028b202a405480a9222223259800cc005660026464660020026eacc014c070dd51802980e1baa0032259800800c00e26464b30013372203800315980099b8f01c00189bab301f002802a03a8998020021811801a03a375c603a002604000280f052f5bded8c114a314a080da94294501844c966002602660346ea8006330013005301e301b3754003223259800980a800c4c8c96600260480050048b2042375c6044002603c6ea800e2b3001300b001899192cc004c09000a0091640846eb8c088004c078dd5001c5901c2038301c375400522329800800c00e004800888966002005100189919914c00401a604e00b32330010010052259800800c4cc09ccdd81ba9004375000697adef6c6089919912cc004cdc8803801456600266e3c01c00a264b30013370e00266e052000007880144cc0accdd81ba9008375066e0000401c0090271bad302800389981519bb0375200e6ea001801102644cc0a800ccc0140140050261bae3025001302a002302800140988030dd718100009bad30210013023002408522259800800c528c4cc88c8cc00400401488c96600266e3cdd718110029bae30220018acc004cdc49bad3023005375a6046003198008044c09c00a0088042294102144cc00c00cc09c009021181280098108009811000a03e9180f981018101810181018101810000c8896600200310028994c0040124b30013375e00400314a313004001407930230024010603a604200280f922222298009112cc00400a2003132332298008034c0ac016646600200200a44b300100189981599bb037520086e9800d2f5bded8c113233225980099b910070028acc004cdc780380144cc0b8cdd81ba9007374c6601e00c6eacc0b000c00626605c66ec0dd48039ba600600440a913302e0033300500500140a86eb8c0a4004c0b8008c0b000502a200c375c60480026eacc094004c09c00902548896600200310028acc00400a297adef6c608994c004dd71812000cdd59812800cc0a400d22232329800800c01e97adef6c604004444b30010028cc00400697adef6c60a5eb7bdb18100444c8cc896600266e4000802a33001006800ccc0c400c011006456600266e3c00802a330010049bab302f003800a00e8cc00401297adef6c60802a00e40b48168dd7181600098188019817801205a2223302d598008014401e266ec0dd48031ba63300e00200540b1300100a802400500a0c09c009025204a9801801cc004006646600c00220026048604a00d32329800800d20009bac300c302337540332640044444b30010028800c4ca600200b3370090010024c0ac00e4b30013370e00a00315980099b8f375c604e605660586eacc044c0a0dd5180898141baa0020078992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180998141baa3011302837540051640991300300140988028c0a40090271bae30240069bad3024302530253025302530253025006981018121bab30023021375402e91111111194c004888ca6002003004801a002222598008014400633001003981a00166002606600523300800230353756603460626ea800620028021003206299803119baf001003302e3756601660546ea8082601001091119baf4c1018000374e6530010019bac3031303201a998014c004dd6181898171baa024a5eb7bdb18244464b30013375e606a60646ea8c0d4c0c8dd5000806c4c8c010008c966002605460646ea8006264b3001302b3033375400313259800acc004c0b0c0d0dd5000c4c8c8cc004004dd6181d181d981d981d981d981d981d981d981d981b9baa02d225980099b8f375c607600200714a3133002002303c00140d86eb8c0e0c0d4dd5000c4c028005033440062c8198c0dcc0d0dd5000c59032181b18199baa0018b2062301b30323754606a60646ea80060048180c068c0c4dd5001a008375660626064606460646064605c6ea8093300137586032605c6ea809297adef6c609112cc004cdd7981a18189baa30343031375400601913259800981498189baa0018acc004c0a4c0c4dd5181a98191baa0018acc005660026464b300130210018a508acc004c0ac0062946266e24dc69bb330373034375400401a819103218191baa001301d3032375400913375e980103d87a800030353036303630363032375400914a08182260060091640c11640c11640c0603460626ea8c0d0c0c4dd5001c00502f200840044444b30010028801c4ca60026eb8c0c40066eacc0c8006606a00930360034888966002605a606a6ea800a26466446603a0022b30013371e00400f1598009807000c66002019303d00b80256600266ebd300101a000374c00d10098991980080080511192cc004cdc78051bae303b0018acc004cc064dd5981e000804c4c10000a2c81d2266006006608000481d0c0f800503720188b206e8b206e375c60740026074607660766076002604060206eb4c0e4c0d8dd500144c96600266e40dd7181d000802c56600266e40014dd7181d181d800c66002015303b009801401d00a459035459035181018081bad30393036375400481a06068004819060100104590191802980d1baa3003301a375400316406130010019bac30023019375401f375a603800a8009132332259800980700144c8c966002603a0050038b2034375a6036002602e6ea800e2b30013004002899192cc004c07400a0071640686eb4c06c004c05cdd5001c59015202a30143754002260066032008602e00680a8c008008dc3a40051640446eb4c044004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
492
|
+
"hash": "a0af5477a21bbbf6dcd8e41a67d25ed45893055b66268f03a25fb18e"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"title": "transfer.transfer.else",
|
|
496
|
+
"redeemer": {
|
|
497
|
+
"schema": {}
|
|
498
|
+
},
|
|
499
|
+
"parameters": [
|
|
500
|
+
{
|
|
501
|
+
"title": "params_policy",
|
|
502
|
+
"schema": {
|
|
503
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
"compiledCode": "5908e8010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8cc896600260280031323300100137586028004446644b30010038cc004c050dd5004c8c060c064c0640064602a6ea80064603060320032225980099b894801000633001003980d980d8014cdc024006002801a2b3001337129001000c66002007301b00299b80480040050034566002601c0031301a0028b202a405480a9222223259800cc005660026464660020026eacc014c070dd51802980e1baa0032259800800c00e26464b30013372203800315980099b8f01c00189bab301f002802a03a8998020021811801a03a375c603a002604000280f052f5bded8c114a314a080da94294501844c966002602660346ea8006330013005301e301b3754003223259800980a800c4c8c96600260480050048b2042375c6044002603c6ea800e2b3001300b001899192cc004c09000a0091640846eb8c088004c078dd5001c5901c2038301c375400522329800800c00e004800888966002005100189919914c00401a604e00b32330010010052259800800c4cc09ccdd81ba9004375000697adef6c6089919912cc004cdc8803801456600266e3c01c00a264b30013370e00266e052000007880144cc0accdd81ba9008375066e0000401c0090271bad302800389981519bb0375200e6ea001801102644cc0a800ccc0140140050261bae3025001302a002302800140988030dd718100009bad30210013023002408522259800800c528c4cc88c8cc00400401488c96600266e3cdd718110029bae30220018acc004cdc49bad3023005375a6046003198008044c09c00a0088042294102144cc00c00cc09c009021181280098108009811000a03e9180f981018101810181018101810000c8896600200310028994c0040124b30013375e00400314a313004001407930230024010603a604200280f922222298009112cc00400a2003132332298008034c0ac016646600200200a44b300100189981599bb037520086e9800d2f5bded8c113233225980099b910070028acc004cdc780380144cc0b8cdd81ba9007374c6601e00c6eacc0b000c00626605c66ec0dd48039ba600600440a913302e0033300500500140a86eb8c0a4004c0b8008c0b000502a200c375c60480026eacc094004c09c00902548896600200310028acc00400a297adef6c608994c004dd71812000cdd59812800cc0a400d22232329800800c01e97adef6c604004444b30010028cc00400697adef6c60a5eb7bdb18100444c8cc896600266e4000802a33001006800ccc0c400c011006456600266e3c00802a330010049bab302f003800a00e8cc00401297adef6c60802a00e40b48168dd7181600098188019817801205a2223302d598008014401e266ec0dd48031ba63300e00200540b1300100a802400500a0c09c009025204a9801801cc004006646600c00220026048604a00d32329800800d20009bac300c302337540332640044444b30010028800c4ca600200b3370090010024c0ac00e4b30013370e00a00315980099b8f375c604e605660586eacc044c0a0dd5180898141baa0020078992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180998141baa3011302837540051640991300300140988028c0a40090271bae30240069bad3024302530253025302530253025006981018121bab30023021375402e91111111194c004888ca6002003004801a002222598008014400633001003981a00166002606600523300800230353756603460626ea800620028021003206299803119baf001003302e3756601660546ea8082601001091119baf4c1018000374e6530010019bac3031303201a998014c004dd6181898171baa024a5eb7bdb18244464b30013375e606a60646ea8c0d4c0c8dd5000806c4c8c010008c966002605460646ea8006264b3001302b3033375400313259800acc004c0b0c0d0dd5000c4c8c8cc004004dd6181d181d981d981d981d981d981d981d981d981b9baa02d225980099b8f375c607600200714a3133002002303c00140d86eb8c0e0c0d4dd5000c4c028005033440062c8198c0dcc0d0dd5000c59032181b18199baa0018b2062301b30323754606a60646ea80060048180c068c0c4dd5001a008375660626064606460646064605c6ea8093300137586032605c6ea809297adef6c609112cc004cdd7981a18189baa30343031375400601913259800981498189baa0018acc004c0a4c0c4dd5181a98191baa0018acc005660026464b300130210018a508acc004c0ac0062946266e24dc69bb330373034375400401a819103218191baa001301d3032375400913375e980103d87a800030353036303630363032375400914a08182260060091640c11640c11640c0603460626ea8c0d0c0c4dd5001c00502f200840044444b30010028801c4ca60026eb8c0c40066eacc0c8006606a00930360034888966002605a606a6ea800a26466446603a0022b30013371e00400f1598009807000c66002019303d00b80256600266ebd300101a000374c00d10098991980080080511192cc004cdc78051bae303b0018acc004cc064dd5981e000804c4c10000a2c81d2266006006608000481d0c0f800503720188b206e8b206e375c60740026074607660766076002604060206eb4c0e4c0d8dd500144c96600266e40dd7181d000802c56600266e40014dd7181d181d800c66002015303b009801401d00a459035459035181018081bad30393036375400481a06068004819060100104590191802980d1baa3003301a375400316406130010019bac30023019375401f375a603800a8009132332259800980700144c8c966002603a0050038b2034375a6036002602e6ea800e2b30013004002899192cc004c07400a0071640686eb4c06c004c05cdd5001c59015202a30143754002260066032008602e00680a8c008008dc3a40051640446eb4c044004c048004c034dd500145900b180798061baa0068acc004cdc3a400c00b1323259800980298069baa301130120028a518a5040306eb4c040004c030dd500345900a201418049805000980480098021baa0098a4d13656400801",
|
|
508
|
+
"hash": "a0af5477a21bbbf6dcd8e41a67d25ed45893055b66268f03a25fb18e"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"title": "unfracking.unfracking.withdraw",
|
|
512
|
+
"redeemer": {
|
|
513
|
+
"title": "redeemer",
|
|
514
|
+
"schema": {
|
|
515
|
+
"$ref": "#/definitions/types~1UnfrackingRedeemer"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"parameters": [
|
|
519
|
+
{
|
|
520
|
+
"title": "params_policy",
|
|
521
|
+
"schema": {
|
|
522
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
],
|
|
526
|
+
"compiledCode": "5907a1010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224464646600200200844b3001001801c4c8c96600266e440180062b30013371e00c0031375660340050054061133004004301e00340606eb8c060004c06c0050190a5eb7bdb182460286ea80064602e603000323017301830180019b8048005222222332298009bad301e0029bad301e301f002cc0040066eb0c014c06cdd5008cdd6980f0042002488966003300159800998051bab3008301e37546010603c6ea800406e2946294101f528528a0388992cc004c05cc078dd5000c6600260146044603e6ea80064464b30013019001899192cc004c0a000a0091640946eb8c098004c088dd5001c56600266e1d2002001899192cc004c0a000a0091640946eb8c098004c088dd5001c590202040302037540052302330243024302400191194c0040060070024004444b30010028800c4c8cc8a600200d302b0059919800800802912cc00400626605666ec0dd48021ba80034bd6f7b63044c8cc896600266e4401c00a2b30013371e00e0051325980099b87001337029000003c400a26605e66ec0dd48041ba83370000200e0048158dd69816001c4cc0b8cdd81ba9007375000c008815226605c0066600a00a0028150dd7181480098170011816000a05440186eb8c090004dd698128009813801204a911919800800801912cc004cdd798111813000801c528c4cc008008c09c00502148c08cc090c090c090c090c090c0900052222229800912cc004c8c96600266e1d20020018a508acc004c0800062946266e24dc69bb3302c30293754004006813902718139baa00130103027375400513375e980103d87a800030063027375400514a0812a646600c00220026050605200d323259800980f18131baa0018992cc004cdc79bae3027302b302c3756602460506ea8c048c0a0dd50009bae302b0098992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180898141baa3012302837540031640986054604e6ea80062c81296600266e2002d20008a6103d87a80008cc0040066eb0c040c098dd500e402d0012048222598008014530103d87a80008acc004c07c006266e9520003302a302b0024bd70466002007302c0029808000a0064098814a6eb4c0a0c0a4c0a4c0a4c0a4c0a4c0a401922225980099baf4c101a000302c302d302d302d302d3029375403f13233223300c001159800998049bab3008302c3754044003132329800800cdd6180b98171baa02480952f5bded8c0800888896600266e2400920008994c0040066eb0c0d4c0c8dd5014401297adef6c6040044444b3001003899baf374c653001001801c0190011112cc00400a200319800801cc0f000a64b30013375e607860726ea80040362b30013301400101189980b998129bab30233039375400201e0051640dd100240dc607600480190391ba6001899912cc004cdd7981d181b9baa303a3037375400402315980099baf303a303737540040171325980099baf303b30383754002607660706ea800e2b30013375e604260706ea8004c084c0e0dd5001c56600266ebcc05cc0e0dd5000980b981c1baa0038cc00401e005303c0059980b002194c004006607a6eacc08cc0e4dd50024c0f4dd59811981c9baa0024004444653001375c607600337566078003304000348896600266e3c00c0562b30013375e6e98004dd3002c400a2c81ea2b30013375e6e98cc104cdd81ba9003374c00497adef6c60374c66082608400a97adef6c608cc00401e0033043005401d1640f481e8607c004803a2c81b22c81b22c81b0c0e80122c81aa33001006800c0120068031035181c181c981a9baa3038003303900340d913233225980099baf3037303437540020111598009980780080644c008cc048010cc080dd5980f181a1baa00100a8b206489801002206429800803400a60360090014018606a008606a0068178cc88cc88cc0080080048966002003168992cc004cdd7981a18189baa30343031375400201713230353032375400464b300130293031375400313259800981518191baa0018992cc00566002605660666ea8006264646600200201444b30013371e6eb8c0e800400e2946266004004607600281a8dd7181b981a1baa001899808803800a0648800c59032181b18199baa0018b20623035303237540031640c0603660626ea8c0d0c0c4dd5000c4cc00c00cc0d400902f180d18181baa303300140c46eb0c0c4c0b8dd50121bac302f30303030303030303030303030303030302c37540446eacc020c0b0dd501145902a1bae302d001302d302e302e302e302e302e00130140028b204e22c80e8c01cc078dd51804180f1baa0018b2038180e8031112cc004cdc4a400800319800801cc080c08000a66e012003001400d15980099b89480080063300100398100014c010005003456600260260031301f0028b2034406880d116405030130013012001300d375400516402c601e60186ea801a2b30013370e9003002c4c8c966002600a601a6ea8c044c04800a2946294100c1bad3010001300c375400d164028805060126014002601200260086ea802629344d9590021",
|
|
527
|
+
"hash": "810fcc63f84896de370748f6b1d13958d511178178abadd84a1a0c1e"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"title": "unfracking.unfracking.publish",
|
|
531
|
+
"redeemer": {
|
|
532
|
+
"title": "_r",
|
|
533
|
+
"schema": {
|
|
534
|
+
"$ref": "#/definitions/Data"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"parameters": [
|
|
538
|
+
{
|
|
539
|
+
"title": "params_policy",
|
|
540
|
+
"schema": {
|
|
541
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"compiledCode": "5907a1010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224464646600200200844b3001001801c4c8c96600266e440180062b30013371e00c0031375660340050054061133004004301e00340606eb8c060004c06c0050190a5eb7bdb182460286ea80064602e603000323017301830180019b8048005222222332298009bad301e0029bad301e301f002cc0040066eb0c014c06cdd5008cdd6980f0042002488966003300159800998051bab3008301e37546010603c6ea800406e2946294101f528528a0388992cc004c05cc078dd5000c6600260146044603e6ea80064464b30013019001899192cc004c0a000a0091640946eb8c098004c088dd5001c56600266e1d2002001899192cc004c0a000a0091640946eb8c098004c088dd5001c590202040302037540052302330243024302400191194c0040060070024004444b30010028800c4c8cc8a600200d302b0059919800800802912cc00400626605666ec0dd48021ba80034bd6f7b63044c8cc896600266e4401c00a2b30013371e00e0051325980099b87001337029000003c400a26605e66ec0dd48041ba83370000200e0048158dd69816001c4cc0b8cdd81ba9007375000c008815226605c0066600a00a0028150dd7181480098170011816000a05440186eb8c090004dd698128009813801204a911919800800801912cc004cdd798111813000801c528c4cc008008c09c00502148c08cc090c090c090c090c090c0900052222229800912cc004c8c96600266e1d20020018a508acc004c0800062946266e24dc69bb3302c30293754004006813902718139baa00130103027375400513375e980103d87a800030063027375400514a0812a646600c00220026050605200d323259800980f18131baa0018992cc004cdc79bae3027302b302c3756602460506ea8c048c0a0dd50009bae302b0098992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180898141baa3012302837540031640986054604e6ea80062c81296600266e2002d20008a6103d87a80008cc0040066eb0c040c098dd500e402d0012048222598008014530103d87a80008acc004c07c006266e9520003302a302b0024bd70466002007302c0029808000a0064098814a6eb4c0a0c0a4c0a4c0a4c0a4c0a4c0a401922225980099baf4c101a000302c302d302d302d302d3029375403f13233223300c001159800998049bab3008302c3754044003132329800800cdd6180b98171baa02480952f5bded8c0800888896600266e2400920008994c0040066eb0c0d4c0c8dd5014401297adef6c6040044444b3001003899baf374c653001001801c0190011112cc00400a200319800801cc0f000a64b30013375e607860726ea80040362b30013301400101189980b998129bab30233039375400201e0051640dd100240dc607600480190391ba6001899912cc004cdd7981d181b9baa303a3037375400402315980099baf303a303737540040171325980099baf303b30383754002607660706ea800e2b30013375e604260706ea8004c084c0e0dd5001c56600266ebcc05cc0e0dd5000980b981c1baa0038cc00401e005303c0059980b002194c004006607a6eacc08cc0e4dd50024c0f4dd59811981c9baa0024004444653001375c607600337566078003304000348896600266e3c00c0562b30013375e6e98004dd3002c400a2c81ea2b30013375e6e98cc104cdd81ba9003374c00497adef6c60374c66082608400a97adef6c608cc00401e0033043005401d1640f481e8607c004803a2c81b22c81b22c81b0c0e80122c81aa33001006800c0120068031035181c181c981a9baa3038003303900340d913233225980099baf3037303437540020111598009980780080644c008cc048010cc080dd5980f181a1baa00100a8b206489801002206429800803400a60360090014018606a008606a0068178cc88cc88cc0080080048966002003168992cc004cdd7981a18189baa30343031375400201713230353032375400464b300130293031375400313259800981518191baa0018992cc00566002605660666ea8006264646600200201444b30013371e6eb8c0e800400e2946266004004607600281a8dd7181b981a1baa001899808803800a0648800c59032181b18199baa0018b20623035303237540031640c0603660626ea8c0d0c0c4dd5000c4cc00c00cc0d400902f180d18181baa303300140c46eb0c0c4c0b8dd50121bac302f30303030303030303030303030303030302c37540446eacc020c0b0dd501145902a1bae302d001302d302e302e302e302e302e00130140028b204e22c80e8c01cc078dd51804180f1baa0018b2038180e8031112cc004cdc4a400800319800801cc080c08000a66e012003001400d15980099b89480080063300100398100014c010005003456600260260031301f0028b2034406880d116405030130013012001300d375400516402c601e60186ea801a2b30013370e9003002c4c8c966002600a601a6ea8c044c04800a2946294100c1bad3010001300c375400d164028805060126014002601200260086ea802629344d9590021",
|
|
546
|
+
"hash": "810fcc63f84896de370748f6b1d13958d511178178abadd84a1a0c1e"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"title": "unfracking.unfracking.else",
|
|
550
|
+
"redeemer": {
|
|
551
|
+
"schema": {}
|
|
552
|
+
},
|
|
553
|
+
"parameters": [
|
|
554
|
+
{
|
|
555
|
+
"title": "params_policy",
|
|
556
|
+
"schema": {
|
|
557
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"compiledCode": "5907a1010100229800aba2aba1aba0aab9faab9eaab9dab9a9bae00248888888966002646465300130063754003370e90024dc3a4001300a0039805001244444b300130040058992cc004c010c030dd500144c8c8ca60026eb4c04c0066eb4c04c00e6eb4c04c00922259800980b80246600260266ea80224464646600200200844b3001001801c4c8c96600266e440180062b30013371e00c0031375660340050054061133004004301e00340606eb8c060004c06c0050190a5eb7bdb182460286ea80064602e603000323017301830180019b8048005222222332298009bad301e0029bad301e301f002cc0040066eb0c014c06cdd5008cdd6980f0042002488966003300159800998051bab3008301e37546010603c6ea800406e2946294101f528528a0388992cc004c05cc078dd5000c6600260146044603e6ea80064464b30013019001899192cc004c0a000a0091640946eb8c098004c088dd5001c56600266e1d2002001899192cc004c0a000a0091640946eb8c098004c088dd5001c590202040302037540052302330243024302400191194c0040060070024004444b30010028800c4c8cc8a600200d302b0059919800800802912cc00400626605666ec0dd48021ba80034bd6f7b63044c8cc896600266e4401c00a2b30013371e00e0051325980099b87001337029000003c400a26605e66ec0dd48041ba83370000200e0048158dd69816001c4cc0b8cdd81ba9007375000c008815226605c0066600a00a0028150dd7181480098170011816000a05440186eb8c090004dd698128009813801204a911919800800801912cc004cdd798111813000801c528c4cc008008c09c00502148c08cc090c090c090c090c090c0900052222229800912cc004c8c96600266e1d20020018a508acc004c0800062946266e24dc69bb3302c30293754004006813902718139baa00130103027375400513375e980103d87a800030063027375400514a0812a646600c00220026050605200d323259800980f18131baa0018992cc004cdc79bae3027302b302c3756602460506ea8c048c0a0dd50009bae302b0098992cc004c084c0a0dd5000c4c0b0c0a4dd5000c59027180898141baa3012302837540031640986054604e6ea80062c81296600266e2002d20008a6103d87a80008cc0040066eb0c040c098dd500e402d0012048222598008014530103d87a80008acc004c07c006266e9520003302a302b0024bd70466002007302c0029808000a0064098814a6eb4c0a0c0a4c0a4c0a4c0a4c0a4c0a401922225980099baf4c101a000302c302d302d302d302d3029375403f13233223300c001159800998049bab3008302c3754044003132329800800cdd6180b98171baa02480952f5bded8c0800888896600266e2400920008994c0040066eb0c0d4c0c8dd5014401297adef6c6040044444b3001003899baf374c653001001801c0190011112cc00400a200319800801cc0f000a64b30013375e607860726ea80040362b30013301400101189980b998129bab30233039375400201e0051640dd100240dc607600480190391ba6001899912cc004cdd7981d181b9baa303a3037375400402315980099baf303a303737540040171325980099baf303b30383754002607660706ea800e2b30013375e604260706ea8004c084c0e0dd5001c56600266ebcc05cc0e0dd5000980b981c1baa0038cc00401e005303c0059980b002194c004006607a6eacc08cc0e4dd50024c0f4dd59811981c9baa0024004444653001375c607600337566078003304000348896600266e3c00c0562b30013375e6e98004dd3002c400a2c81ea2b30013375e6e98cc104cdd81ba9003374c00497adef6c60374c66082608400a97adef6c608cc00401e0033043005401d1640f481e8607c004803a2c81b22c81b22c81b0c0e80122c81aa33001006800c0120068031035181c181c981a9baa3038003303900340d913233225980099baf3037303437540020111598009980780080644c008cc048010cc080dd5980f181a1baa00100a8b206489801002206429800803400a60360090014018606a008606a0068178cc88cc88cc0080080048966002003168992cc004cdd7981a18189baa30343031375400201713230353032375400464b300130293031375400313259800981518191baa0018992cc00566002605660666ea8006264646600200201444b30013371e6eb8c0e800400e2946266004004607600281a8dd7181b981a1baa001899808803800a0648800c59032181b18199baa0018b20623035303237540031640c0603660626ea8c0d0c0c4dd5000c4cc00c00cc0d400902f180d18181baa303300140c46eb0c0c4c0b8dd50121bac302f30303030303030303030303030303030302c37540446eacc020c0b0dd501145902a1bae302d001302d302e302e302e302e302e00130140028b204e22c80e8c01cc078dd51804180f1baa0018b2038180e8031112cc004cdc4a400800319800801cc080c08000a66e012003001400d15980099b89480080063300100398100014c010005003456600260260031301f0028b2034406880d116405030130013012001300d375400516402c601e60186ea801a2b30013370e9003002c4c8c966002600a601a6ea8c044c04800a2946294100c1bad3010001300c375400d164028805060126014002601200260086ea802629344d9590021",
|
|
562
|
+
"hash": "810fcc63f84896de370748f6b1d13958d511178178abadd84a1a0c1e"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"title": "upgrade_multisig.upgrade_multisig.withdraw",
|
|
566
|
+
"redeemer": {
|
|
567
|
+
"title": "_redeemer",
|
|
568
|
+
"schema": {
|
|
569
|
+
"$ref": "#/definitions/Data"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"parameters": [
|
|
573
|
+
{
|
|
574
|
+
"title": "signers",
|
|
575
|
+
"schema": {
|
|
576
|
+
"$ref": "#/definitions/List<aiken~1crypto~1VerificationKeyHash>"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"title": "threshold",
|
|
581
|
+
"schema": {
|
|
582
|
+
"$ref": "#/definitions/Int"
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
],
|
|
586
|
+
"compiledCode": "58ce0101002229800aba2aba1aab9faab9eaab9dab9a9bac0039bad0024888888896600264653001300900198049805000cc0240092225980099b8748010c024dd500144c8cdc48039919800800804912cc0040062900044cc896600264660020026eb0c048c04cc04cc04cc04cc04cc04cc04cc04cc040dd5003912cc00400629422b30013371e6eb8c04c00401229462660040046028002807901244cdc024004003100140346eb8c03c004cc008008c04000500e180618051baa0028b2010180480098029baa0098a4d13656400c1",
|
|
587
|
+
"hash": "53782c02a189a2a15f9f27f95ae7f863cfeb580a4831a5b7b2244c98"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"title": "upgrade_multisig.upgrade_multisig.else",
|
|
591
|
+
"redeemer": {
|
|
592
|
+
"schema": {}
|
|
593
|
+
},
|
|
594
|
+
"parameters": [
|
|
595
|
+
{
|
|
596
|
+
"title": "signers",
|
|
597
|
+
"schema": {
|
|
598
|
+
"$ref": "#/definitions/List<aiken~1crypto~1VerificationKeyHash>"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"title": "threshold",
|
|
603
|
+
"schema": {
|
|
604
|
+
"$ref": "#/definitions/Int"
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
],
|
|
608
|
+
"compiledCode": "58ce0101002229800aba2aba1aab9faab9eaab9dab9a9bac0039bad0024888888896600264653001300900198049805000cc0240092225980099b8748010c024dd500144c8cdc48039919800800804912cc0040062900044cc896600264660020026eb0c048c04cc04cc04cc04cc04cc04cc04cc04cc040dd5003912cc00400629422b30013371e6eb8c04c00401229462660040046028002807901244cdc024004003100140346eb8c03c004cc008008c04000500e180618051baa0028b2010180480098029baa0098a4d13656400c1",
|
|
609
|
+
"hash": "53782c02a189a2a15f9f27f95ae7f863cfeb580a4831a5b7b2244c98"
|
|
610
|
+
}
|
|
611
|
+
],
|
|
612
|
+
"definitions": {
|
|
613
|
+
"ByteArray": {
|
|
614
|
+
"dataType": "bytes"
|
|
615
|
+
},
|
|
616
|
+
"Data": {
|
|
617
|
+
"title": "Data",
|
|
618
|
+
"description": "Any Plutus data."
|
|
619
|
+
},
|
|
620
|
+
"Int": {
|
|
621
|
+
"dataType": "integer"
|
|
622
|
+
},
|
|
623
|
+
"List<aiken/crypto/VerificationKeyHash>": {
|
|
624
|
+
"dataType": "list",
|
|
625
|
+
"items": {
|
|
626
|
+
"$ref": "#/definitions/aiken~1crypto~1VerificationKeyHash"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"List<types/RegistryProof>": {
|
|
630
|
+
"dataType": "list",
|
|
631
|
+
"items": {
|
|
632
|
+
"$ref": "#/definitions/types~1RegistryProof"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
"aiken/crypto/ScriptHash": {
|
|
636
|
+
"title": "ScriptHash",
|
|
637
|
+
"dataType": "bytes"
|
|
638
|
+
},
|
|
639
|
+
"aiken/crypto/VerificationKeyHash": {
|
|
640
|
+
"title": "VerificationKeyHash",
|
|
641
|
+
"dataType": "bytes"
|
|
642
|
+
},
|
|
643
|
+
"cardano/address/Credential": {
|
|
644
|
+
"title": "Credential",
|
|
645
|
+
"description": "A general structure for representing an on-chain `Credential`.\n\n Credentials are always one of two kinds: a direct public/private key\n pair, or a script (native or Plutus).",
|
|
646
|
+
"anyOf": [
|
|
647
|
+
{
|
|
648
|
+
"title": "VerificationKey",
|
|
649
|
+
"dataType": "constructor",
|
|
650
|
+
"index": 0,
|
|
651
|
+
"fields": [
|
|
652
|
+
{
|
|
653
|
+
"$ref": "#/definitions/aiken~1crypto~1VerificationKeyHash"
|
|
654
|
+
}
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"title": "Script",
|
|
659
|
+
"dataType": "constructor",
|
|
660
|
+
"index": 1,
|
|
661
|
+
"fields": [
|
|
662
|
+
{
|
|
663
|
+
"$ref": "#/definitions/aiken~1crypto~1ScriptHash"
|
|
664
|
+
}
|
|
665
|
+
]
|
|
666
|
+
}
|
|
667
|
+
]
|
|
668
|
+
},
|
|
669
|
+
"cardano/assets/PolicyId": {
|
|
670
|
+
"title": "PolicyId",
|
|
671
|
+
"dataType": "bytes"
|
|
672
|
+
},
|
|
673
|
+
"cardano/transaction/OutputReference": {
|
|
674
|
+
"title": "OutputReference",
|
|
675
|
+
"description": "An `OutputReference` is a unique reference to an output on-chain. The `output_index`\n corresponds to the position in the output list of the transaction (identified by its id)\n that produced that output",
|
|
676
|
+
"anyOf": [
|
|
677
|
+
{
|
|
678
|
+
"title": "OutputReference",
|
|
679
|
+
"dataType": "constructor",
|
|
680
|
+
"index": 0,
|
|
681
|
+
"fields": [
|
|
682
|
+
{
|
|
683
|
+
"title": "transaction_id",
|
|
684
|
+
"$ref": "#/definitions/ByteArray"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"title": "output_index",
|
|
688
|
+
"$ref": "#/definitions/Int"
|
|
689
|
+
}
|
|
690
|
+
]
|
|
691
|
+
}
|
|
692
|
+
]
|
|
693
|
+
},
|
|
694
|
+
"programmable_logic/params/ProgrammableLogicGlobalParams": {
|
|
695
|
+
"title": "ProgrammableLogicGlobalParams",
|
|
696
|
+
"description": "Protocol parameters stored on-chain, referenced by all programmable-token\n transactions. Fields are ordered by read-frequency / hot-path depth: the\n registry policy and base payment credential (read by the transfer /\n third-party containment checks) first, then the two credentials\n programmable_logic_base dispatches to on every per-input spend\n (`transfer_cred`, `third_party_cred`), then the rarer `unfracking_cred`,\n then the coldest `upgrade_cred` (read only by coordination_spend).\n `max_inline_datum_bytes` is appended LAST so that adding it left every\n pre-existing accessor at its original depth; it is read once per delegate\n invocation rather than per input, so paying six `tail_list` hops for it\n once per transaction is cheaper than displacing a hot field.",
|
|
697
|
+
"anyOf": [
|
|
698
|
+
{
|
|
699
|
+
"title": "ProgrammableLogicGlobalParams",
|
|
700
|
+
"dataType": "constructor",
|
|
701
|
+
"index": 0,
|
|
702
|
+
"fields": [
|
|
703
|
+
{
|
|
704
|
+
"title": "registry_node_cs",
|
|
705
|
+
"description": "Field 0 — currency symbol of the registry node NFTs.",
|
|
706
|
+
"$ref": "#/definitions/cardano~1assets~1PolicyId"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"title": "prog_logic_cred",
|
|
710
|
+
"description": "Field 1 — the programmable-logic-base PAYMENT credential: the shared\n payment credential every programmable-token UTxO lives at.",
|
|
711
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"title": "transfer_cred",
|
|
715
|
+
"description": "Field 2 — credential of the `transfer` withdraw-0 validator.\n programmable_logic_base requires it on a `SpendViaTransfer` dispatch.\n This is what makes the transfer validator swappable in place: an\n upgrade rewrites this field instead of re-deploying PLB (whose hash\n anchors every token address).",
|
|
716
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"title": "third_party_cred",
|
|
720
|
+
"description": "Field 3 — credential of the standalone third-party-transfer (seize /\n clawback / freeze) withdraw-0 validator. programmable_logic_base requires\n it on a `SpendViaThirdParty` dispatch. Swappable in place.",
|
|
721
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"title": "unfracking_cred",
|
|
725
|
+
"description": "Field 4 — credential of the `unfracking` withdraw-0 validator\n (Finding 17). programmable_logic_base requires it on a\n `SpendViaUnfracking` dispatch. Swappable in place.",
|
|
726
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"title": "upgrade_cred",
|
|
730
|
+
"description": "Field 5 — credential of the upgrade-authority withdraw-0 validator\n (trampoline 2). Read ONLY by coordination_spend, on an upgrade\n transaction, to decide *who* may rewrite this datum. Making it a datum\n field (rather than a coordination_spend parameter) is what lets the\n upgrade authority itself be swapped in place — federated multisig now, a\n governance-action validator later — without moving the coordination UTxO.\n Last of the original six because it is the coldest read.",
|
|
731
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"title": "max_inline_datum_bytes",
|
|
735
|
+
"description": "Field 6 — maximum serialised size, in BYTES, of the inline datum a\n programmable-token (PLB) output may carry (issue #106, vector 3).\n\n A seizure must reproduce the paired input's datum byte-for-byte on the\n continuing output, so an unbounded datum lets a holder push the seizure\n transaction past `maxTxSize` — or, short of that, collapse how many\n UTxOs an issuer can seize per transaction. The holder pays nothing for\n it: `transfer` never pairs an input to an output, so it never reads the\n datum. Bounding it at CREATION is what keeps every PLB UTxO seizable.\n\n A datum field rather than a compile-time constant so the bound can be\n retuned — DeFi order and loan state grows — by rewriting this datum\n instead of re-deploying the delegates. It grants the upgrade authority\n no new power: it can already swap `transfer_cred` for a validator with\n no bound at all, which is strictly more.\n\n APPENDED LAST on purpose: every pre-existing accessor keeps its current\n `tail_list` depth, so adding it costs the hot paths (above all PLB's\n per-input credential read) exactly nothing. It is itself read ONCE per\n delegate invocation and threaded down to the output walk, never re-read\n per output, so its own depth is paid once per transaction.",
|
|
736
|
+
"$ref": "#/definitions/Int"
|
|
737
|
+
}
|
|
738
|
+
]
|
|
739
|
+
}
|
|
740
|
+
]
|
|
741
|
+
},
|
|
742
|
+
"registry_node/RegistryNode": {
|
|
743
|
+
"title": "RegistryNode",
|
|
744
|
+
"description": "Registry node in the linked list of registered programmable token policies\n This represents an entry in the CIP-113 registry.\n\n Field order is load-bearing: it determines the CBOR layout consumed by both\n on-chain and off-chain code. The three script-credential fields are ordered\n by the natural lifecycle of a programmable token — `minting_logic_script`\n (mint), `transfer_logic_script` (transfer), `third_party_transfer_logic_script`\n (admin) — with `minting_logic_script` first because registration is the\n earliest event in a token's lifetime.",
|
|
745
|
+
"anyOf": [
|
|
746
|
+
{
|
|
747
|
+
"title": "RegistryNode",
|
|
748
|
+
"dataType": "constructor",
|
|
749
|
+
"index": 0,
|
|
750
|
+
"fields": [
|
|
751
|
+
{
|
|
752
|
+
"title": "key",
|
|
753
|
+
"description": "The key (currency symbol) of the programmable token policy",
|
|
754
|
+
"$ref": "#/definitions/ByteArray"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"title": "next",
|
|
758
|
+
"description": "The next key in lexicographical order (for linked list traversal)",
|
|
759
|
+
"$ref": "#/definitions/ByteArray"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"title": "minting_logic_script",
|
|
763
|
+
"description": "The minting logic script credential. The substandard's withdraw-0 minting\n logic finds its own registry node by equality on this field — that gives\n it the `key` (the policy id) without recomputing the issuance hash.\n `registry_mint` also cryptographically binds this field to the policy id\n via `is_programmable_token_id_valid`, so the field cannot lie.",
|
|
764
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"title": "transfer_logic_script",
|
|
768
|
+
"description": "The transfer logic script credential that validates token transfers",
|
|
769
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"title": "third_party_transfer_logic_script",
|
|
773
|
+
"description": "The third party transfer logic script credential that handles admin actions (seizure, etc.)",
|
|
774
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"title": "unfracking_logic_script",
|
|
778
|
+
"description": "Credential whose withdraw-0 must be invoked by any unfracking action\n touching this policy — the issuer-declared unfracking constraint\n hook. `empty_vkey` means unfracking is FORBIDDEN for this policy\n (least permission by default: no script, no party). A `Script`\n credential delegates to the issuer's hook validator; a\n `VerificationKey` credential gives signature-gated unfracking (a\n withdrawal against a vkey reward account requires that key's\n signature). Sits at index 5, keeping the four logic-credential\n fields contiguous (2-5) ahead of the scalar `global_state_cs`.\n Freely mutable through the registry-node update path, like the\n other logic fields.",
|
|
779
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"title": "global_state_cs",
|
|
783
|
+
"description": "Optional global state NFT currency symbol for this policy",
|
|
784
|
+
"$ref": "#/definitions/ByteArray"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
}
|
|
788
|
+
]
|
|
789
|
+
},
|
|
790
|
+
"types/BaseSpendRedeemer": {
|
|
791
|
+
"title": "BaseSpendRedeemer",
|
|
792
|
+
"description": "Redeemer of the `programmable_logic_base` spend validator.\n\n PLB runs once per programmable-token input, so its cost is multiplied by\n every such input in the transaction. It dispatches each spend to ONE of\n three withdraw-0 validators — `transfer`, `third_party`, `unfracking` — and\n witnesses WHERE that validator's credential sits\n in the ledger-ordered withdrawal map (Script credentials first, then\n VerificationKey, bytewise within each), so the check is a direct\n `list.expect_at` — O(`wdrl_idx`) cell drops with no comparison on the way —\n plus one equality, instead of a scan that compares at every entry.\n\n Self-validating: a wrong `wdrl_idx` resolves to some other credential and a\n wrong arm names another validator — either way the equality fails, so a\n dishonest witness can only invalidate its own transaction. Whichever\n validator it delegates to then enforces its full invariants over the whole\n transaction, so authorising any one of them is sound. No delegate is ever\n reached through another: a transfer loads only `transfer`, a seize only\n `third_party`, an unfracking only `unfracking`.\n\n ASSUMPTION (documented, not enforced): \"a wrong arm fails\" holds only while\n the params datum carries pairwise-distinct `transfer_cred`,\n `third_party_cred` and `unfracking_cred`. Neither `protocol_params_mint`\n nor `coordination_spend` checks distinctness; it is the deployer's and the\n upgrade authority's responsibility. With two equal credentials both arms\n resolve to the same script, which must then dispatch internally — see\n `plb_equal_delegate_creds_collapse_the_arms`.",
|
|
793
|
+
"anyOf": [
|
|
794
|
+
{
|
|
795
|
+
"title": "SpendViaTransfer",
|
|
796
|
+
"description": "Delegate to the `transfer` validator. PLB requires the `transfer_cred`\n (params datum field 2) at `wdrl_idx`.",
|
|
797
|
+
"dataType": "constructor",
|
|
798
|
+
"index": 0,
|
|
799
|
+
"fields": [
|
|
800
|
+
{
|
|
801
|
+
"title": "params_idx",
|
|
802
|
+
"$ref": "#/definitions/Int"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"title": "wdrl_idx",
|
|
806
|
+
"$ref": "#/definitions/Int"
|
|
807
|
+
}
|
|
808
|
+
]
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"title": "SpendViaThirdParty",
|
|
812
|
+
"description": "Delegate to the `third_party` (seize / clawback / freeze-enforcement)\n validator. PLB requires the `third_party_cred` (params datum field 3)\n at `wdrl_idx`.",
|
|
813
|
+
"dataType": "constructor",
|
|
814
|
+
"index": 1,
|
|
815
|
+
"fields": [
|
|
816
|
+
{
|
|
817
|
+
"title": "params_idx",
|
|
818
|
+
"$ref": "#/definitions/Int"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"title": "wdrl_idx",
|
|
822
|
+
"$ref": "#/definitions/Int"
|
|
823
|
+
}
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"title": "SpendViaUnfracking",
|
|
828
|
+
"description": "Delegate to the `unfracking` validator (Finding 17, holder-driven\n same-owner PLB restructuring). PLB requires the `unfracking_cred`\n (params datum field 4) at `wdrl_idx`.",
|
|
829
|
+
"dataType": "constructor",
|
|
830
|
+
"index": 2,
|
|
831
|
+
"fields": [
|
|
832
|
+
{
|
|
833
|
+
"title": "params_idx",
|
|
834
|
+
"$ref": "#/definitions/Int"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"title": "wdrl_idx",
|
|
838
|
+
"$ref": "#/definitions/Int"
|
|
839
|
+
}
|
|
840
|
+
]
|
|
841
|
+
}
|
|
842
|
+
]
|
|
843
|
+
},
|
|
844
|
+
"types/MintingRegistryProof": {
|
|
845
|
+
"title": "MintingRegistryProof",
|
|
846
|
+
"description": "Redeemer for the issuance minting policy.\n\n The redeemer is the registry proof itself — a `RefInput` index for a\n subsequent mint (registry node already exists), or an `OutputIndex` for\n the first mint (registry node being created in the same tx).\n\n The substandard's withdraw-0 invocation (proof of instance) is checked\n directly against the validator's `minting_logic_cred` parameter — no\n separate redeemer field needed. The validator parameter is baked into\n the policy id at compile time and pinned to `registry.minting_logic_script`\n by the cryptographic binding in `registry_mint`, so collision-resistance\n of blake2b_224 forces credential agreement without a runtime equality\n check on the redeemer.",
|
|
847
|
+
"anyOf": [
|
|
848
|
+
{
|
|
849
|
+
"title": "RefInput",
|
|
850
|
+
"dataType": "constructor",
|
|
851
|
+
"index": 0,
|
|
852
|
+
"fields": [
|
|
853
|
+
{
|
|
854
|
+
"title": "index",
|
|
855
|
+
"$ref": "#/definitions/Int"
|
|
856
|
+
}
|
|
857
|
+
]
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"title": "OutputIndex",
|
|
861
|
+
"dataType": "constructor",
|
|
862
|
+
"index": 1,
|
|
863
|
+
"fields": [
|
|
864
|
+
{
|
|
865
|
+
"title": "index",
|
|
866
|
+
"$ref": "#/definitions/Int"
|
|
867
|
+
}
|
|
868
|
+
]
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"types/RegistryProof": {
|
|
873
|
+
"title": "RegistryProof",
|
|
874
|
+
"description": "Proof that a token is (or is not) in the registry",
|
|
875
|
+
"anyOf": [
|
|
876
|
+
{
|
|
877
|
+
"title": "TokenExists",
|
|
878
|
+
"description": "Token exists in the registry at this reference input index",
|
|
879
|
+
"dataType": "constructor",
|
|
880
|
+
"index": 0,
|
|
881
|
+
"fields": [
|
|
882
|
+
{
|
|
883
|
+
"title": "node_idx",
|
|
884
|
+
"$ref": "#/definitions/Int"
|
|
885
|
+
}
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"title": "TokenDoesNotExist",
|
|
890
|
+
"description": "Token does not exist (proof via covering node at this index)",
|
|
891
|
+
"dataType": "constructor",
|
|
892
|
+
"index": 1,
|
|
893
|
+
"fields": [
|
|
894
|
+
{
|
|
895
|
+
"title": "node_idx",
|
|
896
|
+
"$ref": "#/definitions/Int"
|
|
897
|
+
}
|
|
898
|
+
]
|
|
899
|
+
}
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
"types/RegistryRedeemer": {
|
|
903
|
+
"title": "RegistryRedeemer",
|
|
904
|
+
"description": "Redeemer for registry minting policy (linked list operations)",
|
|
905
|
+
"anyOf": [
|
|
906
|
+
{
|
|
907
|
+
"title": "RegistryInit",
|
|
908
|
+
"description": "Initialize the registry with the origin node",
|
|
909
|
+
"dataType": "constructor",
|
|
910
|
+
"index": 0,
|
|
911
|
+
"fields": []
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"title": "RegistryInsert",
|
|
915
|
+
"description": "Insert a new programmable token policy into the registry.\n\n `minting_logic_script` is the credential of the substandard's\n withdraw-0 minting logic. registry_mint enforces that:\n * the new node's datum field `minting_logic_script` equals this\n value (datum-matches-redeemer check, prevents the registrar\n from writing a different credential into the datum than they\n claim in the redeemer);\n * the issuance template parameterised with this credential hashes\n to `key` (cryptographic binding: the `hashed_param` used in the\n policy id derivation is the inner 28-byte hash of this\n credential — derived inside the validator, NOT supplied as a\n separate redeemer field);\n * the substandard's withdraw-0 logic is invoked\n (`minting_logic_script` in `tx.withdrawals`).\n\n Whether the registration also carries a first mint of the new\n policy is NOT constrained by registry_mint: a first mint in the\n same tx is validated by `issuance_mint` as usual, and registering\n without any mint is equally valid (useful for real-world-asset\n issuance or supply-aware substandards that must initialise global\n state before any token exists). A substandard that wants a strict\n register-then-mint lifecycle must enforce it in its own minting\n logic.",
|
|
916
|
+
"dataType": "constructor",
|
|
917
|
+
"index": 1,
|
|
918
|
+
"fields": [
|
|
919
|
+
{
|
|
920
|
+
"title": "key",
|
|
921
|
+
"$ref": "#/definitions/ByteArray"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"title": "minting_logic_script",
|
|
925
|
+
"$ref": "#/definitions/cardano~1address~1Credential"
|
|
926
|
+
}
|
|
927
|
+
]
|
|
928
|
+
}
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
"types/ThirdPartyRedeemer": {
|
|
932
|
+
"title": "ThirdPartyRedeemer",
|
|
933
|
+
"description": "Redeemer of the standalone `third_party` withdraw-0 validator.\n Same index-hint discipline as `UnfrackingRedeemer`: a third-party\n (seize / clawback / freeze-enforcement) action names its subject\n policy's registry node and pairs every acted-on PLB input positionally\n with a continuing output starting at `outputs_start_idx`. Carries the\n exact fields the old inline `ThirdPartyAct` arm did — the logic moved\n out of the former coordinator into its own script, the redeemer surface is unchanged.",
|
|
934
|
+
"anyOf": [
|
|
935
|
+
{
|
|
936
|
+
"title": "ThirdPartyRedeemer",
|
|
937
|
+
"dataType": "constructor",
|
|
938
|
+
"index": 0,
|
|
939
|
+
"fields": [
|
|
940
|
+
{
|
|
941
|
+
"title": "params_idx",
|
|
942
|
+
"description": "Index of the protocol-params NFT UTxO in reference inputs",
|
|
943
|
+
"$ref": "#/definitions/Int"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"title": "registry_node_idx",
|
|
947
|
+
"description": "Index of the subject policy's registry node in reference inputs",
|
|
948
|
+
"$ref": "#/definitions/Int"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"title": "outputs_start_idx",
|
|
952
|
+
"description": "Starting index in outputs where processed outputs begin",
|
|
953
|
+
"$ref": "#/definitions/Int"
|
|
954
|
+
}
|
|
955
|
+
]
|
|
956
|
+
}
|
|
957
|
+
]
|
|
958
|
+
},
|
|
959
|
+
"types/TransferRedeemer": {
|
|
960
|
+
"title": "TransferRedeemer",
|
|
961
|
+
"description": "Redeemer of the `transfer` withdraw-0 validator — the script every\n ordinary programmable-token transfer is dispatched to by\n programmable_logic_base under `SpendViaTransfer`.\n\n `params_idx` is the index of the protocol-params NFT UTxO in\n `reference_inputs`. The validator jumps straight to that reference input\n (`list.at`) and authenticates it by the one-shot params NFT, instead of\n scanning every reference input to find it — a wrong index simply fails\n the NFT check. See `params.with_protocol_params_fields`. The standalone\n `third_party` and `unfracking` validators carry the same field.",
|
|
962
|
+
"anyOf": [
|
|
963
|
+
{
|
|
964
|
+
"title": "TransferRedeemer",
|
|
965
|
+
"dataType": "constructor",
|
|
966
|
+
"index": 0,
|
|
967
|
+
"fields": [
|
|
968
|
+
{
|
|
969
|
+
"title": "params_idx",
|
|
970
|
+
"$ref": "#/definitions/Int"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"title": "proofs",
|
|
974
|
+
"description": "One registry proof per distinct spent policy, in ascending policy order",
|
|
975
|
+
"$ref": "#/definitions/List<types~1RegistryProof>"
|
|
976
|
+
}
|
|
977
|
+
]
|
|
978
|
+
}
|
|
979
|
+
]
|
|
980
|
+
},
|
|
981
|
+
"types/UnfrackingRedeemer": {
|
|
982
|
+
"title": "UnfrackingRedeemer",
|
|
983
|
+
"description": "Redeemer of the standalone `unfracking` withdraw-0 validator (v2).\n Same index-hint discipline as `ThirdPartyRedeemer`: an unfracking action\n is single-policy, names its registry node, and pairs every PLB input\n positionally with a continuing output starting at `outputs_start_idx`.",
|
|
984
|
+
"anyOf": [
|
|
985
|
+
{
|
|
986
|
+
"title": "UnfrackingRedeemer",
|
|
987
|
+
"dataType": "constructor",
|
|
988
|
+
"index": 0,
|
|
989
|
+
"fields": [
|
|
990
|
+
{
|
|
991
|
+
"title": "params_idx",
|
|
992
|
+
"description": "Index of the protocol-params NFT UTxO in reference inputs",
|
|
993
|
+
"$ref": "#/definitions/Int"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"title": "registry_node_idx",
|
|
997
|
+
"description": "Index of the acted-on policy's registry node in reference inputs",
|
|
998
|
+
"$ref": "#/definitions/Int"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"title": "outputs_start_idx",
|
|
1002
|
+
"description": "Starting index in outputs where the paired continuing outputs begin",
|
|
1003
|
+
"$ref": "#/definitions/Int"
|
|
1004
|
+
}
|
|
1005
|
+
]
|
|
1006
|
+
}
|
|
1007
|
+
]
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
}
|