@@ -110,19 +110,19 @@ declare module 'https://deno.land/x/polkadot/api-base/types/calls.ts' {
110110 /**
111111 * Perform a call from a specified account to a given contract.
112112 **/
113- call : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , dest : AccountId | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gasLimit : u64 | AnyNumber | Uint8Array , storageDepositLimit : Option < Balance > | null | object | string | Uint8Array , inputData : Bytes | string | Uint8Array ) => Observable < ContractExecResult > > ;
113+ call : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , dest : AccountId | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gasLimit : u64 | AnyNumber | Uint8Array , storageDepositLimit : Option < Balance > | null | Uint8Array | Balance | AnyNumber , inputData : Bytes | string | Uint8Array ) => Observable < ContractExecResult > > ;
114114 /**
115115 * Query a given storage key in a given contract.
116116 **/
117117 getStorage : AugmentedCall < ApiType , ( address : AccountId | string | Uint8Array , key : Bytes | string | Uint8Array ) => Observable < Option < Bytes > > > ;
118118 /**
119119 * Instantiate a new contract.
120120 **/
121- instantiate : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gasLimit : u64 | AnyNumber | Uint8Array , storageDepositLimit : Option < Balance > | null | object | string | Uint8Array , code : Bytes | string | Uint8Array , data : Bytes | string | Uint8Array , salt : Bytes | string | Uint8Array ) => Observable < ContractInstantiateResult > > ;
121+ instantiate : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gasLimit : u64 | AnyNumber | Uint8Array , storageDepositLimit : Option < Balance > | null | Uint8Array | Balance | AnyNumber , code : Bytes | string | Uint8Array , data : Bytes | string | Uint8Array , salt : Bytes | string | Uint8Array ) => Observable < ContractInstantiateResult > > ;
122122 /**
123123 * Upload new code without instantiating a contract from it.
124124 **/
125- uploadCode : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , code : Bytes | string | Uint8Array , storageDepositLimit : Option < Balance > | null | object | string | Uint8Array ) => Observable < CodeUploadResult > > ;
125+ uploadCode : AugmentedCall < ApiType , ( origin : AccountId | string | Uint8Array , code : Bytes | string | Uint8Array , storageDepositLimit : Option < Balance > | null | Uint8Array | Balance | AnyNumber ) => Observable < CodeUploadResult > > ;
126126 /**
127127 * Generic call
128128 **/
@@ -236,7 +236,7 @@ declare module 'https://deno.land/x/polkadot/api-base/types/calls.ts' {
236236 /**
237237 * Generate a set of session keys with optionally using the given seed.
238238 **/
239- generateSessionKeys : AugmentedCall < ApiType , ( seed : Option < Bytes > | null | object | string | Uint8Array ) => Observable < Bytes > > ;
239+ generateSessionKeys : AugmentedCall < ApiType , ( seed : Option < Bytes > | null | Uint8Array | Bytes | string ) => Observable < Bytes > > ;
240240 /**
241241 * Generic call
242242 **/
0 commit comments