@@ -22,7 +22,7 @@ import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interf
2222import type { TransactionSource , TransactionValidity } from '@polkadot/types/interfaces/txqueue' ;
2323import type { VersionedMultiLocation , VersionedXcm } from '@polkadot/types/interfaces/xcm' ;
2424import type { XcmPaymentApiError } from '@polkadot/types/interfaces/xcmPaymentApi' ;
25- import type { XcmVersionedAssetId , XcmVersionedXcm } from '@polkadot/types/lookup' ;
25+ import type { EthereumTransactionEip2930AccessListItem , XcmVersionedAssetId , XcmVersionedXcm } from '@polkadot/types/lookup' ;
2626import type { IExtrinsic , Observable } from '@polkadot/types/types' ;
2727
2828export type __AugmentedCall < ApiType extends ApiTypes > = AugmentedCall < ApiType > ;
@@ -118,23 +118,23 @@ declare module '@polkadot/api-base/types/calls' {
118118 /**
119119 * call evm contract from substrate account
120120 **/
121- accountCall : AugmentedCall < ApiType , ( from : AccountId | string | Uint8Array , to : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionAccessListItem > > | null | Uint8Array | Vec < EthereumTransactionAccessListItem > | ( EthereumTransactionAccessListItem ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CallInfo , DispatchError > > > ;
121+ accountCall : AugmentedCall < ApiType , ( from : AccountId | string | Uint8Array , to : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionEip2930AccessListItem > > | null | Uint8Array | Vec < EthereumTransactionEip2930AccessListItem > | ( EthereumTransactionEip2930AccessListItem | { address ?: any ; storageKeys ?: any } | string | Uint8Array ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CallInfo , DispatchError > > > ;
122122 /**
123123 * create evm contract from substrate account
124124 **/
125- accountCreate : AugmentedCall < ApiType , ( from : AccountId | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionAccessListItem > > | null | Uint8Array | Vec < EthereumTransactionAccessListItem > | ( EthereumTransactionAccessListItem ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CreateInfo , DispatchError > > > ;
125+ accountCreate : AugmentedCall < ApiType , ( from : AccountId | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionEip2930AccessListItem > > | null | Uint8Array | Vec < EthereumTransactionEip2930AccessListItem > | ( EthereumTransactionEip2930AccessListItem | { address ?: any ; storageKeys ?: any } | string | Uint8Array ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CreateInfo , DispatchError > > > ;
126126 /**
127127 * evm block limits
128128 **/
129129 blockLimits : AugmentedCall < ApiType , ( ) => Observable < BlockLimits > > ;
130130 /**
131131 * call evm contract
132132 **/
133- call : AugmentedCall < ApiType , ( from : H160 | string | Uint8Array , to : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionAccessListItem > > | null | Uint8Array | Vec < EthereumTransactionAccessListItem > | ( EthereumTransactionAccessListItem ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CallInfo , DispatchError > > > ;
133+ call : AugmentedCall < ApiType , ( from : H160 | string | Uint8Array , to : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionEip2930AccessListItem > > | null | Uint8Array | Vec < EthereumTransactionEip2930AccessListItem > | ( EthereumTransactionEip2930AccessListItem | { address ?: any ; storageKeys ?: any } | string | Uint8Array ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CallInfo , DispatchError > > > ;
134134 /**
135135 * create evm contract
136136 **/
137- create : AugmentedCall < ApiType , ( from : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionAccessListItem > > | null | Uint8Array | Vec < EthereumTransactionAccessListItem > | ( EthereumTransactionAccessListItem ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CreateInfo , DispatchError > > > ;
137+ create : AugmentedCall < ApiType , ( from : H160 | string | Uint8Array , data : Bytes | string | Uint8Array , value : Balance | AnyNumber | Uint8Array , gas_limit : u64 | AnyNumber | Uint8Array , storage_limit : u32 | AnyNumber | Uint8Array , access_list : Option < Vec < EthereumTransactionEip2930AccessListItem > > | null | Uint8Array | Vec < EthereumTransactionEip2930AccessListItem > | ( EthereumTransactionEip2930AccessListItem | { address ?: any ; storageKeys ?: any } | string | Uint8Array ) [ ] , estimate : bool | boolean | Uint8Array ) => Observable < Result < CreateInfo , DispatchError > > > ;
138138 /**
139139 * Generic call
140140 **/
0 commit comments