@@ -17,7 +17,7 @@ import { RegistrarInfo, Registration } from '@polkadot/types/interfaces/identity
1717import { AuthIndex } from '@polkadot/types/interfaces/imOnline' ;
1818import { DeferredOffenceOf , Kind , OffenceDetails , OpaqueTimeSlot , ReportIdOf } from '@polkadot/types/interfaces/offences' ;
1919import { ActiveRecovery , RecoveryConfig } from '@polkadot/types/interfaces/recovery' ;
20- import { AccountId , AccountIndex , Balance , BalanceOf , BlockNumber , ExtrinsicsWeight , Hash , KeyTypeId , Moment , Perbill , ProxyType , Releases , ValidatorId } from '@polkadot/types/interfaces/runtime' ;
20+ import { AccountId , AccountIndex , Balance , BalanceOf , BlockNumber , ExtrinsicsWeight , Hash , KeyTypeId , Moment , OpaqueCall , Perbill , ProxyType , Releases , ValidatorId } from '@polkadot/types/interfaces/runtime' ;
2121import { Scheduled , TaskAddress } from '@polkadot/types/interfaces/scheduler' ;
2222import { Keys , SessionIndex } from '@polkadot/types/interfaces/session' ;
2323import { Bid , BidKind , SocietyVote , StrikeCount , VouchingStatus } from '@polkadot/types/interfaces/society' ;
@@ -392,7 +392,7 @@ declare module '@polkadot/api/types/storage' {
392392 } ;
393393 multisig : {
394394 [ index : string ] : QueryableStorageEntry < ApiType > ;
395- calls : AugmentedQuery < ApiType , ( arg : U8aFixed | string | Uint8Array ) => Observable < Option < ITuple < [ Bytes , AccountId , BalanceOf ] > > > > & QueryableStorageEntry < ApiType > ;
395+ calls : AugmentedQuery < ApiType , ( arg : U8aFixed | string | Uint8Array ) => Observable < Option < ITuple < [ OpaqueCall , AccountId , BalanceOf ] > > > > & QueryableStorageEntry < ApiType > ;
396396 /**
397397 * The set of open multisig operations.
398398 **/
@@ -470,6 +470,12 @@ declare module '@polkadot/api/types/storage' {
470470 * Lookup from identity to the block number and index of the task.
471471 **/
472472 lookup : AugmentedQuery < ApiType , ( arg : Bytes | string | Uint8Array ) => Observable < Option < TaskAddress > > > & QueryableStorageEntry < ApiType > ;
473+ /**
474+ * Storage version of the pallet.
475+ *
476+ * New networks start with last version.
477+ **/
478+ storageVersion : AugmentedQuery < ApiType , ( ) => Observable < Releases > > & QueryableStorageEntry < ApiType > ;
473479 } ;
474480 session : {
475481 [ index : string ] : QueryableStorageEntry < ApiType > ;
0 commit comments