Skip to content

Commit 9801add

Browse files
feat: v5.37.0 release prep (#1226)
* feat: add lockdrop to astar and bump version * feat: remove previous migrations * feat: put back astar migration * feat: add asset ce to astar and adjust precompile address * fix: enable asset ce integration test for astar
1 parent 8846dae commit 9801add

File tree

13 files changed

+103
-79
lines changed

13 files changed

+103
-79
lines changed

Cargo.lock

+7-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/collator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-collator"
3-
version = "5.36.0"
3+
version = "5.37.0"
44
description = "Astar collator implementation in Rust."
55
build = "build.rs"
66
default-run = "astar-collator"

runtime/astar/Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-runtime"
3-
version = "5.36.0"
3+
version = "5.37.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true
@@ -107,6 +107,7 @@ pallet-dapp-staking-v3 = { workspace = true }
107107
pallet-dapps-staking = { workspace = true }
108108
pallet-evm-precompile-assets-erc20 = { workspace = true }
109109
pallet-evm-precompile-dapp-staking-v3 = { workspace = true }
110+
pallet-evm-precompile-dispatch-lockdrop = { workspace = true }
110111
pallet-evm-precompile-sr25519 = { workspace = true }
111112
pallet-evm-precompile-substrate-ecdsa = { workspace = true }
112113
pallet-evm-precompile-xcm = { workspace = true }
@@ -123,6 +124,9 @@ moonbeam-rpc-primitives-debug = { workspace = true, optional = true }
123124
moonbeam-rpc-primitives-txpool = { workspace = true, optional = true }
124125
precompile-utils = { workspace = true }
125126

127+
# chain-extensions
128+
pallet-chain-extension-assets = { workspace = true }
129+
126130
[build-dependencies]
127131
substrate-wasm-builder = { workspace = true, optional = true }
128132

@@ -171,6 +175,7 @@ std = [
171175
"pallet-evm-precompile-simple/std",
172176
"pallet-evm-precompile-bn128/std",
173177
"pallet-evm-precompile-dispatch/std",
178+
"pallet-evm-precompile-dispatch-lockdrop/std",
174179
"pallet-evm-precompile-ed25519/std",
175180
"pallet-evm-precompile-modexp/std",
176181
"pallet-evm-precompile-sha3fips/std",
@@ -210,6 +215,7 @@ std = [
210215
"xcm-executor/std",
211216
"pallet-xc-asset-config/std",
212217
"substrate-wasm-builder",
218+
"pallet-chain-extension-assets/std",
213219
"orml-xtokens/std",
214220
"orml-xcm-support/std",
215221
"astar-primitives/std",

runtime/astar/src/chain_extensions.rs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// This file is part of Astar.
2+
3+
// Copyright (C) 2019-2023 Stake Technologies Pte.Ltd.
4+
// SPDX-License-Identifier: GPL-3.0-or-later
5+
6+
// Astar is free software: you can redistribute it and/or modify
7+
// it under the terms of the GNU General Public License as published by
8+
// the Free Software Foundation, either version 3 of the License, or
9+
// (at your option) any later version.
10+
11+
// Astar is distributed in the hope that it will be useful,
12+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
// GNU General Public License for more details.
15+
16+
// You should have received a copy of the GNU General Public License
17+
// along with Astar. If not, see <http://www.gnu.org/licenses/>.
18+
19+
use super::Runtime;
20+
21+
/// Registered WASM contracts chain extensions.
22+
pub use pallet_chain_extension_assets::AssetsExtension;
23+
use pallet_contracts::chain_extension::RegisteredChainExtension;
24+
25+
// Following impls defines chain extension IDs.
26+
impl RegisteredChainExtension<Runtime> for AssetsExtension<Runtime> {
27+
const ID: u16 = 02;
28+
}
29+
30+
pub type AstarChainExtensions<Runtime> = AssetsExtension<Runtime>;

runtime/astar/src/lib.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;
9292
#[cfg(any(feature = "std", test))]
9393
pub use sp_runtime::BuildStorage;
9494

95+
mod chain_extensions;
9596
mod precompiles;
9697
mod weights;
9798
mod xcm_config;
@@ -101,6 +102,8 @@ pub type AstarAssetLocationIdConverter = AssetLocationIdConverter<AssetId, XcAss
101102
pub use precompiles::{AstarPrecompiles, ASSET_PRECOMPILE_ADDRESS_PREFIX};
102103
pub type Precompiles = AstarPrecompiles<Runtime, AstarAssetLocationIdConverter>;
103104

105+
use chain_extensions::AstarChainExtensions;
106+
104107
/// Constant values used within the runtime.
105108
pub const MICROASTR: Balance = 1_000_000_000_000;
106109
pub const MILLIASTR: Balance = 1_000 * MICROASTR;
@@ -148,7 +151,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
148151
spec_name: create_runtime_str!("astar"),
149152
impl_name: create_runtime_str!("astar"),
150153
authoring_version: 1,
151-
spec_version: 84,
154+
spec_version: 85,
152155
impl_version: 0,
153156
apis: RUNTIME_API_VERSIONS,
154157
transaction_version: 2,
@@ -669,7 +672,7 @@ impl pallet_contracts::Config for Runtime {
669672
type CallStack = [pallet_contracts::Frame<Self>; 5];
670673
type WeightPrice = pallet_transaction_payment::Pallet<Self>;
671674
type WeightInfo = pallet_contracts::weights::SubstrateWeight<Self>;
672-
type ChainExtension = ();
675+
type ChainExtension = AstarChainExtensions<Self>;
673676
type Schedule = Schedule;
674677
type AddressGenerator = pallet_contracts::DefaultAddressGenerator;
675678
type MaxCodeLen = ConstU32<{ 123 * 1024 }>;

runtime/astar/src/precompiles.rs

+41-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ use pallet_evm_precompile_blake2::Blake2F;
2626
use pallet_evm_precompile_bn128::{Bn128Add, Bn128Mul, Bn128Pairing};
2727
use pallet_evm_precompile_dapp_staking_v3::DappStakingV3Precompile;
2828
use pallet_evm_precompile_dispatch::Dispatch;
29+
use pallet_evm_precompile_dispatch_lockdrop::DispatchLockdrop;
2930
use pallet_evm_precompile_ed25519::Ed25519Verify;
3031
use pallet_evm_precompile_modexp::Modexp;
3132
use pallet_evm_precompile_sha3fips::Sha3FIPS256;
@@ -34,6 +35,7 @@ use pallet_evm_precompile_sr25519::Sr25519Precompile;
3435
use pallet_evm_precompile_substrate_ecdsa::SubstrateEcdsaPrecompile;
3536
use pallet_evm_precompile_xcm::XcmPrecompile;
3637
use precompile_utils::precompile_set::*;
38+
use sp_core::ConstU32;
3739
use sp_std::fmt::Debug;
3840

3941
/// The asset precompile address prefix. Addresses that match against this prefix will be routed
@@ -65,6 +67,32 @@ impl Contains<RuntimeCall> for WhitelistedCalls {
6567
}
6668
}
6769
}
70+
71+
/// Filter that only allows whitelisted runtime call to pass through dispatch-lockdrop precompile
72+
pub struct WhitelistedLockdropCalls;
73+
74+
impl Contains<RuntimeCall> for WhitelistedLockdropCalls {
75+
fn contains(t: &RuntimeCall) -> bool {
76+
match t {
77+
RuntimeCall::Utility(pallet_utility::Call::batch { calls })
78+
| RuntimeCall::Utility(pallet_utility::Call::batch_all { calls }) => calls
79+
.iter()
80+
.all(|call| WhitelistedLockdropCalls::contains(call)),
81+
RuntimeCall::DappStaking(pallet_dapp_staking_v3::Call::unbond_and_unstake {
82+
..
83+
}) => true,
84+
RuntimeCall::DappStaking(pallet_dapp_staking_v3::Call::withdraw_unbonded {
85+
..
86+
}) => true,
87+
RuntimeCall::Balances(pallet_balances::Call::transfer_all { .. }) => true,
88+
RuntimeCall::Balances(pallet_balances::Call::transfer_keep_alive { .. }) => true,
89+
RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { .. }) => true,
90+
RuntimeCall::Assets(pallet_assets::Call::transfer { .. }) => true,
91+
_ => false,
92+
}
93+
}
94+
}
95+
6896
/// The PrecompileSet installed in the Astar runtime.
6997
#[precompile_utils::precompile_name_from_address]
7098
pub type AstarPrecompilesSetAt<R, C> = (
@@ -115,6 +143,18 @@ pub type AstarPrecompilesSetAt<R, C> = (
115143
CallableByPrecompile,
116144
),
117145
>,
146+
// Skipping 20485 and 20486 to make sure all network have consistent
147+
// precompiles address
148+
PrecompileAt<
149+
AddressU64<20487>,
150+
DispatchLockdrop<
151+
R,
152+
DispatchFilterValidate<RuntimeCall, WhitelistedLockdropCalls>,
153+
ConstU32<8>,
154+
>,
155+
// Not callable from smart contract nor precompiled, only EOA accounts
156+
(),
157+
>,
118158
);
119159

120160
pub type AstarPrecompiles<R, C> = PrecompileSetBuilder<
@@ -123,7 +163,7 @@ pub type AstarPrecompiles<R, C> = PrecompileSetBuilder<
123163
// Skip precompiles if out of range.
124164
PrecompilesInRangeInclusive<
125165
// We take range as last precompile index, UPDATE this once new prcompile is added
126-
(AddressU64<1>, AddressU64<20484>),
166+
(AddressU64<1>, AddressU64<20487>),
127167
AstarPrecompilesSetAt<R, C>,
128168
>,
129169
// Prefixed precompile sets (XC20)

runtime/local/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "local-runtime"
3-
version = "5.36.0"
3+
version = "5.37.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shibuya-runtime"
3-
version = "5.36.0"
3+
version = "5.37.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/src/lib.rs

+2-28
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
174174
spec_name: create_runtime_str!("shibuya"),
175175
impl_name: create_runtime_str!("shibuya"),
176176
authoring_version: 1,
177-
spec_version: 126,
177+
spec_version: 127,
178178
impl_version: 0,
179179
apis: RUNTIME_API_VERSIONS,
180180
transaction_version: 2,
@@ -1459,33 +1459,7 @@ pub type Executive = frame_executive::Executive<
14591459
/// All migrations that will run on the next runtime upgrade.
14601460
///
14611461
/// Once done, migrations should be removed from the tuple.
1462-
pub type Migrations = (
1463-
OracleIntegrationLogic,
1464-
pallet_price_aggregator::PriceAggregatorInitializer<Runtime, InitPrice>,
1465-
);
1466-
1467-
pub struct InitPrice;
1468-
impl Get<CurrencyAmount> for InitPrice {
1469-
fn get() -> CurrencyAmount {
1470-
// 0.15 $
1471-
CurrencyAmount::from_rational(15, 100)
1472-
}
1473-
}
1474-
1475-
use frame_support::traits::OnRuntimeUpgrade;
1476-
pub struct OracleIntegrationLogic;
1477-
impl OnRuntimeUpgrade for OracleIntegrationLogic {
1478-
fn on_runtime_upgrade() -> Weight {
1479-
// 1. Set initial storage versions for the membership pallet
1480-
use frame_support::traits::StorageVersion;
1481-
StorageVersion::new(4)
1482-
.put::<pallet_membership::Pallet<Runtime, OracleMembershipInstance>>();
1483-
1484-
// No storage version for the `orml_oracle` pallet, it's essentially 0
1485-
1486-
<Runtime as frame_system::Config>::DbWeight::get().writes(1)
1487-
}
1488-
}
1462+
pub type Migrations = ();
14891463

14901464
type EventRecord = frame_system::EventRecord<
14911465
<Runtime as frame_system::Config>::RuntimeEvent,

runtime/shiden/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shiden-runtime"
3-
version = "5.36.0"
3+
version = "5.37.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shiden/src/lib.rs

+2-35
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
153153
spec_name: create_runtime_str!("shiden"),
154154
impl_name: create_runtime_str!("shiden"),
155155
authoring_version: 1,
156-
spec_version: 123,
156+
spec_version: 124,
157157
impl_version: 0,
158158
apis: RUNTIME_API_VERSIONS,
159159
transaction_version: 2,
@@ -1129,40 +1129,7 @@ parameter_types! {
11291129
/// All migrations that will run on the next runtime upgrade.
11301130
///
11311131
/// Once done, migrations should be removed from the tuple.
1132-
pub type Migrations = (pallet_static_price_provider::ActivePriceUpdate<Runtime, InitPrice>,);
1133-
1134-
use frame_support::traits::OnRuntimeUpgrade;
1135-
pub struct SetNewTierConfig;
1136-
impl OnRuntimeUpgrade for SetNewTierConfig {
1137-
fn on_runtime_upgrade() -> Weight {
1138-
use astar_primitives::oracle::PriceProvider;
1139-
use frame_support::BoundedVec;
1140-
1141-
// Set new init tier config values according to the forum post
1142-
let mut init_tier_config = pallet_dapp_staking_v3::TierConfig::<Runtime>::get();
1143-
init_tier_config.number_of_slots = 55;
1144-
init_tier_config.slots_per_tier =
1145-
BoundedVec::try_from(vec![2, 11, 16, 24]).unwrap_or_default();
1146-
1147-
#[cfg(feature = "try-runtime")]
1148-
{
1149-
assert!(
1150-
init_tier_config.number_of_slots >= init_tier_config.slots_per_tier.iter().sum::<u16>() as u16,
1151-
"Safety check, sum of slots per tier must be equal or less than max number of slots (due to possible rounding)"
1152-
);
1153-
}
1154-
1155-
// Based on the new init config, calculate the new tier config based on the 'average' price
1156-
let price = StaticPriceProvider::average_price();
1157-
let tier_params = pallet_dapp_staking_v3::StaticTierParams::<Runtime>::get();
1158-
1159-
let new_tier_config = init_tier_config.calculate_new(price, &tier_params);
1160-
1161-
pallet_dapp_staking_v3::TierConfig::<Runtime>::put(new_tier_config);
1162-
1163-
<Runtime as frame_system::Config>::DbWeight::get().reads_writes(3, 1)
1164-
}
1165-
}
1132+
pub type Migrations = ();
11661133

11671134
type EventRecord = frame_system::EventRecord<
11681135
<Runtime as frame_system::Config>::RuntimeEvent,

runtime/shiden/src/precompiles.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,10 @@ pub type ShidenPrecompilesSetAt<R, C> = (
142142
CallableByPrecompile,
143143
),
144144
>,
145+
// Skipping 20485 and 20486 to make sure all network have consistent
146+
// precompiles address
145147
PrecompileAt<
146-
AddressU64<20485>,
148+
AddressU64<20487>,
147149
DispatchLockdrop<
148150
R,
149151
DispatchFilterValidate<RuntimeCall, WhitelistedLockdropCalls>,
@@ -160,7 +162,7 @@ pub type ShidenPrecompiles<R, C> = PrecompileSetBuilder<
160162
// Skip precompiles if out of range.
161163
PrecompilesInRangeInclusive<
162164
// We take range as last precompile index, UPDATE this once new prcompile is added
163-
(AddressU64<1>, AddressU64<20485>),
165+
(AddressU64<1>, AddressU64<20487>),
164166
ShidenPrecompilesSetAt<R, C>,
165167
>,
166168
// Prefixed precompile sets (XC20)

0 commit comments

Comments
 (0)