-
Notifications
You must be signed in to change notification settings - Fork 487
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
Introduce EVMFungibleAdapter #1282
Introduce EVMFungibleAdapter #1282
Conversation
Please merge this to master! @ahmadkaouk Thanks. I just find this is a critically broken change for the users of this repo. |
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.
Our team would also appreciate having this changed merged as soon as possible as pallet_transaction_payment::CurrencyAdapter
is already documented as deprecated and overdue to be removed entirely (March 2024).
* new EVMFungibleAdapter struct * Update comment
* new EVMFungibleAdapter struct * Update comment Co-authored-by: Ahmad Kaouk <[email protected]>
* new EVMFungibleAdapter struct * Update comment Co-authored-by: Ahmad Kaouk <[email protected]>
Introduce
EVMFungibleAdapter
, equivalent toEVMCurrencyAdapter
but forfungible
traits. This is in preparation for the deprecation of theCurrency
Trait and migration tofungible
(see paritytech/polkadot-sdk#226).Similar to
FungibleAdapter
ofpallet_transaction_payment
here.