From 013384b8e28a58cc50e6e45568d1735c6c292417 Mon Sep 17 00:00:00 2001 From: goncer Date: Tue, 3 Dec 2024 17:34:12 +0100 Subject: [PATCH 1/6] Use -unrestricted for e2e non-fast tests (#849) --- .github/workflows/reusable-e2e-tests.yml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/reusable-e2e-tests.yml b/.github/workflows/reusable-e2e-tests.yml index 743fc79ec..49f03a9f4 100644 --- a/.github/workflows/reusable-e2e-tests.yml +++ b/.github/workflows/reusable-e2e-tests.yml @@ -96,48 +96,70 @@ jobs: include: - command: "yarn test-parallel --max-workers=10" fast: false + unlocked: true - command: "yarn test-sequential-no-bootstrap" fast: false + unlocked: true - command: "yarn test-seqgasless" fast: false + unlocked: true - command: "yarn test-maintenance" fast: true + unlocked: false - command: "yarn test-rollupUpdate" fast: true + unlocked: false - command: "yarn test-bootstrap" fast: false + unlocked: true - command: "yarn test-rewards-bootstrap" fast: false + unlocked: true - command: "yarn test-parallel-autocompound" fast: true + unlocked: false - command: "yarn test-sequential-autocompound" fast: true + unlocked: false - command: "yarn test-poolliquidity" fast: true + unlocked: false - command: "yarn test-governance" fast: true + unlocked: false - command: "yarn test-multiswap" fast: false + unlocked: true - command: "yarn test-experimentalStaking" fast: true + unlocked: false - command: "yarn test-crowdloan" fast: false + unlocked: true - command: "yarn test-sdk" fast: true + unlocked: false - command: "yarn test-parallel-3rdPartyRewards" fast: true + unlocked: false - command: "yarn test-sequencerStaking" fast: true + unlocked: false - command: "yarn test-sequencerCancellation" fast: true + unlocked: false - command: "yarn test-rolldown" fast: true + unlocked: false - command: "yarn test-rolldownWithdrawal" fast: true + unlocked: false - command: "yarn test-rolldownPreOperationWithdrawal" fast: true + unlocked: false - command: "yarn test-sequencerRewards" fast: true + unlocked: false @@ -159,6 +181,9 @@ jobs: - name: Adapt if fast runtime if: ${{ !contains(env.NODE_DOCKER_IMAGE, 'fast') && matrix.fast == true }} run: echo "NODE_DOCKER_IMAGE=${{ env.NODE_DOCKER_IMAGE }}-fast" >> $GITHUB_ENV + - name: Adapt if unlocked + if: ${{ !contains(env.NODE_DOCKER_IMAGE, 'fast') && matrix.unlocked == true }} + run: echo "NODE_DOCKER_IMAGE=${{ env.NODE_DOCKER_IMAGE }}-unlocked" >> $GITHUB_ENV - name: Download node Docker image From 623fc578677545886929766f3a0b0a347d38ff5a Mon Sep 17 00:00:00 2001 From: Marian Vanderka Date: Thu, 5 Dec 2024 14:31:21 +0100 Subject: [PATCH 2/6] Fix/seq dies (#853) --- pallets/rolldown/src/lib.rs | 6 +++--- pallets/rolldown/src/tests.rs | 13 ++++++++----- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/pallets/rolldown/src/lib.rs b/pallets/rolldown/src/lib.rs index 6c598a7e9..72af04f83 100644 --- a/pallets/rolldown/src/lib.rs +++ b/pallets/rolldown/src/lib.rs @@ -1496,7 +1496,7 @@ impl Pallet { (update.pendingDeposits.len() as u128) + (update.pendingCancelResolutions.len() as u128); - ensure!(last_id > LastProcessedRequestOnL2::::get(l1), Error::::WrongRequestId); + ensure!(last_id >= LastProcessedRequestOnL2::::get(l1), Error::::WrongRequestId); let mut deposit_it = update.pendingDeposits.iter(); let mut cancel_it = update.pendingCancelResolutions.iter(); @@ -1521,8 +1521,8 @@ impl Pallet { update_hash: update.abi_encode_hash(), update_size: update.pendingDeposits.len() as u128 + update.pendingCancelResolutions.len() as u128, - max_id: lowest_id, - min_id: last_id, + min_id: lowest_id, + max_id: last_id, }) } diff --git a/pallets/rolldown/src/tests.rs b/pallets/rolldown/src/tests.rs index be64780af..30d09331e 100644 --- a/pallets/rolldown/src/tests.rs +++ b/pallets/rolldown/src/tests.rs @@ -1028,7 +1028,10 @@ fn reject_update_with_invalid_too_high_request_id() { #[test] #[serial] -fn reject_update_without_new_updates() { +// changed to accept +// seq gets the rights BEFORE LastProcessedRequestOnL2 is updated +// a single request would be duplicated, extrinsic fail and break seq +fn accept_update_without_new_updates() { ExtBuilder::new().execute_with_default_mocks(|| { forward_to_block::(10); @@ -1044,10 +1047,10 @@ fn reject_update_without_new_updates() { forward_to_block::(16); assert_eq!(LastProcessedRequestOnL2::::get(consts::CHAIN), 1u128.into()); - assert_err!( - Rolldown::update_l2_from_l1_unsafe(RuntimeOrigin::signed(ALICE), deposit_update), - Error::::WrongRequestId - ); + assert_ok!(Rolldown::update_l2_from_l1_unsafe( + RuntimeOrigin::signed(ALICE), + deposit_update + )); }); } From 89d69cf6beffd8427932b473d5a366068bfedfd1 Mon Sep 17 00:00:00 2001 From: Marian Vanderka Date: Thu, 5 Dec 2024 15:58:06 +0100 Subject: [PATCH 3/6] Fix/rewards notransfer GASP-1688 (#857) --- pallets/bootstrap/src/mock.rs | 1 + pallets/proof-of-stake/src/lib.rs | 18 +++++++++++++++++- pallets/proof-of-stake/src/mock.rs | 2 ++ pallets/xyk/src/mock.rs | 2 ++ rollup/runtime/src/lib.rs | 1 + 5 files changed, 23 insertions(+), 1 deletion(-) diff --git a/pallets/bootstrap/src/mock.rs b/pallets/bootstrap/src/mock.rs index ea3aa0248..ccab63956 100644 --- a/pallets/bootstrap/src/mock.rs +++ b/pallets/bootstrap/src/mock.rs @@ -152,6 +152,7 @@ impl pallet_proof_of_stake::Config for Test { type Min3rdPartyRewardVolume = ConstU128<10>; type ValuationApi = Xyk; type SchedulesPerBlock = ConstU32<5>; + type NontransferableTokens = Nothing; } impl BootstrapBenchmarkingConfig for Test {} diff --git a/pallets/proof-of-stake/src/lib.rs b/pallets/proof-of-stake/src/lib.rs index de8bec341..e9c0a0e51 100644 --- a/pallets/proof-of-stake/src/lib.rs +++ b/pallets/proof-of-stake/src/lib.rs @@ -172,7 +172,7 @@ use sp_runtime::traits::AccountIdConversion; use frame_support::{ pallet_prelude::*, - traits::{tokens::currency::MultiTokenCurrency, ExistenceRequirement, Get}, + traits::{tokens::currency::MultiTokenCurrency, Contains, ExistenceRequirement, Get}, transactional, }; @@ -446,6 +446,9 @@ pub mod pallet { type WeightInfo: WeightInfo; type ValuationApi: ValutationApiTrait; + + /// Tokens which cannot be transfered by extrinsics/user or use in pool, unless foundation override + type NontransferableTokens: Contains>; } #[pallet::error] @@ -483,6 +486,8 @@ pub mod pallet { NoThirdPartyPartyRewardsToClaim, // cannot promote solo token SoloTokenPromotionForbiddenError, + /// Asset cannot be used for rewards + NontransferableToken, } #[pallet::event] @@ -770,6 +775,12 @@ pub mod pallet { schedule_end: SessionId, ) -> DispatchResult { let sender = ensure_signed(origin)?; + + ensure!( + !T::NontransferableTokens::contains(&token_id), + Error::::NontransferableToken + ); + Self::reward_pool_impl(sender, pool, token_id, amount, schedule_end) } @@ -792,6 +803,11 @@ pub mod pallet { ) -> DispatchResultWithPostInfo { let sender = ensure_signed(origin)?; + ensure!( + !T::NontransferableTokens::contains(&reward_token), + Error::::NontransferableToken + ); + Self::activate_liquidity_for_3rdparty_rewards_impl( sender, liquidity_token_id, diff --git a/pallets/proof-of-stake/src/mock.rs b/pallets/proof-of-stake/src/mock.rs index 77ae3407a..71912312e 100644 --- a/pallets/proof-of-stake/src/mock.rs +++ b/pallets/proof-of-stake/src/mock.rs @@ -278,6 +278,7 @@ impl pos::Config for Test { type WeightInfo = (); type ValuationApi = MockValuationApi; type SchedulesPerBlock = ConstU32<5>; + type NontransferableTokens = Nothing; } #[cfg(feature = "runtime-benchmarks")] @@ -294,6 +295,7 @@ impl pos::Config for Test { type WeightInfo = (); type ValuationApi = Xyk; type SchedulesPerBlock = ConstU32<5>; + type NontransferableTokens = Nothing; } pub struct TokensActivationPassthrough(PhantomData); diff --git a/pallets/xyk/src/mock.rs b/pallets/xyk/src/mock.rs index f0a42dc73..a082f83b0 100644 --- a/pallets/xyk/src/mock.rs +++ b/pallets/xyk/src/mock.rs @@ -313,6 +313,7 @@ impl pallet_proof_of_stake::Config for Test { type Min3rdPartyRewardVolume = ConstU128<10>; type ValuationApi = XykStorage; type SchedulesPerBlock = ConstU32<5>; + type NontransferableTokens = Nothing; } #[cfg(feature = "runtime-benchmarks")] @@ -329,6 +330,7 @@ impl pallet_proof_of_stake::Config for Test { type Min3rdPartyRewardVolume = ConstU128<10>; type ValuationApi = XykStorage; type SchedulesPerBlock = ConstU32<5>; + type NontransferableTokens = Nothing; } pub struct TokensActivationPassthrough(PhantomData); diff --git a/rollup/runtime/src/lib.rs b/rollup/runtime/src/lib.rs index 01a9aa3fb..3882a79cb 100644 --- a/rollup/runtime/src/lib.rs +++ b/rollup/runtime/src/lib.rs @@ -363,6 +363,7 @@ impl pallet_proof_of_stake::Config for Runtime { type Min3rdPartyRewardVolume = cfg::pallet_proof_of_stake::Min3rdPartyRewardVolume; type SchedulesPerBlock = cfg::pallet_proof_of_stake::SchedulesPerBlock; type ValuationApi = Xyk; + type NontransferableTokens = tokens::NontransferableTokens; } impl pallet_bootstrap::BootstrapBenchmarkingConfig for Runtime {} From 631fe4f9ed9ea36c84679e0896105183af3c94fe Mon Sep 17 00:00:00 2001 From: Marian Vanderka Date: Thu, 5 Dec 2024 16:00:16 +0100 Subject: [PATCH 4/6] adds a check that only single ferry can happen on a deposit request gasp-1652 (#858) --- pallets/rolldown/src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pallets/rolldown/src/lib.rs b/pallets/rolldown/src/lib.rs index 72af04f83..db7ff88cd 100644 --- a/pallets/rolldown/src/lib.rs +++ b/pallets/rolldown/src/lib.rs @@ -525,6 +525,8 @@ pub mod pallet { UninitializedChainId, // Asset can be withdrawn only to sender's address NontransferableToken, + // the deposit was already ferried + AlreadyFerried, } #[cfg(feature = "runtime-benchmarks")] @@ -1843,6 +1845,11 @@ impl Pallet { return Err(Error::::AlreadyExecuted); } + ensure!( + !FerriedDeposits::::contains_key((chain, deposit_hash)), + Error::::AlreadyFerried + ); + let amount = deposit .amount .checked_sub(deposit.ferryTip) From 2d1877b8b3ab00d3488dabca0fb4e1ca4e4bb881 Mon Sep 17 00:00:00 2001 From: Marian Vanderka Date: Thu, 5 Dec 2024 16:43:26 +0100 Subject: [PATCH 5/6] Fix/market mint ratio gasp-1689 (#859) fix calculate expected method fix mint liq to respect fixed ratio fix tests --- Cargo.lock | 533 ++++++++++++------ Cargo.toml | 268 ++++----- pallets/market/src/lib.rs | 25 +- pallets/multipurpose-liquidity/src/mock.rs | 4 - pallets/stable-swap/src/lib.rs | 26 + pallets/xyk/src/lib.rs | 48 +- rollup/runtime/integration-test/src/market.rs | 5 +- 7 files changed, 554 insertions(+), 355 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 762e0a408..b37868b6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb00293ba84f51ce3bd026bd0de55899c4e68f0a39a5728cebae3a73ffdc0a4f" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -318,7 +318,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20c7021f180a0cbea0380eba97c2af3c57074cdaffe0eef7e840e1c9f2841e55" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-models-ext", "ark-std 0.4.0", ] @@ -329,7 +329,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", @@ -342,7 +342,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1dc4b3d08f19e8ec06e949712f95b8361e43f1391d94f65e4234df03480631c" dependencies = [ "ark-bls12-381", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-models-ext", "ark-serialize 0.4.2", @@ -356,7 +356,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e0605daf0cc5aa2034b78d008aaf159f56901d92a52ee4f6ecdfdac4f426700" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -368,7 +368,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccee5fba47266f460067588ee1bf070a9c760bf2050c1c509982c5719aadb4f2" dependencies = [ "ark-bw6-761", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-models-ext", "ark-std 0.4.0", @@ -381,7 +381,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ "ark-ff 0.4.2", - "ark-poly", + "ark-poly 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", "derivative", @@ -392,6 +392,27 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43d68f2d516162846c1238e755a7c4d131b892b70cc70c471a8e3ca3ed818fce" +dependencies = [ + "ahash 0.8.11", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe", + "fnv", + "hashbrown 0.15.2", + "itertools 0.13.0", + "num-bigint", + "num-integer", + "num-traits", + "zeroize", +] + [[package]] name = "ark-ed-on-bls12-377" version = "0.4.0" @@ -399,7 +420,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b10d901b9ac4b38f9c32beacedfadcdd64e46f8d7f8e88c1ae1060022cf6f6c6" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -410,7 +431,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524a4fb7540df2e1a8c2e67a83ba1d1e6c3947f4f9342cc2359fc2e789ad731d" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-377", "ark-ff 0.4.2", "ark-models-ext", @@ -424,7 +445,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" dependencies = [ "ark-bls12-381", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -435,7 +456,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d15185f1acb49a07ff8cbe5f11a1adc5a93b19e211e325d826ae98e98e124346" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-381-bandersnatch", "ark-ff 0.4.2", "ark-models-ext", @@ -480,6 +501,26 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ff" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a177aba0ed1e0fbb62aa9f6d0502e9b46dad8c2eab04c14258a1212d2557ea70" +dependencies = [ + "ark-ff-asm 0.5.0", + "ark-ff-macros 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "arrayvec 0.7.6", + "digest 0.10.7", + "educe", + "itertools 0.13.0", + "num-bigint", + "num-traits", + "paste", + "zeroize", +] + [[package]] name = "ark-ff-asm" version = "0.3.0" @@ -500,6 +541,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-asm" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" +dependencies = [ + "quote", + "syn 2.0.77", +] + [[package]] name = "ark-ff-macros" version = "0.3.0" @@ -525,13 +576,26 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09be120733ee33f7693ceaa202ca41accd5653b779563608f1234f78ae07c4b3" +dependencies = [ + "num-bigint", + "num-traits", + "proc-macro2", + "quote", + "syn 2.0.77", +] + [[package]] name = "ark-models-ext" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e9eab5d4b5ff2f228b763d38442adc9b084b0a465409b059fac5c2308835ec2" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", @@ -551,13 +615,28 @@ dependencies = [ "hashbrown 0.13.2", ] +[[package]] +name = "ark-poly" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "579305839da207f02b89cd1679e50e67b4331e2f9294a57693e5051b7703fe27" +dependencies = [ + "ahash 0.8.11", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe", + "fnv", + "hashbrown 0.15.2", +] + [[package]] name = "ark-scale" version = "0.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f69c00b3b529be29528a6f2fd5fa7b1790f8bed81b9cdca17e326538545a179" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", @@ -570,11 +649,11 @@ name = "ark-secret-scalar" version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", - "ark-transcript 0.0.2 (git+https://github.com/w3f/ring-vrf?rev=e9782f9)", + "ark-transcript 0.0.2", "digest 0.10.7", "getrandom_or_panic", "zeroize", @@ -596,12 +675,25 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ - "ark-serialize-derive", + "ark-serialize-derive 0.4.2", "ark-std 0.4.0", "digest 0.10.7", "num-bigint", ] +[[package]] +name = "ark-serialize" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7" +dependencies = [ + "ark-serialize-derive 0.5.0", + "ark-std 0.5.0", + "arrayvec 0.7.6", + "digest 0.10.7", + "num-bigint", +] + [[package]] name = "ark-serialize-derive" version = "0.4.2" @@ -613,6 +705,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-serialize-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.77", +] + [[package]] name = "ark-std" version = "0.3.0" @@ -634,11 +737,20 @@ dependencies = [ "rayon", ] +[[package]] +name = "ark-std" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + [[package]] name = "ark-transcript" version = "0.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "563084372d89271122bd743ef0a608179726f5fad0566008ba55bd0f756489b8" +source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-ff 0.4.2", "ark-serialize 0.4.2", @@ -650,12 +762,12 @@ dependencies = [ [[package]] name = "ark-transcript" -version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" +version = "0.0.3" +source = "git+https://github.com/w3f/ark-transcript#37a169f587f45d67e5afad143bc2a7c9c864884b" dependencies = [ - "ark-ff 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", "digest 0.10.7", "rand_core 0.6.4", "sha3", @@ -859,7 +971,7 @@ version = "0.0.4" source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-bls12-381", - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-381-bandersnatch", "ark-ff 0.4.2", "ark-serialize 0.4.2", @@ -1472,13 +1584,13 @@ dependencies = [ [[package]] name = "common" version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof#652286c32f96beb9ce7f5793f5e2c2c923f63b73" +source = "git+https://github.com/w3f/ring-proof#1eedf08d97effe1921f4aa2e926575088b068e2b" dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", "fflonk", "getrandom_or_panic", "rand_core 0.6.4", @@ -2118,13 +2230,13 @@ name = "dleq_vrf" version = "0.0.2" source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-scale", "ark-secret-scalar", "ark-serialize 0.4.2", "ark-std 0.4.0", - "ark-transcript 0.0.2 (git+https://github.com/w3f/ring-vrf?rev=e9782f9)", + "ark-transcript 0.0.2", "arrayvec 0.7.6", "zeroize", ] @@ -2255,6 +2367,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "educe" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417" +dependencies = [ + "enum-ordinalize", + "proc-macro2", + "quote", + "syn 2.0.77", +] + [[package]] name = "either" version = "1.13.0" @@ -2299,6 +2423,26 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "enum-ordinalize" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" +dependencies = [ + "enum-ordinalize-derive", +] + +[[package]] +name = "enum-ordinalize-derive" +version = "4.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.77", +] + [[package]] name = "enumflags2" version = "0.7.10" @@ -2421,7 +2565,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "derive_more", "log", @@ -2492,14 +2636,14 @@ dependencies = [ [[package]] name = "fflonk" -version = "0.1.0" -source = "git+https://github.com/w3f/fflonk#1e854f35e9a65d08b11a86291405cdc95baa0a35" +version = "0.1.1" +source = "git+https://github.com/w3f/fflonk#eda051ea3b80042e844a3ebd17c2f60536e6ee3f" dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", "merlin 3.0.0", ] @@ -2604,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "12.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", ] @@ -2627,7 +2771,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "frame-support-procedural", @@ -2652,7 +2796,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "32.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "Inflector", "array-bytes 6.2.3", @@ -2706,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "aquamarine 0.3.3", "extrinsic-shuffler", @@ -2740,7 +2884,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.35.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#46fdae444f71731021c0d8107dced84c4fc36278" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" dependencies = [ "futures", "indicatif", @@ -2762,7 +2906,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "aquamarine 0.5.0", "array-bytes 6.2.3", @@ -2804,7 +2948,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "Inflector", "cfg-expr", @@ -2823,7 +2967,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.2.0", @@ -2835,7 +2979,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "proc-macro2", "quote", @@ -2845,7 +2989,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "cfg-if", "docify", @@ -2867,7 +3011,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -2882,7 +3026,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "sp-api", @@ -2891,7 +3035,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "parity-scale-codec", @@ -3313,6 +3457,15 @@ dependencies = [ "allocator-api2", ] +[[package]] +name = "hashbrown" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "allocator-api2", +] + [[package]] name = "hashlink" version = "0.8.4" @@ -3805,6 +3958,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -4775,7 +4937,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "mangata-types", @@ -4788,7 +4950,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "scale-info", @@ -5490,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "frame-system", @@ -5507,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "frame-system", @@ -5522,7 +5684,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -5546,7 +5708,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "docify", "frame-benchmarking", @@ -5594,7 +5756,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -5688,7 +5850,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5785,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -5887,7 +6049,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -5964,7 +6126,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6171,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "docify", "frame-benchmarking", @@ -6043,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "docify", "frame-benchmarking", @@ -6063,7 +6225,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-support", "frame-system", @@ -6079,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "30.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6095,7 +6257,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6107,7 +6269,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "docify", "frame-benchmarking", @@ -6126,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -6142,7 +6304,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -6158,7 +6320,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-benchmarking", "frame-support", @@ -7377,15 +7539,14 @@ dependencies = [ [[package]] name = "ring" version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof#652286c32f96beb9ce7f5793f5e2c2c923f63b73" -dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "ark-transcript 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "arrayvec 0.7.6", +source = "git+https://github.com/w3f/ring-proof#1eedf08d97effe1921f4aa2e926575088b068e2b" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "ark-transcript 0.0.3", "blake2 0.10.6", "common", "fflonk", @@ -7983,7 +8144,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "log", "sp-core", @@ -7994,7 +8155,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "aquamarine 0.3.3", "futures", @@ -8020,7 +8181,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "sp-api", @@ -8035,7 +8196,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -8055,7 +8216,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "docify", @@ -8081,7 +8242,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -8092,7 +8253,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.36.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "chrono", @@ -8133,7 +8294,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "fnv", "futures", @@ -8160,7 +8321,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.35.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "hash-db", "kvdb", @@ -8186,7 +8347,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -8211,7 +8372,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -8240,7 +8401,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.19.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "ahash 0.8.11", "array-bytes 6.2.3", @@ -8283,7 +8444,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -8308,7 +8469,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -8331,7 +8492,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "polkavm", "sc-allocator", @@ -8344,7 +8505,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "log", "polkavm", @@ -8355,7 +8516,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "anyhow", "cfg-if", @@ -8373,7 +8534,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "ansi_term", "futures", @@ -8390,7 +8551,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "25.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "parking_lot 0.12.3", @@ -8404,7 +8565,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.6", @@ -8433,7 +8594,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8476,7 +8637,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-channel", "cid", @@ -8496,7 +8657,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -8513,7 +8674,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "ahash 0.8.11", "futures", @@ -8532,7 +8693,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8553,7 +8714,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8589,7 +8750,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "futures", @@ -8608,7 +8769,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "29.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "bytes", @@ -8642,7 +8803,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.17.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8651,7 +8812,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "29.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "futures", "jsonrpsee", @@ -8683,7 +8844,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -8703,7 +8864,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "futures", "governor", @@ -8721,7 +8882,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "futures", @@ -8752,7 +8913,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.35.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "directories", @@ -8817,7 +8978,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.30.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "log", "parity-scale-codec", @@ -8828,7 +8989,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "derive_more", "futures", @@ -8849,7 +9010,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "chrono", "futures", @@ -8868,7 +9029,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "ansi_term", "chrono", @@ -8898,7 +9059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -8909,7 +9070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -8936,7 +9097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -8952,7 +9113,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-channel", "futures", @@ -9498,7 +9659,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "hash-db", "log", @@ -9520,7 +9681,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "Inflector", "blake2 0.10.6", @@ -9534,7 +9695,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "scale-info", @@ -9547,7 +9708,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "integer-sqrt", "num-traits", @@ -9579,7 +9740,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "sp-api", "sp-inherents", @@ -9590,7 +9751,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "futures", "log", @@ -9608,7 +9769,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "futures", @@ -9623,7 +9784,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "parity-scale-codec", @@ -9640,7 +9801,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "parity-scale-codec", @@ -9659,7 +9820,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "finality-grandpa", "log", @@ -9677,7 +9838,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "scale-info", @@ -9689,7 +9850,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "bandersnatch_vrfs", @@ -9736,7 +9897,7 @@ dependencies = [ [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#46fdae444f71731021c0d8107dced84c4fc36278" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -9744,7 +9905,7 @@ dependencies = [ "ark-bls12-381-ext", "ark-bw6-761", "ark-bw6-761-ext", - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", "ark-ed-on-bls12-381-bandersnatch", @@ -9757,7 +9918,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "blake2b_simd", "byteorder", @@ -9770,7 +9931,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "quote", "sp-crypto-hashing", @@ -9780,7 +9941,7 @@ dependencies = [ [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "kvdb", "parking_lot 0.12.3", @@ -9789,7 +9950,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "proc-macro2", "quote", @@ -9799,7 +9960,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "environmental", "parity-scale-codec", @@ -9810,7 +9971,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.7.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "serde_json", "sp-api", @@ -9821,7 +9982,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9835,7 +9996,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "bytes", "ed25519-dalek", @@ -9861,7 +10022,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "sp-core", "sp-runtime", @@ -9871,7 +10032,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -9882,7 +10043,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "thiserror", "zstd 0.12.4", @@ -9891,7 +10052,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -9902,7 +10063,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "scale-info", @@ -9914,7 +10075,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "sp-api", "sp-core", @@ -9924,7 +10085,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "backtrace", "lazy_static", @@ -9934,7 +10095,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "rustc-hash", "serde", @@ -9944,7 +10105,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -9975,7 +10136,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -9994,7 +10155,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "Inflector", "expander", @@ -10007,7 +10168,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "scale-info", @@ -10022,7 +10183,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10036,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "hash-db", "log", @@ -10057,7 +10218,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.1", @@ -10082,12 +10243,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -10100,7 +10261,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "parity-scale-codec", @@ -10113,7 +10274,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "sp-std", @@ -10125,7 +10286,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "sp-api", "sp-runtime", @@ -10134,7 +10295,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "parity-scale-codec", @@ -10149,7 +10310,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "ahash 0.8.11", "hash-db", @@ -10173,7 +10334,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "async-trait", "parity-scale-codec", @@ -10190,7 +10351,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -10207,7 +10368,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10218,7 +10379,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -10231,7 +10392,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -10390,7 +10551,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -10402,12 +10563,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "hyper", "log", @@ -10419,7 +10580,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.33.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#46fdae444f71731021c0d8107dced84c4fc36278" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" dependencies = [ "async-trait", "jsonrpsee", @@ -10432,7 +10593,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -10459,7 +10620,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "array-bytes 6.2.3", "frame-executive", @@ -10502,7 +10663,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "futures", "sc-block-builder", @@ -10521,7 +10682,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "build-helper", "cargo_metadata", @@ -11137,7 +11298,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "try-runtime-cli" version = "0.38.0" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#46fdae444f71731021c0d8107dced84c4fc36278" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" dependencies = [ "async-trait", "clap", @@ -11323,7 +11484,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6b71a3c1276a1e0d8a75eaf5932d9afb82bb477a" +source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" dependencies = [ "derive_more", "frame-support", @@ -11360,10 +11521,10 @@ checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" dependencies = [ "ark-bls12-377", "ark-bls12-381", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", - "ark-serialize-derive", + "ark-serialize-derive 0.4.2", "arrayref", "constcat", "digest 0.10.7", diff --git a/Cargo.toml b/Cargo.toml index 17de92ae6..356a40f2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -194,142 +194,142 @@ ver-api = { git = "https://github.com/gasp-xyz/polkadot-sdk", branch = "eth-roll # ... which satisfies git dependency `sp-crypto-ec-utils` of package `sp-ark-bls12-381 v0.4.2 (https://github.com/paritytech/arkworks-substrate#caa2eed7)` sp-crypto-ec-utils = { git = "https://github.com/gasp-xyz/polkadot-sdk", branch = "eth-rollup-develop" } -# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' -# [patch."https://github.com/gasp-xyz/polkadot-sdk"] -# substrate-test-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-test-runtime-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-test-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-transaction-payment = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-transaction-payment-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-collective-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-proxy = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-identity = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-sudo-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# mangata-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-utility-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-authorship = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-vesting-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-system = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-system-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-system-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-support-procedural = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-support-procedural-tools = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-support-procedural-tools-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-balances = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-treasury = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-try-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-membership = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-utility = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-executive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# pallet-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-wasm-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# fork-tree = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-build-script-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# frame-benchmarking-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-bip39 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# substrate-prometheus-endpoint = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-database = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-runtime-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-runtime-interface-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-consensus-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-crypto-hashing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-crypto-hashing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-maybe-compressed-blob = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-core = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-state-machine = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-metadata-ir = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-statement-store = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-weights = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-io = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-inherents = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-std = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-storage = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-panic-handler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-debug-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-blockchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-externalities = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-trie = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# mangata-types = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-version = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-version-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-keyring = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-staking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-wasm-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-transaction-storage-proof = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# extrinsic-shuffler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-arithmetic = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-api-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-application-crypto = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# ver-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-genesis-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sp-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-tracing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-rpc-spec-v2 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-state-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-proposer-metrics = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-basic-authorship-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-rpc-server = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-bitswap = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-transactions = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-light = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-sync = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-informant = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-transaction-pool-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-chain-spec = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-chain-spec-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-block-builder-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-allocator = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-network-gossip = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-client-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-client-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-sysinfo = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-executor = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-executor-wasmtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-executor-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-executor-polkavm = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-telemetry = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-service = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } -# sc-rpc-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/chain-genesis-salt" } +# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' +[patch."https://github.com/gasp-xyz/polkadot-sdk"] +substrate-test-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-test-runtime-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-test-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-transaction-payment = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-transaction-payment-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-collective-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-proxy = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-identity = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-sudo-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +mangata-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-utility-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-authorship = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-vesting-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-system = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-system-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-system-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-support-procedural = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-support-procedural-tools = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-support-procedural-tools-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-balances = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-treasury = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-try-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-membership = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-utility = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-executive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +pallet-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-wasm-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +fork-tree = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-build-script-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +frame-benchmarking-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-bip39 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +substrate-prometheus-endpoint = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-database = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-runtime-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-runtime-interface-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-consensus-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-crypto-hashing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-crypto-hashing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-maybe-compressed-blob = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-core = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-state-machine = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-metadata-ir = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-statement-store = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-weights = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-io = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-inherents = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-std = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-storage = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-panic-handler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-debug-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-blockchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-externalities = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-trie = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +mangata-types = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-version = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-version-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-keyring = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-staking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-wasm-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-transaction-storage-proof = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +extrinsic-shuffler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-arithmetic = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-api-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-application-crypto = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +ver-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-genesis-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sp-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-tracing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-rpc-spec-v2 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-state-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-proposer-metrics = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-basic-authorship-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-rpc-server = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-bitswap = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-transactions = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-light = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-sync = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-informant = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-transaction-pool-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-chain-spec = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-chain-spec-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-block-builder-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-allocator = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-network-gossip = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-client-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-client-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-sysinfo = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-executor = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-executor-wasmtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-executor-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-executor-polkavm = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-telemetry = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-service = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +sc-rpc-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk/' +# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk/' # [patch."https://github.com/gasp-xyz/polkadot-sdk"] # substrate-wasm-builder = { path = "../polkadot-sdk/substrate/utils/wasm-builder" } # frame-benchmarking-cli = { path = "../polkadot-sdk/substrate/utils/frame/benchmarking-cli" } diff --git a/pallets/market/src/lib.rs b/pallets/market/src/lib.rs index 684dbb7da..ed8fcb664 100644 --- a/pallets/market/src/lib.rs +++ b/pallets/market/src/lib.rs @@ -899,8 +899,9 @@ pub mod pallet { ) -> Option { let pool_info = Self::get_pool_info(pool_id).ok()?; match pool_info.kind { - PoolKind::Xyk => T::Xyk::expected_amount_for_minting(pool_id, asset_id, amount), - PoolKind::StableSwap => Some(amount), + PoolKind::Xyk => T::Xyk::get_expected_amount_for_mint(pool_id, asset_id, amount), + PoolKind::StableSwap => + T::StableSwap::get_expected_amount_for_mint(pool_id, asset_id, amount), } } @@ -998,11 +999,25 @@ pub mod pallet { (lp_amount, second_asset_withdrawn) }, PoolKind::StableSwap => { - // use 1:1 rate for amounts + let expected = T::StableSwap::get_expected_amount_for_mint( + pool_info.pool_id, + asset_id, + amount, + ) + .unwrap_or_default(); + + ensure!(expected <= max_amount, Error::::ExcesiveInputAmount); + + let amounts = if asset_id == pool_info.pool.0 { + (amount, expected) + } else { + (expected, amount) + }; + let lp_amount = T::StableSwap::add_liquidity( &sender, pool_info.pool_id, - (amount, amount), + amounts, Zero::zero(), )?; if activate && T::Rewards::native_rewards_enabled(pool_info.pool_id) { @@ -1013,7 +1028,7 @@ pub mod pallet { Some(ActivateKind::AvailableBalance), )?; } - (lp_amount, amount) + (lp_amount, expected) }, }; diff --git a/pallets/multipurpose-liquidity/src/mock.rs b/pallets/multipurpose-liquidity/src/mock.rs index b3e7d7f90..2cc0bda8a 100644 --- a/pallets/multipurpose-liquidity/src/mock.rs +++ b/pallets/multipurpose-liquidity/src/mock.rs @@ -229,10 +229,6 @@ impl XykFunctionsTrait for MockXyk { ) -> DispatchResult { unimplemented!() } - - fn expected_amount_for_minting(_: u32, _: u32, _: u128) -> Option { - unimplemented!() - } } // This function basically just builds a genesis storage key/value store according to diff --git a/pallets/stable-swap/src/lib.rs b/pallets/stable-swap/src/lib.rs index 07584bd2f..929b516ef 100644 --- a/pallets/stable-swap/src/lib.rs +++ b/pallets/stable-swap/src/lib.rs @@ -1785,6 +1785,32 @@ impl Inspect for Pallet { ) -> Option { Self::calc_lp_token_amount(&pool_id, vec![amounts.0, amounts.1], true).ok() } + + fn get_expected_amount_for_mint( + pool_id: Self::CurrencyId, + asset_id: Self::CurrencyId, + amount: Self::Balance, + ) -> Option { + let info = Pools::::get(pool_id)?; + let asset1 = info.assets.get(0)?; + let asset2 = info.assets.get(1)?; + let exp1 = info.rate_multipliers.get(0)?; + let exp2 = info.rate_multipliers.get(1)?; + + let (same, other) = if asset_id == *asset1 { + (exp1, exp2) + } else if asset_id == *asset2 { + (exp2, exp1) + } else { + return None; + }; + + T::HigherPrecisionBalance::from(amount) + .checked_mul(&T::HigherPrecisionBalance::from(*same))? + .checked_div(&T::HigherPrecisionBalance::from(*other))? + .try_into() + .ok() + } } impl Mutate for Pallet { diff --git a/pallets/xyk/src/lib.rs b/pallets/xyk/src/lib.rs index 6ec7eca32..a1b038e5c 100644 --- a/pallets/xyk/src/lib.rs +++ b/pallets/xyk/src/lib.rs @@ -3519,28 +3519,6 @@ impl XykFunctionsTrait, CurrencyIdOf> f fn is_liquidity_token(liquidity_asset_id: CurrencyIdOf) -> bool { LiquidityPools::::get(liquidity_asset_id).is_some() } - - // copypasta from mint_liquidity - fn expected_amount_for_minting( - liquidity_asset_id: CurrencyIdOf, - asset_id: CurrencyIdOf, - amount: BalanceOf, - ) -> Option> { - let (first_asset_id, second_asset_id) = LiquidityPools::::get(liquidity_asset_id)?; - let (first_asset_reserve, second_asset_reserve) = - Pallet::::get_reserves(first_asset_id, second_asset_id).ok()?; - - let (b, c) = if asset_id == first_asset_id { - (second_asset_reserve, first_asset_reserve) - } else { - (first_asset_reserve, second_asset_reserve) - }; - - multiply_by_rational_with_rounding(amount.into(), b.into(), c.into(), Rounding::Down)? - .checked_add(1)? - .try_into() - .ok() - } } pub trait AssetMetadataMutationTrait { @@ -3798,8 +3776,8 @@ impl Inspect for Pallet { let reserves = Pools::::get(pool); let supply = ::Currency::total_issuance(pool_id); - let exp_1 = Self::expected_amount_for_minting(pool_id, pool.0, amounts.0)?; - let exp_0 = Self::expected_amount_for_minting(pool_id, pool.1, amounts.1)?; + let exp_1 = Self::get_expected_amount_for_mint(pool_id, pool.0, amounts.0)?; + let exp_0 = Self::get_expected_amount_for_mint(pool_id, pool.1, amounts.1)?; let (amount, reserve) = if exp_1 == amounts.1 { (amounts.0, reserves.0) @@ -3818,6 +3796,28 @@ impl Inspect for Pallet { .try_into() .ok() } + + // copypasta from mint_liquidity + fn get_expected_amount_for_mint( + pool_id: Self::CurrencyId, + asset_id: Self::CurrencyId, + amount: Self::Balance, + ) -> Option { + let (first_asset_id, second_asset_id) = LiquidityPools::::get(pool_id)?; + let (first_asset_reserve, second_asset_reserve) = + Pallet::::get_reserves(first_asset_id, second_asset_id).ok()?; + + let (b, c) = if asset_id == first_asset_id { + (second_asset_reserve, first_asset_reserve) + } else { + (first_asset_reserve, second_asset_reserve) + }; + + multiply_by_rational_with_rounding(amount.into(), b.into(), c.into(), Rounding::Down)? + .checked_add(1)? + .try_into() + .ok() + } } impl TreasuryBurn for Pallet { diff --git a/rollup/runtime/integration-test/src/market.rs b/rollup/runtime/integration-test/src/market.rs index 3959591f6..062dc4dba 100644 --- a/rollup/runtime/integration-test/src/market.rs +++ b/rollup/runtime/integration-test/src/market.rs @@ -116,6 +116,7 @@ fn create_pool_works() { fn add_liquidity_works() { test_env().execute_with(|| { assert_ok!(create_pool_unb(PoolKind::Xyk, (ASSET_ID_2, ASSET_ID_1))); + // note that the created pool will be sorted as (ASSET_ID_1, ASSET_ID_2) assert_ok!(create_pool_unb(PoolKind::StableSwap, (ASSET_ID_2, ASSET_ID_1))); let expected = @@ -135,7 +136,7 @@ fn add_liquidity_works() { let expected = Market::calculate_expected_amount_for_minting(POOL_ID_2, ASSET_ID_2, UNIT).unwrap(); let lp_expected = - Market::calculate_expected_lp_minted(POOL_ID_2, (UNIT, expected)).unwrap(); + Market::calculate_expected_lp_minted(POOL_ID_2, (expected, UNIT)).unwrap(); assert_ok!(Market::mint_liquidity(origin(), POOL_ID_2, ASSET_ID_2, UNIT, 10 * UNIT)); System::assert_last_event(RuntimeEvent::Market(Event::LiquidityMinted { who: AccountId::from(ALICE), @@ -143,7 +144,7 @@ fn add_liquidity_works() { amounts_provided: (1000000000000000000, expected), lp_token: POOL_ID_2, lp_token_minted: lp_expected, - total_supply: 114992390693470089383, + total_supply: 110000000000000000000, })); }) } From ca3b61d6321b5b46c1efb69bf6e09dad8d62df4c Mon Sep 17 00:00:00 2001 From: Marian Vanderka Date: Thu, 5 Dec 2024 16:44:26 +0100 Subject: [PATCH 6/6] remove patch --- Cargo.lock | 262 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 267 ++++++++++++++++++++++++++--------------------------- 2 files changed, 264 insertions(+), 265 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b37868b6f..3bbb0e1c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "derive_more", "log", @@ -2748,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "12.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", ] @@ -2771,7 +2771,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "frame-support-procedural", @@ -2796,7 +2796,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "32.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "Inflector", "array-bytes 6.2.3", @@ -2850,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "aquamarine 0.3.3", "extrinsic-shuffler", @@ -2906,7 +2906,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "aquamarine 0.5.0", "array-bytes 6.2.3", @@ -2948,7 +2948,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "Inflector", "cfg-expr", @@ -2967,7 +2967,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.2.0", @@ -2979,7 +2979,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "proc-macro2", "quote", @@ -2989,7 +2989,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "cfg-if", "docify", @@ -3011,7 +3011,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3026,7 +3026,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "sp-api", @@ -3035,7 +3035,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "parity-scale-codec", @@ -4937,7 +4937,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "mangata-types", @@ -4950,7 +4950,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "scale-info", @@ -5652,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "frame-system", @@ -5669,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "frame-system", @@ -5684,7 +5684,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5708,7 +5708,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "docify", "frame-benchmarking", @@ -5756,7 +5756,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5850,7 +5850,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6049,7 +6049,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6126,7 +6126,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6171,7 +6171,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "docify", "frame-benchmarking", @@ -6205,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "docify", "frame-benchmarking", @@ -6225,7 +6225,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-support", "frame-system", @@ -6241,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "30.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6257,7 +6257,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6269,7 +6269,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "docify", "frame-benchmarking", @@ -6288,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6304,7 +6304,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6320,7 +6320,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-benchmarking", "frame-support", @@ -8144,7 +8144,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "log", "sp-core", @@ -8155,7 +8155,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "aquamarine 0.3.3", "futures", @@ -8181,7 +8181,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "sp-api", @@ -8196,7 +8196,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -8216,7 +8216,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "docify", @@ -8242,7 +8242,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.36.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "chrono", @@ -8294,7 +8294,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "fnv", "futures", @@ -8321,7 +8321,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.35.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "hash-db", "kvdb", @@ -8347,7 +8347,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -8372,7 +8372,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -8401,7 +8401,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.19.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "ahash 0.8.11", "array-bytes 6.2.3", @@ -8444,7 +8444,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -8469,7 +8469,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -8492,7 +8492,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "polkavm", "sc-allocator", @@ -8505,7 +8505,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "log", "polkavm", @@ -8516,7 +8516,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "anyhow", "cfg-if", @@ -8534,7 +8534,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "ansi_term", "futures", @@ -8551,7 +8551,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "25.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "parking_lot 0.12.3", @@ -8565,7 +8565,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.6", @@ -8594,7 +8594,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8637,7 +8637,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-channel", "cid", @@ -8657,7 +8657,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -8674,7 +8674,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "ahash 0.8.11", "futures", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8714,7 +8714,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "async-channel", @@ -8750,7 +8750,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "futures", @@ -8769,7 +8769,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "29.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "bytes", @@ -8803,7 +8803,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.17.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8812,7 +8812,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "29.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "futures", "jsonrpsee", @@ -8844,7 +8844,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -8864,7 +8864,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "futures", "governor", @@ -8882,7 +8882,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "futures", @@ -8913,7 +8913,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.35.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "directories", @@ -8978,7 +8978,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.30.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "log", "parity-scale-codec", @@ -8989,7 +8989,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "derive_more", "futures", @@ -9010,7 +9010,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "chrono", "futures", @@ -9029,7 +9029,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "ansi_term", "chrono", @@ -9059,7 +9059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -9070,7 +9070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -9097,7 +9097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -9113,7 +9113,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-channel", "futures", @@ -9659,7 +9659,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "hash-db", "log", @@ -9681,7 +9681,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "Inflector", "blake2 0.10.6", @@ -9695,7 +9695,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "scale-info", @@ -9708,7 +9708,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "integer-sqrt", "num-traits", @@ -9740,7 +9740,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "sp-api", "sp-inherents", @@ -9751,7 +9751,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "futures", "log", @@ -9769,7 +9769,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "futures", @@ -9784,7 +9784,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "parity-scale-codec", @@ -9801,7 +9801,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "parity-scale-codec", @@ -9820,7 +9820,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "finality-grandpa", "log", @@ -9838,7 +9838,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "scale-info", @@ -9850,7 +9850,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "bandersnatch_vrfs", @@ -9918,7 +9918,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "blake2b_simd", "byteorder", @@ -9931,7 +9931,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "quote", "sp-crypto-hashing", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "kvdb", "parking_lot 0.12.3", @@ -9950,7 +9950,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "proc-macro2", "quote", @@ -9960,7 +9960,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "environmental", "parity-scale-codec", @@ -9971,7 +9971,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.7.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "serde_json", "sp-api", @@ -9982,7 +9982,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "bytes", "ed25519-dalek", @@ -10022,7 +10022,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "sp-core", "sp-runtime", @@ -10032,7 +10032,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -10043,7 +10043,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "thiserror", "zstd 0.12.4", @@ -10052,7 +10052,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -10063,7 +10063,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10075,7 +10075,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "sp-api", "sp-core", @@ -10085,7 +10085,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "backtrace", "lazy_static", @@ -10095,7 +10095,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "rustc-hash", "serde", @@ -10105,7 +10105,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10155,7 +10155,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "Inflector", "expander", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10183,7 +10183,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10197,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "hash-db", "log", @@ -10218,7 +10218,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.1", @@ -10243,12 +10243,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -10261,7 +10261,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10274,7 +10274,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "sp-std", @@ -10286,7 +10286,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "sp-api", "sp-runtime", @@ -10295,7 +10295,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10310,7 +10310,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "ahash 0.8.11", "hash-db", @@ -10334,7 +10334,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10351,7 +10351,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -10368,7 +10368,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10379,7 +10379,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -10392,7 +10392,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -10551,7 +10551,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -10563,12 +10563,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "hyper", "log", @@ -10593,7 +10593,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -10620,7 +10620,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "array-bytes 6.2.3", "frame-executive", @@ -10663,7 +10663,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "futures", "sc-block-builder", @@ -10682,7 +10682,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "build-helper", "cargo_metadata", @@ -11484,7 +11484,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com//gasp-xyz/polkadot-sdk?branch=fix/market-mint-ratio#859dad177ab1c51f6570873c24266de6d3b2b349" +source = "git+https://github.com/gasp-xyz/polkadot-sdk?branch=eth-rollup-develop#6268216a84f6a965f97e55e17423938d27d78fa8" dependencies = [ "derive_more", "frame-support", diff --git a/Cargo.toml b/Cargo.toml index 356a40f2d..05fca9bf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -194,140 +194,139 @@ ver-api = { git = "https://github.com/gasp-xyz/polkadot-sdk", branch = "eth-roll # ... which satisfies git dependency `sp-crypto-ec-utils` of package `sp-ark-bls12-381 v0.4.2 (https://github.com/paritytech/arkworks-substrate#caa2eed7)` sp-crypto-ec-utils = { git = "https://github.com/gasp-xyz/polkadot-sdk", branch = "eth-rollup-develop" } -# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' -[patch."https://github.com/gasp-xyz/polkadot-sdk"] -substrate-test-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-test-runtime-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-test-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-transaction-payment = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-transaction-payment-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-collective-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-proxy = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-identity = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-sudo-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -mangata-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-utility-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-authorship = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-vesting-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-system = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-system-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-system-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-support-procedural = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-support-procedural-tools = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-support-procedural-tools-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-balances = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-treasury = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-try-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-membership = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-utility = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-executive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -pallet-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-wasm-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -fork-tree = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-build-script-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -frame-benchmarking-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-bip39 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -substrate-prometheus-endpoint = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-database = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-runtime-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-runtime-interface-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-consensus-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-crypto-hashing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-crypto-hashing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-maybe-compressed-blob = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-core = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-state-machine = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-metadata-ir = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-statement-store = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-weights = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-io = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-inherents = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-std = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-storage = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-panic-handler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-debug-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-blockchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-externalities = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-trie = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -mangata-types = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-version = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-version-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-keyring = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-staking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-wasm-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-transaction-storage-proof = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -extrinsic-shuffler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-arithmetic = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-api-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-application-crypto = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -ver-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-genesis-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sp-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-tracing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-rpc-spec-v2 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-state-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-proposer-metrics = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-basic-authorship-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-rpc-server = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-bitswap = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-transactions = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-light = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-sync = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-informant = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-transaction-pool-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-chain-spec = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-chain-spec-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-block-builder-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-allocator = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-network-gossip = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-client-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-client-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-sysinfo = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-executor = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-executor-wasmtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-executor-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-executor-polkavm = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-telemetry = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-service = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } -sc-rpc-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } - +# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' +# [patch."https://github.com/gasp-xyz/polkadot-sdk"] +# substrate-test-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-test-runtime-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-test-client = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-transaction-payment = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-transaction-payment-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-collective-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-proxy = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-identity = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-sudo-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# mangata-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-utility-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-authorship = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-vesting-mangata = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-system = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-system-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-system-rpc-runtime-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-support = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-support-procedural = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-support-procedural-tools = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-support-procedural-tools-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-balances = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-benchmarking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-treasury = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-try-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-membership = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-utility = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-executive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# pallet-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-wasm-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# fork-tree = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-build-script-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# frame-benchmarking-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-bip39 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# substrate-prometheus-endpoint = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-database = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-runtime-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-runtime-interface-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-consensus-babe = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-crypto-hashing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-crypto-hashing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-maybe-compressed-blob = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-core = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-state-machine = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-metadata-ir = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-statement-store = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-weights = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-io = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-runtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-inherents = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-std = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-storage = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-panic-handler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-debug-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-blockchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-externalities = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-trie = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# mangata-types = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-version = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-version-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-keyring = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-staking = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-wasm-interface = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-transaction-storage-proof = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# extrinsic-shuffler = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-arithmetic = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-api-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-timestamp = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-application-crypto = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# ver-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-genesis-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sp-session = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-consensus-grandpa = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-consensus = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-consensus-aura = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-consensus-slots = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-tracing = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-tracing-proc-macro = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-rpc-spec-v2 = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-state-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-proposer-metrics = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-keystore = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-basic-authorship-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-rpc-server = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-bitswap = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-transactions = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-light = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-sync = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-informant = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-transaction-pool = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-transaction-pool-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-utils = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-cli = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-chain-spec = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-chain-spec-derive = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-block-builder-ver = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-mixnet = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-block-builder = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-allocator = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-network-gossip = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-client-db = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-client-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-sysinfo = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-executor = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-executor-wasmtime = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-executor-common = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-executor-polkavm = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-telemetry = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-offchain = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-service = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-rpc = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } +# sc-rpc-api = { git = "https://github.com//gasp-xyz/polkadot-sdk", branch = "fix/market-mint-ratio" } # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk/' # [patch."https://github.com/gasp-xyz/polkadot-sdk"]