difftreelog
Fix SponsorshipHandler
in: master
8 files changed
pallets/evm-contract-helpers/src/eth.rsdiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/eth.rs
+++ b/pallets/evm-contract-helpers/src/eth.rs
@@ -18,7 +18,7 @@
use evm_coder::{abi::AbiWriter, execution::Result, generate_stubgen, solidity_interface, types::*};
use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};
use pallet_evm::{
- ExitRevert, OnCreate, OnMethodCall, PrecompileResult, PrecompileFailure, AddressMapping
+ ExitRevert, OnCreate, OnMethodCall, PrecompileResult, PrecompileFailure, account::CrossAccountId
};
use sp_core::H160;
use crate::{
@@ -26,7 +26,6 @@
};
use frame_support::traits::Get;
use up_sponsorship::SponsorshipHandler;
-use up_evm_mapping::EvmBackwardsAddressMapping;
use sp_std::vec::Vec;
struct ContractHelpers<T: Config>(SubstrateRecorder<T>);
@@ -180,20 +179,19 @@
}
pub struct HelpersContractSponsoring<T: Config>(PhantomData<*const T>);
-impl<T: Config> SponsorshipHandler<T::AccountId, (H160, Vec<u8>)> for HelpersContractSponsoring<T> {
- fn get_sponsor(who: &T::AccountId, call: &(H160, Vec<u8>)) -> Option<T::AccountId> {
+impl<T: Config> SponsorshipHandler<T::CrossAccountId, (H160, Vec<u8>)> for HelpersContractSponsoring<T> {
+ fn get_sponsor(who: &T::CrossAccountId, call: &(H160, Vec<u8>)) -> Option<T::CrossAccountId> {
let mode = <Pallet<T>>::sponsoring_mode(call.0);
if mode == SponsoringModeT::Disabled {
return None;
}
- let who = T::EvmBackwardsAddressMapping::from_account_id(who.clone());
- if mode == SponsoringModeT::Allowlisted && !<Pallet<T>>::allowed(call.0, who) {
+ if mode == SponsoringModeT::Allowlisted && !<Pallet<T>>::allowed(call.0, *who.as_eth()) {
return None;
}
let block_number = <frame_system::Pallet<T>>::block_number() as T::BlockNumber;
- if let Some(last_tx_block) = <SponsorBasket<T>>::get(&call.0, who) {
+ if let Some(last_tx_block) = <SponsorBasket<T>>::get(&call.0, who.as_eth()) {
let limit = <SponsoringRateLimit<T>>::get(&call.0);
let timeout = last_tx_block + limit;
@@ -202,9 +200,9 @@
}
}
- <SponsorBasket<T>>::insert(&call.0, who, block_number);
+ <SponsorBasket<T>>::insert(&call.0, who.as_eth(), block_number);
- let sponsor = T::EvmAddressMapping::into_account_id(call.0);
+ let sponsor = T::CrossAccountId::from_eth(call.0);
Some(sponsor)
}
}
pallets/evm-contract-helpers/src/lib.rsdiffbeforeafterboth--- a/pallets/evm-contract-helpers/src/lib.rs
+++ b/pallets/evm-contract-helpers/src/lib.rs
@@ -30,11 +30,9 @@
use sp_core::H160;
#[pallet::config]
- pub trait Config: frame_system::Config + pallet_evm_coder_substrate::Config {
+ pub trait Config: frame_system::Config + pallet_evm_coder_substrate::Config + pallet_evm::account::Config {
type ContractAddress: Get<H160>;
type DefaultSponsoringRateLimit: Get<Self::BlockNumber>;
- type EvmAddressMapping: pallet_evm::AddressMapping<Self::AccountId>;
- type EvmBackwardsAddressMapping: up_evm_mapping::EvmBackwardsAddressMapping<Self::AccountId>;
}
#[pallet::error]
pallets/evm-transaction-payment/src/lib.rsdiffbeforeafterboth--- a/pallets/evm-transaction-payment/src/lib.rs
+++ b/pallets/evm-transaction-payment/src/lib.rs
@@ -24,8 +24,6 @@
use sp_core::{H160, U256};
use sp_runtime::TransactionOutcome;
use up_sponsorship::SponsorshipHandler;
-use up_evm_mapping::EvmBackwardsAddressMapping;
-use pallet_evm::AddressMapping;
#[frame_support::pallet]
pub mod pallet {
@@ -36,7 +34,7 @@
#[pallet::config]
pub trait Config: frame_system::Config + pallet_evm::account::Config {
- type EvmSponsorshipHandler: SponsorshipHandler<Self::AccountId, (H160, Vec<u8>)>;
+ type EvmSponsorshipHandler: SponsorshipHandler<Self::CrossAccountId, (H160, Vec<u8>)>;
type Currency: Currency<Self::AccountId>;
}
@@ -58,13 +56,13 @@
}
pub struct TransactionValidityHack<T: Config>(PhantomData<*const T>);
-impl<T: Config> fp_evm::TransactionValidityHack<T::AccountId> for TransactionValidityHack<T> {
- fn who_pays_fee(origin: H160, reason: &WithdrawReason) -> Option<T::AccountId> {
+impl<T: Config> fp_evm::TransactionValidityHack<T::CrossAccountId> for TransactionValidityHack<T> {
+ fn who_pays_fee(origin: H160, reason: &WithdrawReason) -> Option<T::CrossAccountId> {
match reason {
WithdrawReason::Call { target, input } => {
// This method is only used for checking, we shouldn't touch storage in it
frame_support::storage::with_transaction(|| {
- let origin_sub = T::EvmAddressMapping::into_account_id(origin);
+ let origin_sub = T::CrossAccountId::from_eth(origin);
TransactionOutcome::Rollback(T::EvmSponsorshipHandler::get_sponsor(
&origin_sub,
&(*target, input.clone()),
@@ -88,13 +86,11 @@
reason: WithdrawReason,
fee: U256,
) -> core::result::Result<Self::LiquidityInfo, pallet_evm::Error<T>> {
- let who_pays_fee;
- if let WithdrawReason::Call { target, input } = &reason {
- who_pays_fee = <T as pallet_evm::account::Config>::CrossAccountId::from_sub(T::EvmSponsorshipHandler::get_sponsor(&who.as_sub(), &(*target, input.clone()))
- .unwrap_or(who.as_sub().clone()));
+ let who_pays_fee = if let WithdrawReason::Call { target, input } = &reason {
+ T::EvmSponsorshipHandler::get_sponsor(who, &(*target, input.clone())).unwrap_or(who.clone())
} else {
- who_pays_fee = who.clone();
- }
+ who.clone()
+ };
let negative_imbalance = EVMCurrencyAdapter::<<T as Config>::Currency, ()>::withdraw_fee(
&who_pays_fee,
@@ -145,6 +141,7 @@
<frame_system::RawOrigin<T::AccountId>>::Signed(who.clone()).into(),
)
.ok()?;
+ let who = T::CrossAccountId::from_sub(who.clone());
// Effects from EvmSponsorshipHandler are applied in OnChargeEvmTransaction by pallet_evm::runner
// TODO: Should we implement simulation mode (test, but do not apply effects) in `up-sponsorship`?
let sponsor = frame_support::storage::with_transaction(|| {
@@ -153,7 +150,7 @@
&(*target, input.clone()),
))
})?;
- Some(sponsor)
+ Some(sponsor.as_sub().clone())
}
_ => None,
}
pallets/unique/src/eth/sponsoring.rsdiffbeforeafterboth31use pallet_fungible::erc::{UniqueFungibleCall, ERC20Call};31use pallet_fungible::erc::{UniqueFungibleCall, ERC20Call};323233pub struct UniqueEthSponsorshipHandler<T: Config>(PhantomData<*const T>);33pub struct UniqueEthSponsorshipHandler<T: Config>(PhantomData<*const T>);34impl<T: Config> SponsorshipHandler<T::AccountId, (H160, Vec<u8>)> for UniqueEthSponsorshipHandler<T> {34impl<T: Config> SponsorshipHandler<T::CrossAccountId, (H160, Vec<u8>)> for UniqueEthSponsorshipHandler<T> {35 fn get_sponsor(who: &T::AccountId, call: &(H160, Vec<u8>)) -> Option<T::AccountId> {35 fn get_sponsor(who: &T::CrossAccountId, call: &(H160, Vec<u8>)) -> Option<T::CrossAccountId> {36 let collection_id = map_eth_to_id(&call.0)?;36 let collection_id = map_eth_to_id(&call.0)?;37 let collection = <CollectionHandle<T>>::new(collection_id)?;37 let collection = <CollectionHandle<T>>::new(collection_id)?;38 let sponsor = collection.sponsorship.sponsor()?.clone();38 let sponsor = collection.sponsorship.sponsor()?.clone();39 let who = T::CrossAccountId::from_sub(who.clone());40 let (method_id, mut reader) = AbiReader::new_call(&call.1).ok()?;39 let (method_id, mut reader) = AbiReader::new_call(&call.1).ok()?;41 match &collection.mode {40 Some(T::CrossAccountId::from_sub(match &collection.mode {42 crate::CollectionMode::NFT => {41 crate::CollectionMode::NFT => {43 let call = <UniqueNFTCall<T>>::parse(method_id, &mut reader).ok()??;42 let call = <UniqueNFTCall<T>>::parse(method_id, &mut reader).ok()??;44 match call {43 match call {66 #[allow(clippy::single_match)]65 #[allow(clippy::single_match)]67 match call {66 match call {68 UniqueFungibleCall::ERC20(ERC20Call::Transfer { .. }) => {67 UniqueFungibleCall::ERC20(ERC20Call::Transfer { .. }) => {69 withdraw_transfer::<T>(&collection, &who, &TokenId::default())68 withdraw_transfer::<T>(&collection, who, &TokenId::default())70 .map(|()| sponsor)69 .map(|()| sponsor)71 }70 }72 UniqueFungibleCall::ERC20(ERC20Call::TransferFrom { from, .. }) => {71 UniqueFungibleCall::ERC20(ERC20Call::TransferFrom { from, .. }) => {82 }81 }83 }82 }84 _ => None,83 _ => None,85 }84 }?))86 }85 }87}86}8887pallets/unique/src/tests.rsdiffbeforeafterboth--- a/pallets/unique/src/tests.rs
+++ b/pallets/unique/src/tests.rs
@@ -2866,8 +2866,7 @@
let origin2 = Origin::signed(user2);
let account2 = account(user2);
- let collection_id =
- create_test_collection_for_owner(&CollectionMode::NFT, user1, CollectionId(1));
+ let collection_id = create_test_collection_for_owner(&CollectionMode::NFT, user1, CollectionId(1));
assert_ok!(TemplateModule::set_collection_sponsor(origin1.clone(), collection_id, user1));
assert_ok!(TemplateModule::confirm_sponsorship(origin1.clone(), collection_id));
@@ -2877,12 +2876,7 @@
assert_ok!(TemplateModule::set_public_access_mode(origin1.clone(), collection_id, AccessMode::AllowList));
assert_ok!(TemplateModule::add_to_allow_list(origin1.clone(), collection_id, account2.clone()));
assert_ok!(TemplateModule::set_mint_permission(origin1.clone(), collection_id, true));
-
- assert_eq!(<pallet_balances::Pallet<Test>>::free_balance(user2), 0);
- let balance_before = <pallet_balances::Pallet<Test>>::free_balance(user1);
assert_ok!(TemplateModule::create_item(origin2, collection_id, account2, default_nft_data().into()));
- let balance_after = <pallet_balances::Pallet<Test>>::free_balance(user1);
- assert_ne!(balance_before, balance_after);
});
}
\ No newline at end of file
runtime/opal/src/lib.rsdiffbeforeafterboth--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -948,8 +948,6 @@
impl pallet_evm_contract_helpers::Config for Runtime {
type ContractAddress = HelpersContractAddress;
type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;
- type EvmAddressMapping = pallet_evm::HashedAddressMapping<Self::Hashing>;
- type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;
}
construct_runtime!(
tests/README.mddiffbeforeafterboth--- a/tests/README.md
+++ b/tests/README.md
@@ -20,7 +20,7 @@
git clone https://github.com/paritytech/polkadot-launch && cd polkadot-launch
```
-5. Run launch-test-env.sh from the root of this project
+5. Run launch-testnet.sh from the root of this project
## How to run tests
tests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth--- a/tests/src/eth/contractSponsoring.test.ts
+++ b/tests/src/eth/contractSponsoring.test.ts
@@ -288,14 +288,15 @@
const result = getCreateCollectionResult(events);
expect(result.success).to.be.true;
}
+
{
const nextTokenId = await contract.methods.nextTokenId().call();
expect(nextTokenId).to.be.equal('1');
- // const result = await contract.methods.mintWithTokenURI(
- // receiver,
- // nextTokenId,
- // 'Test URI',
- // ).send({from: userEth});
+ const result = await contract.methods.mintWithTokenURI(
+ receiver,
+ nextTokenId,
+ 'Test URI',
+ ).send({from: userEth});
// const events = normalizeEvents(result.events);
// expect(events).to.be.deep.equal([