@@ -182,7 +182,7 @@ class StakeDelegation(CodedSerializable):
182182 _CODE : int = field (init = False , default = 2 )
183183 stake_credential : StakeCredential
184184 """The stake credential being delegated"""
185-
185+
186186 pool_keyhash : PoolKeyHash
187187 """The hash of the pool's key to delegate to"""
188188
@@ -226,7 +226,7 @@ class PoolRetirement(CodedSerializable):
226226 _CODE : int = field (init = False , default = 4 )
227227 pool_keyhash : PoolKeyHash
228228 """The hash of the pool's key that is being retired"""
229-
229+
230230 epoch : int
231231 """The epoch number when the pool will retire"""
232232
@@ -238,7 +238,7 @@ class StakeRegistrationConway(CodedSerializable):
238238 _CODE : int = field (init = False , default = 7 )
239239 stake_credential : StakeCredential
240240 """The stake credential being registered"""
241-
241+
242242 coin : int
243243 """The amount of coins associated with this registration"""
244244
@@ -250,7 +250,7 @@ class StakeDeregistrationConway(CodedSerializable):
250250 _CODE : int = field (init = False , default = 8 )
251251 stake_credential : StakeCredential
252252 """The stake credential being deregistered"""
253-
253+
254254 coin : int
255255 """The amount of coins associated with this deregistration"""
256256
@@ -262,7 +262,7 @@ class VoteDelegation(CodedSerializable):
262262 _CODE : int = field (init = False , default = 9 )
263263 stake_credential : StakeCredential
264264 """The stake credential delegating its voting power"""
265-
265+
266266 drep : DRep
267267 """The DRep receiving the voting power delegation"""
268268
@@ -274,10 +274,10 @@ class StakeAndVoteDelegation(CodedSerializable):
274274 _CODE : int = field (init = False , default = 10 )
275275 stake_credential : StakeCredential
276276 """The stake credential being delegated"""
277-
277+
278278 pool_keyhash : PoolKeyHash
279279 """The hash of the pool's key receiving the stake delegation"""
280-
280+
281281 drep : DRep
282282 """The DRep receiving the voting power delegation"""
283283
@@ -289,10 +289,10 @@ class StakeRegistrationAndDelegation(CodedSerializable):
289289 _CODE : int = field (init = False , default = 11 )
290290 stake_credential : StakeCredential
291291 """The stake credential being registered and delegated"""
292-
292+
293293 pool_keyhash : PoolKeyHash
294294 """The hash of the pool's key receiving the delegation"""
295-
295+
296296 coin : int
297297 """The amount of coins associated with this registration"""
298298
@@ -304,10 +304,10 @@ class StakeRegistrationAndVoteDelegation(CodedSerializable):
304304 _CODE : int = field (init = False , default = 12 )
305305 stake_credential : StakeCredential
306306 """The stake credential being registered"""
307-
307+
308308 drep : DRep
309309 """The DRep receiving the voting power delegation"""
310-
310+
311311 coin : int
312312 """The amount of coins associated with this registration"""
313313
@@ -319,13 +319,13 @@ class StakeRegistrationAndDelegationAndVoteDelegation(CodedSerializable):
319319 _CODE : int = field (init = False , default = 13 )
320320 stake_credential : StakeCredential
321321 """The stake credential being registered and delegated"""
322-
322+
323323 pool_keyhash : PoolKeyHash
324324 """The hash of the pool's key receiving the stake delegation"""
325-
325+
326326 drep : DRep
327327 """The DRep receiving the voting power delegation"""
328-
328+
329329 coin : int
330330 """The amount of coins associated with this registration"""
331331
@@ -337,7 +337,7 @@ class AuthCommitteeHotCertificate(CodedSerializable):
337337 _CODE : int = field (init = False , default = 14 )
338338 committee_cold_credential : StakeCredential
339339 """The cold credential of the committee member"""
340-
340+
341341 committee_hot_credential : StakeCredential
342342 """The hot credential being authorized"""
343343
@@ -349,7 +349,7 @@ class ResignCommitteeColdCertificate(CodedSerializable):
349349 _CODE : int = field (init = False , default = 15 )
350350 committee_cold_credential : StakeCredential
351351 """The cold credential of the resigning committee member"""
352-
352+
353353 anchor : Optional [Anchor ]
354354 """Optional anchor containing additional metadata about the resignation"""
355355
@@ -361,10 +361,10 @@ class RegDRepCert(CodedSerializable):
361361 _CODE : int = field (init = False , default = 16 )
362362 drep_credential : DRepCredential
363363 """The credential of the DRep being registered"""
364-
364+
365365 coin : int
366366 """The amount of coins associated with this registration"""
367-
367+
368368 anchor : Optional [Anchor ] = field (default = None )
369369 """Optional anchor containing additional metadata about the DRep"""
370370
@@ -376,7 +376,7 @@ class UnregDRepCertificate(CodedSerializable):
376376 _CODE : int = field (init = False , default = 17 )
377377 drep_credential : DRepCredential
378378 """The credential of the DRep being unregistered"""
379-
379+
380380 coin : int
381381 """The amount of coins associated with this unregistration"""
382382
@@ -388,7 +388,7 @@ class UpdateDRepCertificate(CodedSerializable):
388388 _CODE : int = field (init = False , default = 18 )
389389 drep_credential : DRepCredential
390390 """The credential of the DRep being updated"""
391-
391+
392392 anchor : Optional [Anchor ]
393393 """Optional anchor containing the updated metadata"""
394394
0 commit comments