This repository was archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
[Pending] Rebond unlocking chunks #97
Draft
shunsukew
wants to merge
17
commits into
polkadot-v0.9.29
Choose a base branch
from
feature/ds-rebond-unlocking-chunks
base: polkadot-v0.9.29
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
45b53b3
rebond unlocking chunks
shunsukew 04a6b1f
up
shunsukew de3ff1e
up
shunsukew f36013d
cargo fmt
shunsukew 86a2c09
added precompiles and chain extensions
shunsukew c391f65
cargo fmt
shunsukew f27a1ad
benchmarking
shunsukew 292cfee
fix bench
shunsukew 719024d
fix bench
shunsukew 93286fc
updated weights info
shunsukew 7059ffa
fix locked amount
shunsukew 852fb39
update test
shunsukew 0470a5e
Merge branch 'polkadot-v0.9.28' into feature/ds-rebond-unlocking-chunks
shunsukew 7a8f3b5
up
shunsukew 5c36af9
cargo fmt
shunsukew 89cf22b
Merge branch 'polkadot-v0.9.29' into feature/ds-rebond-unlocking-chunks
shunsukew a3d98b1
changed branch base to polkadot-v0.9.29
shunsukew File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -218,6 +218,8 @@ pub mod pallet { | |
| BalanceOf<T>, | ||
| T::SmartContract, | ||
| ), | ||
| /// Account has rebonded unlocking chunks and staked funds on a smart contract. | ||
| RebondAndStake(T::AccountId, T::SmartContract, BalanceOf<T>) | ||
| } | ||
|
|
||
| #[pallet::error] | ||
|
|
@@ -270,6 +272,8 @@ pub mod pallet { | |
| NotActiveStaker, | ||
| /// Transfering nomination to the same contract | ||
| NominationTransferToSameContract, | ||
| /// There are no previously unbonded funds that can be rebonded and re-staked. | ||
| NothingToRebond, | ||
| } | ||
|
|
||
| #[pallet::hooks] | ||
|
|
@@ -570,6 +574,78 @@ pub mod pallet { | |
| Ok(().into()) | ||
| } | ||
|
|
||
| /// Lock up and stake unbonded chunks of origin account. | ||
| /// | ||
| /// `value` must be more than the `minimum_balance` specified by `MinimumStakingAmount` | ||
| /// unless account already has bonded value equal or more than 'minimum_balance'. | ||
| /// | ||
| /// The dispatch origin for this call must be _Signed_ by the staker's account. | ||
| #[pallet::weight(T::WeightInfo::rebond_and_stake())] | ||
| pub fn rebond_and_stake( | ||
| origin: OriginFor<T>, | ||
| contract_id: T::SmartContract, | ||
| #[pallet::compact] value: BalanceOf<T>, | ||
|
shunsukew marked this conversation as resolved.
Outdated
|
||
| ) -> DispatchResultWithPostInfo { | ||
| Self::ensure_pallet_enabled()?; | ||
| let staker = ensure_signed(origin)?; | ||
|
|
||
| // Check that contract is ready for staking. | ||
| ensure!( | ||
| Self::is_active(&contract_id), | ||
| Error::<T>::NotOperatedContract | ||
| ); | ||
|
|
||
| // Get the staking ledger or create an entry if it doesn't exist. | ||
| let mut ledger = Self::ledger(&staker); | ||
| ensure!( | ||
| !ledger.unbonding_info.is_empty(), | ||
| Error::<T>::NothingToRebond | ||
| ); | ||
|
|
||
| // Sort chunks descending order by unlock_era, so that chunks with bigger era_index are collected with priority. | ||
| ledger.unbonding_info.sort(unlock_era_desc); | ||
| let (value_to_stake, mut remaining_chunks) = ledger.unbonding_info.collect_amount(value); | ||
| ensure!( | ||
| value_to_stake > Zero::zero(), | ||
| Error::<T>::StakingWithNoValue | ||
| ); | ||
|
|
||
| let current_era = Self::current_era(); | ||
| let mut staking_info = | ||
| Self::contract_stake_info(&contract_id, current_era).unwrap_or_default(); | ||
| let mut staker_info = Self::staker_info(&staker, &contract_id); | ||
|
|
||
| Self::stake_on_contract( | ||
| &mut staker_info, | ||
| &mut staking_info, | ||
| value_to_stake, | ||
| current_era, | ||
| )?; | ||
|
|
||
| remaining_chunks.sort(unlock_era_asc); | ||
| ledger.unbonding_info = remaining_chunks; | ||
| ledger.locked = ledger.locked.saturating_add(value_to_stake); | ||
|
|
||
| GeneralEraInfo::<T>::mutate(¤t_era, |value| { | ||
| if let Some(x) = value { | ||
| x.staked = x.staked.saturating_add(value_to_stake); | ||
| x.locked = x.locked.saturating_add(value_to_stake); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is incorrect - TVL doesn't increase after this since unbonding chunks are still considered to be locked. UT should be updated to catch this. |
||
| } | ||
| }); | ||
|
|
||
| Self::update_ledger(&staker, ledger); | ||
| Self::update_staker_info(&staker, &contract_id, staker_info); | ||
| ContractEraStake::<T>::insert(&contract_id, current_era, staking_info); | ||
|
|
||
| Self::deposit_event(Event::<T>::RebondAndStake( | ||
| staker, | ||
| contract_id, | ||
| value_to_stake, | ||
| )); | ||
|
|
||
| Ok(().into()) | ||
| } | ||
|
|
||
| /// Withdraw all funds that have completed the unbonding process. | ||
| /// | ||
| /// If there are unbonding chunks which will be fully unbonded in future eras, | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -353,6 +353,72 @@ pub(crate) fn assert_unbond_and_unstake( | |
| assert_eq!(init_state.era_info.locked, final_state.era_info.locked); | ||
| } | ||
|
|
||
| pub(crate) fn assert_rebond_and_stake( | ||
| staker: AccountId, | ||
| contract_id: &MockSmartContract<AccountId>, | ||
| value: Balance, | ||
| ) { | ||
| // Get latest staking info | ||
| let current_era = DappsStaking::current_era(); | ||
| let init_state = MemorySnapshot::all(current_era, &contract_id, staker); | ||
| let mut init_ledger = init_state.ledger.clone(); | ||
|
|
||
| // Define expected state after extrinsic | ||
| init_ledger.unbonding_info.sort(unlock_era_desc); | ||
| let (expected_stake_amount, mut expected_remaining_info) = init_ledger.unbonding_info.collect_amount(value); | ||
| expected_remaining_info.sort(unlock_era_asc); | ||
|
|
||
| // Ensure op is successful and event is emitted | ||
| assert_ok!(DappsStaking::rebond_and_stake(Origin::signed(staker), contract_id.clone(), value)); | ||
| System::assert_last_event(mock::Event::DappsStaking(Event::RebondAndStake( | ||
| staker, | ||
| contract_id.clone(), | ||
| expected_stake_amount, | ||
| ))); | ||
|
|
||
| // Fetch the latest unbonding info so we can compare it to initial unbonding info | ||
| let final_state = MemorySnapshot::all(current_era, &contract_id, staker); | ||
| let final_ledger = final_state.ledger.clone(); | ||
| assert_eq!( | ||
| final_ledger.unbonding_info, | ||
| expected_remaining_info, | ||
| ); | ||
| assert_eq!( | ||
| final_ledger.locked, | ||
| init_ledger.locked + expected_stake_amount | ||
| ); | ||
|
|
||
| // In case staker hasn't been staking this contract until now | ||
| if init_state.staker_info.latest_staked_value() == 0 { | ||
| assert!(GeneralStakerInfo::<TestRuntime>::contains_key( | ||
| &staker, | ||
| contract_id | ||
| )); | ||
| assert_eq!( | ||
| final_state.contract_info.number_of_stakers, | ||
| init_state.contract_info.number_of_stakers + 1 | ||
| ); | ||
| } | ||
|
|
||
| // Verify the remaining states | ||
| assert_eq!( | ||
| final_state.era_info.staked, | ||
| init_state.era_info.staked + expected_stake_amount | ||
| ); | ||
| assert_eq!( | ||
| final_state.era_info.locked, | ||
| init_state.era_info.locked + expected_stake_amount | ||
| ); | ||
|
Comment on lines
+403
to
+406
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is incorrect, see my comment above. |
||
| assert_eq!( | ||
| final_state.contract_info.total, | ||
| init_state.contract_info.total + expected_stake_amount | ||
| ); | ||
| assert_eq!( | ||
| final_state.staker_info.latest_staked_value(), | ||
| init_state.staker_info.latest_staked_value() + expected_stake_amount | ||
| ); | ||
| } | ||
|
|
||
| /// Used to perform start_unbonding with success and storage assertions. | ||
| pub(crate) fn assert_withdraw_unbonded(staker: AccountId) { | ||
| let current_era = DappsStaking::current_era(); | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1059,6 +1059,78 @@ fn unbond_and_unstake_with_no_chunks_allowed() { | |
| }) | ||
| } | ||
|
|
||
| #[test] | ||
| fn rebond_and_stake_is_ok() { | ||
| ExternalityBuilder::build().execute_with(|| { | ||
| initialize_first_block(); | ||
|
|
||
| let contract_id = MockSmartContract::Evm(H160::repeat_byte(0x01)); | ||
| assert_register(10, &contract_id); | ||
|
|
||
| let staker_id = 1; | ||
| assert_bond_and_stake(staker_id, &contract_id, 1000); | ||
|
|
||
| let first_unbond_value = 100; | ||
| let second_unbond_value = 250; | ||
| let initial_era = DappsStaking::current_era(); | ||
|
|
||
| // Unbond some amount in the initial era | ||
| assert_unbond_and_unstake(staker_id, &contract_id, first_unbond_value); | ||
|
|
||
| // Advance one era and then unbond some more | ||
| advance_to_era(initial_era + 1); | ||
| assert_unbond_and_unstake(staker_id, &contract_id, second_unbond_value); | ||
|
|
||
| // unbond and stake | ||
| assert_rebond_and_stake(staker_id, &contract_id, 300); | ||
|
|
||
| // unbond and stake again. | ||
| // this time value exceeds the total amount of unbonding chunks, but it succeeds by consuming the total amount. | ||
| assert_rebond_and_stake(staker_id, &contract_id, 200); | ||
|
|
||
| assert!(Ledger::<TestRuntime>::get(&staker_id) | ||
| .unbonding_info | ||
| .is_empty() | ||
| ); | ||
| }) | ||
| } | ||
|
|
||
| #[test] | ||
| fn rebond_and_stake_unexist_contract_fails() { | ||
| ExternalityBuilder::build().execute_with(|| { | ||
| initialize_first_block(); | ||
|
|
||
| let staker_id = 1; | ||
| let contract_id = MockSmartContract::Evm(H160::repeat_byte(0x01)); | ||
| assert_register(10, &contract_id); | ||
|
|
||
| assert_bond_and_stake(staker_id, &contract_id, 1000); | ||
| assert_unbond_and_unstake(staker_id, &contract_id, 100); | ||
|
|
||
| let non_exist_contract_id = MockSmartContract::Evm(H160::repeat_byte(0x02)); | ||
| assert_noop!( | ||
| DappsStaking::rebond_and_stake(Origin::signed(staker_id), non_exist_contract_id, 200), | ||
| Error::<TestRuntime>::NotOperatedContract, | ||
| ); | ||
| }) | ||
| } | ||
|
|
||
| #[test] | ||
| fn rebond_and_stake_no_unbonding_chunks_fails() { | ||
| ExternalityBuilder::build().execute_with(|| { | ||
| initialize_first_block(); | ||
|
|
||
| let staker_id = 1; | ||
| let contract_id = MockSmartContract::Evm(H160::repeat_byte(0x01)); | ||
| assert_register(10, &contract_id); | ||
|
|
||
| assert_noop!( | ||
| DappsStaking::rebond_and_stake(Origin::signed(staker_id), contract_id, 200), | ||
| Error::<TestRuntime>::NothingToRebond, | ||
| ); | ||
| }) | ||
| } | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd suggest also covering the error cases with InsufficientValue or TooManyEraStakeValues. Not mandatory, just a suggestion. |
||
| #[test] | ||
| fn withdraw_unbonded_is_ok() { | ||
| ExternalityBuilder::build().execute_with(|| { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please also check top of lib.rs file and update comments there if needed.