-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[help]I want to use your pallet-evm #575
Comments
@master-davidlee , if you are looking simply to add EVM compatibility to your runtime, I'd suggest to look at frontier template (https://github.com/paritytech/frontier/tree/master/template) , it is simpler to use. |
Yeah, I noticed this, but they are using frame 2.0. I want to use frame 3.0, only your pallet-EVM is frame 3.0 |
@JoshOrndorff , do we have a plan to port back the frame 3.0 to frontier directly ? |
First some nomenclature. Substrate has versions 2.0 and 3.0 as well as some older and newer versions. FRAME has versions v1 and v2. FRAMEv2 was introduced with Substrate 3.0. So there is no FRAME 3.0 (or FRAME v3). I assume you meant FRAMEv2. Our forked pallet EVM is based on frontier's upstream pallet evm. Ours is only known to work with the Substrate version specified in our We didn't actually update pallet evm to FRAME v2 ourselves. It was updated upstream in polkadot-evm/frontier#380 before we forked. The update was later reverted upstream as explained here polkadot-evm/frontier#380 (comment) I'm not 100% sure what incompatibilities sorpaas is talking about, but I also look forward to a day when this code makes it upstream. In terms of helping you get your template building, I recommend taking all of your evm-related dependencies from a single repo. So if you're using our pallet-evm, then also use our precompiles, our pallet ethereum, etc. And make sure you use the same Substrate dependency we do. If you still have trouble, please share a link to your code repo so I can clone it and reproduce your error completely. |
Hi guys, I want to add your pallet-evm to my node-template runtime, but
,and there are another 100 errors 😢 😱
this is my cargo.toml
this is my runtime/lib.rs
The text was updated successfully, but these errors were encountered: