Skip to content

Commit 7129d98

Browse files
committed
Storage Migrations
1 parent 85242d2 commit 7129d98

File tree

19 files changed

+394
-253
lines changed

19 files changed

+394
-253
lines changed

integration-tests/src/constants.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -358,9 +358,10 @@ pub mod polimec {
358358
let usdc_asset_id = AcceptedFundingAsset::USDC.id();
359359
let weth_asset_id = AcceptedFundingAsset::WETH.id();
360360

361-
let mut funded_accounts = vec![
362-
(PolimecNet::sovereign_account_id_of((Parent, xcm::prelude::Parachain(1000)).into()), INITIAL_DEPOSIT),
363-
];
361+
let mut funded_accounts = vec![(
362+
PolimecNet::sovereign_account_id_of((Parent, xcm::prelude::Parachain(1000)).into()),
363+
INITIAL_DEPOSIT,
364+
)];
364365
let alice_account = PolimecNet::account_id_of(accounts::ALICE);
365366
let bob_account: AccountId = PolimecNet::account_id_of(accounts::BOB);
366367
let charlie_account: AccountId = PolimecNet::account_id_of(accounts::CHARLIE);

integration-tests/src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ decl_test_networks! {
8383

8484
/// Shortcuts to reduce boilerplate on runtime types
8585
pub mod shortcuts {
86-
use super::{
87-
Chain, Polimec, PolimecParaPallet, PolkadotNet, PolkadotRelay as Polkadot,
88-
PolkadotRelayRelayPallet,
89-
};
86+
use super::{Chain, Polimec, PolimecParaPallet, PolkadotNet, PolkadotRelay as Polkadot, PolkadotRelayRelayPallet};
9087

9188
pub type PolkaNet = Polkadot<PolkadotNet>;
9289
pub type PolimecNet = Polimec<PolkadotNet>;

integration-tests/src/tests/ct_migration.rs

Whitespace-only changes.

pallets/funding/src/functions/1_application.rs

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ impl<T: Config> Pallet<T> {
4646
},
4747
usd_bid_on_oversubscription: None,
4848
funding_end_block: None,
49-
migration_type: None,
5049
};
5150

5251
let bucket: BucketOf<T> = Self::create_bucket_from_metadata(project_metadata)?;

pallets/funding/src/functions/5_settlement.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ impl<T: Config> Pallet<T> {
137137
Self::create_migration(
138138
project_id,
139139
&evaluation.evaluator,
140-
evaluation.id,
141140
ParticipationType::Evaluation,
142141
ct_rewarded,
143142
duration,
@@ -209,7 +208,6 @@ impl<T: Config> Pallet<T> {
209208
Self::create_migration(
210209
project_id,
211210
&bid.bidder,
212-
bid.id,
213211
ParticipationType::Bid,
214212
final_ct_amount,
215213
ct_vesting_duration,
@@ -423,7 +421,6 @@ impl<T: Config> Pallet<T> {
423421
pub fn create_migration(
424422
project_id: ProjectId,
425423
origin: &AccountIdOf<T>,
426-
id: u32,
427424
participation_type: ParticipationType,
428425
ct_amount: Balance,
429426
vesting_time: BlockNumberFor<T>,
@@ -437,7 +434,7 @@ impl<T: Config> Pallet<T> {
437434
}
438435

439436
let mut user_migrations = user_migrations.to_vec();
440-
let migration_origin = MigrationOrigin { user: receiving_account, id, participation_type };
437+
let migration_origin = MigrationOrigin { user: receiving_account, participation_type };
441438
let vesting_time: u64 = vesting_time.try_into().map_err(|_| Error::<T>::BadMath)?;
442439
let migration_info: MigrationInfo = (ct_amount, vesting_time).into();
443440
let migration = Migration::new(migration_origin, migration_info);

pallets/funding/src/functions/6_ct_migration.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ impl<T: Config> Pallet<T> {
55
/// Mark a project as ready for offchain migration confirmations.
66
#[transactional]
77
pub fn do_start_offchain_migration(project_id: ProjectId, caller: AccountIdOf<T>) -> DispatchResultWithPostInfo {
8-
let mut project_details = ProjectsDetails::<T>::get(project_id).ok_or(Error::<T>::ProjectDetailsNotFound)?;
8+
let project_details = ProjectsDetails::<T>::get(project_id).ok_or(Error::<T>::ProjectDetailsNotFound)?;
99

1010
ensure!(project_details.issuer_account == caller, Error::<T>::NotIssuer);
1111

12-
project_details.migration_type = Some(MigrationType::Offchain);
13-
1412
Self::transition_project(
1513
project_id,
1614
project_details,

pallets/funding/src/functions/misc.rs

+2-79
Original file line numberDiff line numberDiff line change
@@ -236,70 +236,6 @@ impl<T: Config> Pallet<T> {
236236
Ok((liquidity_pools_reward_pot, long_term_holder_reward_pot))
237237
}
238238

239-
pub fn migrations_per_xcm_message_allowed() -> u32 {
240-
const MAX_WEIGHT: Weight = Weight::from_parts(20_000_000_000, 1_000_000);
241-
242-
let one_migration_bytes = (0u128, 0u64).encode().len() as u32;
243-
244-
// our encoded call starts with pallet index 51, and call index 0
245-
let mut encoded_call = vec![51u8, 0];
246-
let encoded_first_param = [0u8; 32].encode();
247-
let encoded_second_param = Vec::<MigrationInfo>::new().encode();
248-
// we append the encoded parameters, with our migrations vec being empty for now
249-
encoded_call.extend_from_slice(encoded_first_param.as_slice());
250-
encoded_call.extend_from_slice(encoded_second_param.as_slice());
251-
252-
let base_xcm_message: Xcm<()> = Xcm(vec![
253-
UnpaidExecution { weight_limit: WeightLimit::Unlimited, check_origin: None },
254-
Transact { origin_kind: OriginKind::Native, require_weight_at_most: MAX_WEIGHT, call: encoded_call.into() },
255-
ReportTransactStatus(QueryResponseInfo {
256-
destination: Parachain(3344).into(),
257-
query_id: 0,
258-
max_weight: MAX_WEIGHT,
259-
}),
260-
]);
261-
let xcm_size = base_xcm_message.encode().len();
262-
263-
let available_bytes_for_migration_per_message =
264-
T::RequiredMaxMessageSize::get().saturating_sub(xcm_size as u32);
265-
266-
available_bytes_for_migration_per_message.saturating_div(one_migration_bytes)
267-
}
268-
269-
// /// Check if the user has no participations (left) in the project.
270-
// pub fn user_has_no_participations(project_id: ProjectId, user: AccountIdOf<T>) -> bool {
271-
// Evaluations::<T>::iter_prefix_values((project_id, user.clone())).next().is_none() &&
272-
// Bids::<T>::iter_prefix_values((project_id, user.clone())).next().is_none()
273-
// }
274-
275-
pub fn construct_migration_xcm_message(
276-
migrations: WeakBoundedVec<Migration, ConstU32<10_000>>,
277-
query_id: QueryId,
278-
pallet_index: PalletIndex,
279-
) -> Xcm<()> {
280-
// TODO: adjust this as benchmarks for polimec-receiver are written
281-
const MAX_WEIGHT: Weight = Weight::from_parts(10_000, 0);
282-
const MAX_RESPONSE_WEIGHT: Weight = Weight::from_parts(700_000_000, 50_000);
283-
let migrations_item = Migrations::from(migrations.to_vec());
284-
285-
// First byte is the pallet index, second byte is the call index
286-
let mut encoded_call = vec![pallet_index, 0];
287-
288-
// migrations_item can contain a Maximum of MaxParticipationsPerUser migrations which
289-
// is 48. So we know that there is an upper limit to this encoded call, namely 48 *
290-
// Migration encode size.
291-
encoded_call.extend_from_slice(migrations_item.encode().as_slice());
292-
Xcm(vec![
293-
UnpaidExecution { weight_limit: WeightLimit::Unlimited, check_origin: None },
294-
Transact { origin_kind: OriginKind::Native, require_weight_at_most: MAX_WEIGHT, call: encoded_call.into() },
295-
ReportTransactStatus(QueryResponseInfo {
296-
destination: ParentThen(Parachain(POLIMEC_PARA_ID).into()).into(),
297-
query_id,
298-
max_weight: MAX_RESPONSE_WEIGHT,
299-
}),
300-
])
301-
}
302-
303239
pub fn change_migration_status(
304240
project_id: ProjectId,
305241
user: T::AccountId,
@@ -309,22 +245,9 @@ impl<T: Config> Pallet<T> {
309245
let (current_status, migrations) =
310246
UserMigrations::<T>::get((project_id, user.clone())).ok_or(Error::<T>::NoMigrationsFound)?;
311247

312-
let status = match status {
313-
MigrationStatus::Sent(_)
314-
if matches!(current_status, MigrationStatus::NotStarted | MigrationStatus::Failed) =>
315-
status,
316-
MigrationStatus::Confirmed
317-
if matches!(project_details.migration_type, Some(MigrationType::Offchain)) ||
318-
(matches!(project_details.migration_type, Some(MigrationType::Pallet(_))) &&
319-
matches!(current_status, MigrationStatus::Sent(_))) =>
320-
{
321-
UnmigratedCounter::<T>::mutate(project_id, |counter| *counter = counter.saturating_sub(1));
322-
status
323-
},
324-
MigrationStatus::Failed if matches!(current_status, MigrationStatus::Sent(_)) => status,
248+
ensure!(current_status == MigrationStatus::NotStarted, Error::<T>::MigrationAlreadyConfirmed);
325249

326-
_ => return Err(Error::<T>::NotAllowed.into()),
327-
};
250+
UnmigratedCounter::<T>::mutate(project_id, |counter| *counter = counter.saturating_sub(1));
328251
UserMigrations::<T>::insert((project_id, user), (status, migrations));
329252
ProjectsDetails::<T>::insert(project_id, project_details);
330253

pallets/funding/src/functions/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@ use frame_support::{
1919
use frame_system::pallet_prelude::BlockNumberFor;
2020
use polimec_common::{
2121
credentials::{Did, InvestorType},
22-
migration_types::{MigrationInfo, Migrations},
2322
USD_DECIMALS,
2423
};
2524
use sp_arithmetic::{traits::Zero, Percent, Perquintill};
2625
use sp_runtime::traits::Convert;
2726

28-
const POLIMEC_PARA_ID: u32 = 3344u32;
2927
#[path = "1_application.rs"]
3028
mod application;
3129
#[path = "3_auction.rs"]

pallets/funding/src/instantiator/chain_interactions.rs

+15-17
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ impl<
280280
},
281281
usd_bid_on_oversubscription: None,
282282
funding_end_block: None,
283-
migration_type: None,
284283
};
285284
assert_eq!(metadata, expected_metadata);
286285
assert_eq!(details, expected_details);
@@ -540,7 +539,6 @@ impl<
540539
project_id,
541540
account,
542541
amount,
543-
evaluation.id,
544542
ParticipationType::Evaluation,
545543
evaluation.receiving_account,
546544
is_successful,
@@ -586,7 +584,6 @@ impl<
586584
project_id,
587585
bid.bidder,
588586
bid_ct_amount,
589-
bid.id,
590587
ParticipationType::Bid,
591588
bid.receiving_account,
592589
is_successful,
@@ -599,7 +596,6 @@ impl<
599596
project_id: ProjectId,
600597
account: AccountIdOf<T>,
601598
amount: Balance,
602-
id: u32,
603599
participation_type: ParticipationType,
604600
receiving_account: Junction,
605601
should_exist: bool,
@@ -610,19 +606,21 @@ impl<
610606
assert!(!should_exist);
611607
return;
612608
};
613-
let expected_migration_origin = MigrationOrigin { user: receiving_account, id, participation_type };
614-
615-
let Some(migration) =
616-
user_migrations.into_iter().find(|migration| migration.origin == expected_migration_origin)
617-
else {
618-
assert!(!should_exist);
619-
return;
620-
};
621-
assert_close_enough!(
622-
migration.info.contribution_token_amount,
623-
amount,
624-
Perquintill::from_rational(999u64, 1000u64)
625-
);
609+
let expected_migration_origin = MigrationOrigin { user: receiving_account, participation_type };
610+
611+
let is_migration_found = user_migrations.into_iter().any(|migration| {
612+
migration.origin == expected_migration_origin &&
613+
is_close_enough!(
614+
migration.info.contribution_token_amount,
615+
amount,
616+
Perquintill::from_rational(999u64, 1000u64)
617+
)
618+
});
619+
if should_exist {
620+
assert!(is_migration_found, "Migration not found for user {:?}", account);
621+
} else {
622+
assert!(!is_migration_found, "Migration found for user {:?}", account);
623+
}
626624
}
627625

628626
pub fn create_new_project(

pallets/funding/src/instantiator/macros.rs

+11
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ macro_rules! assert_close_enough {
4040
};
4141
}
4242

43+
#[macro_export]
44+
macro_rules! is_close_enough {
45+
($real:expr, $desired:expr, $min_percentage:expr) => {{
46+
if $real <= $desired {
47+
Perquintill::from_rational($real, $desired) >= $min_percentage
48+
} else {
49+
Perquintill::from_rational($desired, $real) >= $min_percentage
50+
}
51+
}};
52+
}
53+
4354
#[macro_export]
4455
macro_rules! find_event {
4556
($runtime:ty, $pattern:pat, $($field_name:ident == $field_value:expr),+) => {

pallets/funding/src/lib.rs

+4-31
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ use sp_arithmetic::traits::{One, Saturating};
9191
use sp_runtime::{traits::AccountIdConversion, FixedPointNumber, FixedU128};
9292
use sp_std::prelude::*;
9393
pub use types::*;
94-
use xcm::v4::{prelude::*};
94+
use xcm::v4::prelude::*;
9595

9696
pub mod functions;
9797
pub mod storage_migrations;
@@ -144,7 +144,6 @@ pub mod pallet {
144144
#[allow(clippy::wildcard_imports)]
145145
use super::*;
146146
use crate::traits::{BondingRequirementCalculation, VestingDurationCalculation};
147-
use core::ops::RangeInclusive;
148147
use frame_support::{
149148
pallet_prelude::*,
150149
storage::KeyPrefixIterator,
@@ -173,7 +172,6 @@ pub mod pallet {
173172
pub trait Config:
174173
frame_system::Config<Nonce = u32>
175174
+ pallet_balances::Config<Balance = Balance>
176-
+ pallet_xcm::Config
177175
+ pallet_linear_release::Config<Balance = Balance, RuntimeHoldReason = RuntimeHoldReasonOf<Self>>
178176
+ pallet_proxy_bonding::Config<
179177
RuntimeHoldReason = RuntimeHoldReasonOf<Self>,
@@ -200,10 +198,6 @@ pub mod pallet {
200198
/// BlockNumber used for PLMC vesting durations on this chain, and CT vesting durations on funded chains.
201199
type BlockNumber: IsType<BlockNumberFor<Self>> + Into<u64>;
202200

203-
/// The length (expressed in number of blocks) of the Community Round.
204-
#[pallet::constant]
205-
type CommunityRoundDuration: Get<BlockNumberFor<Self>>;
206-
207201
/// The currency used for minting contribution tokens as fungible assets (i.e pallet-assets)
208202
type ContributionTokenCurrency: fungibles::Create<AccountIdOf<Self>, AssetId = ProjectId, Balance = Balance>
209203
+ fungibles::Destroy<AccountIdOf<Self>, AssetId = ProjectId, Balance = Balance>
@@ -256,17 +250,9 @@ pub mod pallet {
256250
Success = (AccountIdOf<Self>, Did, InvestorType, Cid),
257251
>;
258252

259-
/// Range of max_capacity_thresholds values for the hrmp config where we accept the incoming channel request
260-
#[pallet::constant]
261-
type MaxCapacityThresholds: Get<RangeInclusive<u32>>;
262-
263253
#[pallet::constant]
264254
type MinUsdPerEvaluation: Get<Balance>;
265255

266-
/// RangeInclusive of max_message_size values for the hrmp config where we accept the incoming channel request
267-
#[pallet::constant]
268-
type MaxMessageSizeThresholds: Get<RangeInclusive<u32>>;
269-
270256
/// Multiplier type that decides how much PLMC needs to be bonded for a token buy/bid
271257
type Multiplier: Parameter
272258
+ BondingRequirementCalculation
@@ -295,21 +281,6 @@ pub mod pallet {
295281
/// Method to get the price of an asset like USDT or PLMC. Likely to come from an oracle
296282
type PriceProvider: ProvideAssetPrice<AssetId = AssetIdOf<Self>, Price = Self::Price>;
297283

298-
/// The length (expressed in number of blocks) of the Remainder Round.
299-
#[pallet::constant]
300-
type RemainderRoundDuration: Get<BlockNumberFor<Self>>;
301-
302-
/// max_capacity config required for the channel from polimec to the project
303-
#[pallet::constant]
304-
type RequiredMaxCapacity: Get<u32>;
305-
306-
/// max_message_size config required for the channel from polimec to the project
307-
#[pallet::constant]
308-
type RequiredMaxMessageSize: Get<u32>;
309-
310-
/// The runtime enum constructed by the construct_runtime macro
311-
type RuntimeCall: Parameter + IsType<<Self as pallet_xcm::Config>::RuntimeCall> + From<Call<Self>>;
312-
313284
/// The event enum constructed by the construct_runtime macro
314285
type RuntimeEvent: From<Event<Self>>
315286
+ TryInto<Event<Self>>
@@ -655,6 +626,8 @@ pub mod pallet {
655626
SettlementNotComplete,
656627
/// Tried to mark a project's CT migration as finished but there are still migrations to be confirmed
657628
MigrationsStillPending,
629+
/// Tried to confirm an already confirmed user CT migration
630+
MigrationAlreadyConfirmed,
658631
}
659632

660633
#[pallet::call]
@@ -955,4 +928,4 @@ pub mod pallet {
955928
weight_consumed
956929
}
957930
}
958-
}
931+
}

pallets/funding/src/mock.rs

-7
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ impl Config for TestRuntime {
405405
type AuctionRoundDuration = AuctionRoundDuration;
406406
type BlockNumber = BlockNumber;
407407
type BlockchainOperationTreasury = BlockchainOperationTreasuryAccount;
408-
type CommunityRoundDuration = CommunityRoundDuration;
409408
type ContributionTokenCurrency = ContributionTokens;
410409
type ContributionTreasury = ContributionTreasury;
411410
type DaysToBlocks = DaysToBlocks;
@@ -416,19 +415,13 @@ impl Config for TestRuntime {
416415
type FundingCurrency = ForeignAssets;
417416
type FundingSuccessThreshold = FundingSuccessThreshold;
418417
type InvestorOrigin = EnsureInvestor<TestRuntime>;
419-
type MaxCapacityThresholds = MaxCapacityThresholds;
420-
type MaxMessageSizeThresholds = MaxMessageSizeThresholds;
421418
type MinUsdPerEvaluation = MinUsdPerEvaluation;
422419
type Multiplier = Multiplier;
423420
type NativeCurrency = Balances;
424421
type OnSlash = ();
425422
type PalletId = FundingPalletId;
426423
type Price = FixedU128;
427424
type PriceProvider = ConstPriceProvider;
428-
type RemainderRoundDuration = RemainderRoundDuration;
429-
type RequiredMaxCapacity = RequiredMaxCapacity;
430-
type RequiredMaxMessageSize = RequiredMaxMessageSize;
431-
type RuntimeCall = RuntimeCall;
432425
type RuntimeEvent = RuntimeEvent;
433426
type RuntimeHoldReason = RuntimeHoldReason;
434427
type RuntimeOrigin = RuntimeOrigin;

0 commit comments

Comments
 (0)