@@ -69,6 +69,7 @@ use sp_version::NativeVersion;
69
69
use sp_version:: RuntimeVersion ;
70
70
use subtensor_precompiles:: Precompiles ;
71
71
use subtensor_runtime_common:: { AlphaCurrency , time:: * , * } ;
72
+ use ethereum:: AuthorizationList ;
72
73
73
74
// A few exports that help ease life for downstream crates.
74
75
pub use frame_support:: {
@@ -2004,6 +2005,7 @@ impl_runtime_apis! {
2004
2005
nonce: Option <U256 >,
2005
2006
estimate: bool ,
2006
2007
access_list: Option <Vec <( H160 , Vec <H256 >) >>,
2008
+ authorization_list: Option <AuthorizationList >,
2007
2009
) -> Result <pallet_evm:: CallInfo , sp_runtime:: DispatchError > {
2008
2010
use pallet_evm:: GasWeightMapping as _;
2009
2011
@@ -2065,6 +2067,7 @@ impl_runtime_apis! {
2065
2067
max_priority_fee_per_gas,
2066
2068
nonce,
2067
2069
access_list. unwrap_or_default( ) ,
2070
+ authorization_list. unwrap_or_default( ) ,
2068
2071
false ,
2069
2072
true ,
2070
2073
weight_limit,
@@ -2083,6 +2086,7 @@ impl_runtime_apis! {
2083
2086
nonce: Option <U256 >,
2084
2087
estimate: bool ,
2085
2088
access_list: Option <Vec <( H160 , Vec <H256 >) >>,
2089
+ authorization_list: Option <AuthorizationList >,
2086
2090
) -> Result <pallet_evm:: CreateInfo , sp_runtime:: DispatchError > {
2087
2091
use pallet_evm:: GasWeightMapping as _;
2088
2092
@@ -2147,6 +2151,7 @@ impl_runtime_apis! {
2147
2151
access_list. unwrap_or_default( ) ,
2148
2152
whitelist,
2149
2153
whitelist_disabled,
2154
+ authorization_list. unwrap_or_default( ) ,
2150
2155
false ,
2151
2156
true ,
2152
2157
weight_limit,
0 commit comments