@@ -72,6 +72,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
7272 * An account was created with some free balance.
7373 **/
7474 Endowed : AugmentedEvent < ApiType , [ account : AccountId32 , freeBalance : u128 ] , { account : AccountId32 , freeBalance : u128 } > ;
75+ /**
76+ * Some balance was frozen.
77+ **/
78+ Frozen : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
7579 /**
7680 * Total issuance was increased by `amount`, creating a credit to be balanced.
7781 **/
@@ -109,6 +113,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
109113 * Some amount was suspended from an account (it can be restored later).
110114 **/
111115 Suspended : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
116+ /**
117+ * Some balance was thawed.
118+ **/
119+ Thawed : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
112120 /**
113121 * Transfer succeeded.
114122 **/
@@ -623,6 +631,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
623631 * An account was created with some free balance.
624632 **/
625633 Endowed : AugmentedEvent < ApiType , [ account : AccountId32 , freeBalance : u128 ] , { account : AccountId32 , freeBalance : u128 } > ;
634+ /**
635+ * Some balance was frozen.
636+ **/
637+ Frozen : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
626638 /**
627639 * Total issuance was increased by `amount`, creating a credit to be balanced.
628640 **/
@@ -660,6 +672,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/events.ts' {
660672 * Some amount was suspended from an account (it can be restored later).
661673 **/
662674 Suspended : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
675+ /**
676+ * Some balance was thawed.
677+ **/
678+ Thawed : AugmentedEvent < ApiType , [ who : AccountId32 , amount : u128 ] , { who : AccountId32 , amount : u128 } > ;
663679 /**
664680 * Transfer succeeded.
665681 **/
0 commit comments