@@ -182,7 +182,7 @@ class StakeDelegation(CodedSerializable):
182
182
_CODE : int = field (init = False , default = 2 )
183
183
stake_credential : StakeCredential
184
184
"""The stake credential being delegated"""
185
-
185
+
186
186
pool_keyhash : PoolKeyHash
187
187
"""The hash of the pool's key to delegate to"""
188
188
@@ -226,7 +226,7 @@ class PoolRetirement(CodedSerializable):
226
226
_CODE : int = field (init = False , default = 4 )
227
227
pool_keyhash : PoolKeyHash
228
228
"""The hash of the pool's key that is being retired"""
229
-
229
+
230
230
epoch : int
231
231
"""The epoch number when the pool will retire"""
232
232
@@ -238,7 +238,7 @@ class StakeRegistrationConway(CodedSerializable):
238
238
_CODE : int = field (init = False , default = 7 )
239
239
stake_credential : StakeCredential
240
240
"""The stake credential being registered"""
241
-
241
+
242
242
coin : int
243
243
"""The amount of coins associated with this registration"""
244
244
@@ -250,7 +250,7 @@ class StakeDeregistrationConway(CodedSerializable):
250
250
_CODE : int = field (init = False , default = 8 )
251
251
stake_credential : StakeCredential
252
252
"""The stake credential being deregistered"""
253
-
253
+
254
254
coin : int
255
255
"""The amount of coins associated with this deregistration"""
256
256
@@ -262,7 +262,7 @@ class VoteDelegation(CodedSerializable):
262
262
_CODE : int = field (init = False , default = 9 )
263
263
stake_credential : StakeCredential
264
264
"""The stake credential delegating its voting power"""
265
-
265
+
266
266
drep : DRep
267
267
"""The DRep receiving the voting power delegation"""
268
268
@@ -274,10 +274,10 @@ class StakeAndVoteDelegation(CodedSerializable):
274
274
_CODE : int = field (init = False , default = 10 )
275
275
stake_credential : StakeCredential
276
276
"""The stake credential being delegated"""
277
-
277
+
278
278
pool_keyhash : PoolKeyHash
279
279
"""The hash of the pool's key receiving the stake delegation"""
280
-
280
+
281
281
drep : DRep
282
282
"""The DRep receiving the voting power delegation"""
283
283
@@ -289,10 +289,10 @@ class StakeRegistrationAndDelegation(CodedSerializable):
289
289
_CODE : int = field (init = False , default = 11 )
290
290
stake_credential : StakeCredential
291
291
"""The stake credential being registered and delegated"""
292
-
292
+
293
293
pool_keyhash : PoolKeyHash
294
294
"""The hash of the pool's key receiving the delegation"""
295
-
295
+
296
296
coin : int
297
297
"""The amount of coins associated with this registration"""
298
298
@@ -304,10 +304,10 @@ class StakeRegistrationAndVoteDelegation(CodedSerializable):
304
304
_CODE : int = field (init = False , default = 12 )
305
305
stake_credential : StakeCredential
306
306
"""The stake credential being registered"""
307
-
307
+
308
308
drep : DRep
309
309
"""The DRep receiving the voting power delegation"""
310
-
310
+
311
311
coin : int
312
312
"""The amount of coins associated with this registration"""
313
313
@@ -319,13 +319,13 @@ class StakeRegistrationAndDelegationAndVoteDelegation(CodedSerializable):
319
319
_CODE : int = field (init = False , default = 13 )
320
320
stake_credential : StakeCredential
321
321
"""The stake credential being registered and delegated"""
322
-
322
+
323
323
pool_keyhash : PoolKeyHash
324
324
"""The hash of the pool's key receiving the stake delegation"""
325
-
325
+
326
326
drep : DRep
327
327
"""The DRep receiving the voting power delegation"""
328
-
328
+
329
329
coin : int
330
330
"""The amount of coins associated with this registration"""
331
331
@@ -337,7 +337,7 @@ class AuthCommitteeHotCertificate(CodedSerializable):
337
337
_CODE : int = field (init = False , default = 14 )
338
338
committee_cold_credential : StakeCredential
339
339
"""The cold credential of the committee member"""
340
-
340
+
341
341
committee_hot_credential : StakeCredential
342
342
"""The hot credential being authorized"""
343
343
@@ -349,7 +349,7 @@ class ResignCommitteeColdCertificate(CodedSerializable):
349
349
_CODE : int = field (init = False , default = 15 )
350
350
committee_cold_credential : StakeCredential
351
351
"""The cold credential of the resigning committee member"""
352
-
352
+
353
353
anchor : Optional [Anchor ]
354
354
"""Optional anchor containing additional metadata about the resignation"""
355
355
@@ -361,10 +361,10 @@ class RegDRepCert(CodedSerializable):
361
361
_CODE : int = field (init = False , default = 16 )
362
362
drep_credential : DRepCredential
363
363
"""The credential of the DRep being registered"""
364
-
364
+
365
365
coin : int
366
366
"""The amount of coins associated with this registration"""
367
-
367
+
368
368
anchor : Optional [Anchor ] = field (default = None )
369
369
"""Optional anchor containing additional metadata about the DRep"""
370
370
@@ -376,7 +376,7 @@ class UnregDRepCertificate(CodedSerializable):
376
376
_CODE : int = field (init = False , default = 17 )
377
377
drep_credential : DRepCredential
378
378
"""The credential of the DRep being unregistered"""
379
-
379
+
380
380
coin : int
381
381
"""The amount of coins associated with this unregistration"""
382
382
@@ -388,7 +388,7 @@ class UpdateDRepCertificate(CodedSerializable):
388
388
_CODE : int = field (init = False , default = 18 )
389
389
drep_credential : DRepCredential
390
390
"""The credential of the DRep being updated"""
391
-
391
+
392
392
anchor : Optional [Anchor ]
393
393
"""Optional anchor containing the updated metadata"""
394
394
0 commit comments