-
Notifications
You must be signed in to change notification settings - Fork 4
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
Scaffolding an evm
ready chains with Polaris
#169
Comments
evm
ready chains with Ethermintevm
ready chains with Ethermint
I think testing is critical for this task, because the challenge is not to add support, but to maintain it. As soon as Ethermint changes something, we should be able to see it right away. For example, right now Ethermin is broken with |
Given that Ethermint is not open source anymore, I think polaris is a good alternative. |
evm
ready chains with Ethermintevm
ready chains with Polaris
Closing this, as this shouldn't be integrated into CLI directly. Possibly as an app if there's demand. |
There's a lot a demand, in the past few weeks, we got asked many time about this. Moving this to the app repo. |
Given that Polaris is archived, we should integrate one of those: |
https://github.com/crypto-org-chain/ethermint This would be the best option to Integrate |
Is your feature request related to a problem or issue you encountered? Please describe.
evm
is the most popular VM for smart contracts. Many developers like DYDX may want to transition to a self-sovereign blockchain but without giving up their Solidity smart contract architecture. Others may prefer to develop Solidity smart contracts rather than SDK modules.The
evm
module allows deploying Solidity smart contracts on a Cosmos blockchain. Hosted under https://github.com/berachain/polaris.We should, with the CLI, allow developers to easily scaffold a blockchain that can use the
evm
module.Describe the solution you'd like
My proposal would be to integrate this option as part of the
scaffold chain
command.From my understanding from https://github.com/berachain/polaris, integrating
evm
is not only about importing the module but also integrating Ethereum RPC server, customization inapp
to comply with Ethereum standards, and potentially other modifications.This would make a solution with
cli scaffold import evm
too complex, even if the SDK support better module wiring in the SDK. And developers may know if they consider developing an EVM blockchain before starting their project most of the time.The solution would be to add a flag
--evm
to thechain
command.Bootstrap a chain ready to start a eth rpc server.
The scaffolded chain should support further scaffolding commands after being scaffolded:
Bonus: scaffolding an Hardhat environment as well to make it ready developing Solidity smart contracts
The text was updated successfully, but these errors were encountered: