Skip to content
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

feat: update to polkadot v1.1.0 release #1182

Merged
merged 30 commits into from
Mar 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0dfb858
feat: update all deps to polkadot v1.1.0
ashutoshvarma Jan 22, 2024
323187c
feat(assets-erc20): update imports for `frame_support`
ashutoshvarma Jan 22, 2024
bfe1ded
feat(xc-asset-config): update imports for `frame_support`
ashutoshvarma Jan 22, 2024
72e0462
feat(primitives): replace xcm `Convert` with `sp_runtime`'s `MaybeEqu…
ashutoshvarma Jan 22, 2024
2b2da4a
feat: update all pallets for polkadot v1.1.0
ashutoshvarma Jan 26, 2024
df09963
feat: update chain extensions
ashutoshvarma Jan 31, 2024
a7485e2
feat: update all precompiles
ashutoshvarma Jan 31, 2024
849581a
wip: local runtime
ashutoshvarma Feb 5, 2024
8694d1a
feat: update shibuya runtmie
ashutoshvarma Feb 5, 2024
5aa0433
feat: fix local runtime
ashutoshvarma Feb 7, 2024
035feda
feat: fix holds
ashutoshvarma Feb 7, 2024
709390f
feat: update astar and shiden runtime
ashutoshvarma Feb 7, 2024
0452862
feat: fix all tests
ashutoshvarma Feb 7, 2024
96c1404
feat: build works execpt tracing
ashutoshvarma Feb 15, 2024
75a09be
feat: evm tracing build works
ashutoshvarma Feb 16, 2024
a6a3fcd
feat: bump spec versions
ashutoshvarma Feb 16, 2024
c43995d
feat: streamline genesis state export
ashutoshvarma Feb 20, 2024
673824c
fix: max hold in local runtime
ashutoshvarma Feb 20, 2024
ce9bb84
fix: aura issue in eth pending api
ashutoshvarma Feb 20, 2024
fa491da
feat: review comments
ashutoshvarma Feb 24, 2024
e74105e
Merge branch 'master' into feat/polkadot-1.0.0-fix
ashutoshvarma Feb 27, 2024
0e4b49a
feat: copy `AllowTopLevelPaidExecutionFrom` barrier into primititves
ashutoshvarma Feb 27, 2024
0062a9b
fix: build error
ashutoshvarma Feb 27, 2024
f3240f0
fix: make taplo happy
ashutoshvarma Feb 27, 2024
f40c1f8
fix: review comments
ashutoshvarma Feb 29, 2024
79104e1
fix: add contract migration back into shiden
ashutoshvarma Feb 29, 2024
3c2c7a2
feat: remove `BlockNumberFor` clauses
ashutoshvarma Feb 29, 2024
01c22a2
fix: format
ashutoshvarma Mar 1, 2024
8c44754
fix: make clippy happy
ashutoshvarma Mar 1, 2024
7439a41
feat: update `CodeHashLockupDepositPercent` value
ashutoshvarma Mar 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(xc-asset-config): update imports for frame_support
ashutoshvarma committed Jan 22, 2024
commit bfe1ded7eab7bf05224d11dd60372c0c496ea35b
6 changes: 4 additions & 2 deletions pallets/xc-asset-config/src/migrations.rs
Original file line number Diff line number Diff line change
@@ -17,8 +17,10 @@
// along with Astar. If not, see <http://www.gnu.org/licenses/>.

use super::*;
use frame_support::traits::OnRuntimeUpgrade;
use frame_support::{dispatch::GetStorageVersion, log, pallet_prelude::*, traits::Get};
use frame_support::{
pallet_prelude::*,
traits::{Get, OnRuntimeUpgrade},
};
use sp_std::{marker::PhantomData, vec::Vec};
use xcm::IntoVersion;