-
Notifications
You must be signed in to change notification settings - Fork 367
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
Enable pallet-account on shibuya #913
Conversation
impl pallet_evm::Config for Runtime { | ||
type FeeCalculator = BaseFee; | ||
type GasWeightMapping = pallet_evm::FixedGasWeightMapping<Self>; | ||
type WeightPerGas = WeightPerGas; | ||
type BlockHashMapping = pallet_ethereum::EthereumBlockHashMapping<Runtime>; | ||
type CallOrigin = pallet_evm::EnsureAddressRoot<AccountId>; | ||
type CallOrigin = EnsureEvmOrigin; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should remain root
- it's only related to who can call the actual pallet-evm
extrinsics (which should be no one), it won't help with signature verification in pallet-ethereum
.
The whole point of switching away from pallet-evm
is to still emit relevant events for EVM indexers. It's all described in the BL ticket.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This approach makes possible substrate users call EVM without any changes in frontier, didn’t it good enough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not, details are in the backlog item.
This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
This PR was closed because it has been stalled for 14 days with no activity. |
Pull Request Summary
Accompany PR for AstarNetwork/astar-frame#130
Check list