diff --git a/Cargo.toml b/Cargo.toml index c8c00ba..987fb0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,12 +116,10 @@ pallet-vesting = { git = "https://github.com/paritytech/polkadot-sdk", default-f pallet-xc-asset-config = { path = "./pallets/xc-asset-config", default-features = false } # EVM & Ethereum -evm = { git = "https://github.com/rust-blockchain/evm", rev = "13240a8a551586fdef0b5028ed73af80b248092a" } -evm-gasometer = { git = "https://github.com/rust-blockchain/evm", rev = "13240a8a551586fdef0b5028ed73af80b248092a", default-features = false } -evm-runtime = { git = "https://github.com/rust-blockchain/evm", rev = "13240a8a551586fdef0b5028ed73af80b248092a", default-features = false } -ethereum = { version = "0.14.0", default-features = false, features = [ - "with-codec", -] } +evm = { version = "0.41.1", default-features = false } +evm-gasometer = { version = "0.41.0", default-features = false } +evm-runtime = { version = "0.41.0", default-features = false } +ethereum = { version = "0.15.0", default-features = false } # Frontier pallet-base-fee = { git = "https://github.com/polkadot-evm/frontier", default-features = false, branch = "polkadot-v1.9.0" } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 223b2b5..2cdb58e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -141,7 +141,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("origintrail-parachain"), impl_name: create_runtime_str!("neuroweb"), authoring_version: 1, - spec_version: 131, + spec_version: 132, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -662,7 +662,7 @@ impl pallet_evm_accounts::Config for Runtime { } parameter_types! { - pub DefaultBaseFeePerGas: U256 = U256::from(1_000_000_000); + pub DefaultBaseFeePerGas: U256 = U256::from(16); pub DefaultElasticity: Permill = Permill::from_parts(125_000); }