From 690b63bb3cbb1e4c1519237201f9d1a744767444 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 27 Jul 2021 16:37:04 +0000 Subject: [PATCH] feat: enable evm contract helpers --- --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -248,7 +248,11 @@ type Precompiles = (); type Currency = Balances; type Event = Event; - type OnMethodCall = pallet_nft::NftErcSupport; + type OnMethodCall = ( + pallet_nft::NftErcSupport, + pallet_evm_contract_helpers::HelpersOnMethodCall, + ); + type OnCreate = pallet_evm_contract_helpers::HelpersOnCreate; type ChainId = ChainId; type Runner = pallet_evm::runner::stack::Runner; type OnChargeTransaction = (); @@ -742,6 +746,18 @@ // impl pallet_contract_helpers::Config for Runtime {} +parameter_types! { + // 0x842899ECF380553E8a4de75bF534cdf6fBF64049 + pub const HelpersContractAddress: H160 = H160([ + 0x84, 0x28, 0x99, 0xec, 0xf3, 0x80, 0x55, 0x3e, 0x8a, 0x4d, 0xe7, 0x5b, 0xf5, 0x34, 0xcd, 0xf6, 0xfb, 0xf6, 0x40, 0x49, + ]); +} + +impl pallet_evm_contract_helpers::Config for Runtime { + type Event = Event; + type ContractAddress = HelpersContractAddress; +} + construct_runtime!( pub enum Runtime where Block = Block, -- gitstuff