mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
ef1e4e8b2b
* Add pallet dex
* Fmt
* Add RPC endpoint
* Fix RPC
* Fix the build
* Some more fixes
* Add a method to topup pallet's account
* Add support for multi-currency into Uniques
* Fix the build
* Add [transactional] + setup() + fix balances
* Improve tests
* Fix price quotation
* Code clean up
* Validate swaps
* Fmt
* Update README
* add test
* mint LP assets in a different instance
* remove transactional as now the default
AssetsLocal renamed to Assets
* merge master
* Revert "Merge master"
* fix tests post merge.
* attempt to set create origin
* Internally allocate lp asset id.
* Simplify
* Bump to be in line
* additional bumps to make compile
* fix compile
* less bounds
* use fungible crates
* multiasset enum
* only allow native currency pairs
* added slippage tests
* transfer into separate method
(Also fee not set in 2 places now.)
Added test where lp and user are different users.
* Add benchmarks + weights
* Typos
* Clean up
* More tests,
split error into two because it wasn't clear which parameter.
renamed liquidity to lp_tokens_minted or lp_tokens_burned in events.
* tighten up naming
* Default, zero, square root traits not needed
Also let's not force people to be compact
* add keep-alive param
* add insufficient liquidity test
* Fix quote() to support u64
* Avoid recording balances twice
* cargo fmt
* Didn't mean to change error type
* temp
* Less
* Rework get_amount_in/get_amount_out
* Convert other places
* Rework the last piece
* Typo
* Fix benchmarks
* use hash trait
* Extract a native asset check into the runtime setting
* Don't set the metadata
* Remove spec file
* Enable multi-assets swaps by default
* Refactor conversion into u128
* Add path param to swap_token_for_exact_tokens
* Fix typo + a bit of refactoring
* Implement path param for swap_exact_tokens_for_tokens()
* Deref
* Minor fixes
* Add test with sensible scale values
* Use .windows()
* Fix benchmarks
* update docs
* Fix everything :)
* Chore
* Revert
* Chore
* prev way of creating sub accounts lead to collisions
* Update frame/dex/src/lib.rs
Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com>
* Update frame/dex/src/lib.rs
Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com>
* Chore
* Fmt fix on Uniques
* add call_index
bring code up to date with latest master
* revert readme changes
* add cr
* revert uniques changes
* reducing noise
* no need for deadline (#12990)
(there's generic transaction deadline functionality already)
* fix kitchen sink (#12991)
* fix kitchen sink
* Only the dex can mint lp_tokens
* add BenchmarkHelper for second instance (#12998)
* update mock to latest master
* less indirections (#13012)
* remove dex PR's custom RPC (#13050)
* As we have state_call we don't need a custom RPC
* fix docs
* no longer a need to upgrade rpc version (#13053)
* add CallbackHadle
* quote bugfix (#13191)
quote was giving same price in both directions as we were inverting needlessly.
* merging in dex specific changes due to pay by dex
* update lock file
* merging in kitchen sink changes
* Add get_reserves() api method
* Partial updating of the benchmarks
* Fix tests
* clippy
* Temp fix weights
* Fix benchmarks
* Add pool setup fee
* Money upfront
* Address some comments
* Use u128 in mock
* Fix benchmarks
* Change error message
* Update comments
* Change error names
* Implement PartialOrd for NativeOrAssetId
* add note
* Update errors
* More tests for assets sorting
* ".git/.scripts/commands/bench/bench.sh" pallet dev pallet_dex
* Change the way we generate pool accounts
* Improve the liquidity removal method
* Extract MintMinLiquidity to config, rework all tests
* Add comments
* Validate provided amount
* Rename to asset-conversion
* Validate ED
* Improve handling the ED related errors
* typos
* Try to fix benchmarks
* Another try
* Another day, another try
* Fix benchmarks
* Expose fee related params
* Validate token's minimal amount the same way as ED
* fix typo
* Use longer path for swaps in benchmarks
* need to ref sp_std's vec.
* Remove From<u32> requirement when benchmarking
* impl BenchmarkHelper for ()
* only for runtime benchmarks
* MultiLocation: !MaybeDisplay
Looks like we might not need this bound from initial testing.
* Update frame/asset-conversion/src/lib.rs
Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com>
* Update frame/asset-conversion/src/lib.rs
Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com>
* Add documentation links
* add collision test
* Revert "[Enhancement] Throw an error when there are too many pallets (#13763)"
This reverts commit cc3152bc2f.
* [Enhancement] Throw an error when there are too many pallets (#13763)
* [Enhancement] Throw an error when there are too many pallets
* fix ui test
* fix PR comments
* Update frame/support/procedural/src/construct_runtime/mod.rs
Co-authored-by: Bastian Köcher <git@kchr.de>
* Update frame/support/procedural/src/construct_runtime/mod.rs
Co-authored-by: Bastian Köcher <git@kchr.de>
* ".git/.scripts/commands/fmt/fmt.sh"
---------
Co-authored-by: Bastian Köcher <git@kchr.de>
Co-authored-by: command-bot <>
* add benchmark helper
+ doc fix
* cargo fmt
* Fix adding liquidity to non-empty pool
* Fix compilation error
* Fix params ordering issue
* additional docs
* The swap path elements should be unique
* Fix account collision
* Validate all the pool in a swap path are unique
* Change the way we add liquidity to empty pools
* Improve docs
* remove unnessisary Display impl
* cargo fmt
* remove unused imports
* Make api consistent
* Chore
* Touch the pool account so it could hold the pair tokens
* Check the balance before touching the pool's account
* Introduce liquidity provision fee
* Touch the pool acc one more time
* Apply suggestions from code review
Co-authored-by: Sam Johnson <sam@durosoft.com>
* Update frame/asset-conversion/README.md
Co-authored-by: Sam Johnson <sam@durosoft.com>
* Use ContainsPair instead of the balance checker
* Remove old Currency trait
* Add liquidity withdrawal fee
* Update docs
* Use 0 withdrawal fee in mock
* Rename vars
* asset id not clone
* fix: shadow var was being used
* correct tests
* fix benches
* merge master
* neater
---------
Co-authored-by: Jegor Sidorenko <jegor@parity.io>
Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com>
Co-authored-by: parity-processbot <>
Co-authored-by: Roman Useinov <roman.useinov@gmail.com>
Co-authored-by: Bastian Köcher <git@kchr.de>
Co-authored-by: Sam Johnson <sam@durosoft.com>
337 lines
9.3 KiB
TOML
337 lines
9.3 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"bin/node-template/node",
|
|
"bin/node-template/pallets/template",
|
|
"bin/node-template/runtime",
|
|
"bin/node/bench",
|
|
"bin/node/cli",
|
|
"bin/node/executor",
|
|
"bin/node/inspect",
|
|
"bin/node/primitives",
|
|
"bin/node/rpc",
|
|
"bin/node/runtime",
|
|
"bin/node/testing",
|
|
"bin/utils/chain-spec-builder",
|
|
"bin/utils/subkey",
|
|
"client/api",
|
|
"client/authority-discovery",
|
|
"client/basic-authorship",
|
|
"client/block-builder",
|
|
"client/chain-spec",
|
|
"client/chain-spec/derive",
|
|
"client/cli",
|
|
"client/consensus/aura",
|
|
"client/consensus/babe",
|
|
"client/consensus/babe/rpc",
|
|
"client/consensus/beefy",
|
|
"client/consensus/beefy/rpc",
|
|
"client/consensus/common",
|
|
"client/consensus/epochs",
|
|
"client/consensus/grandpa",
|
|
"client/consensus/grandpa/rpc",
|
|
"client/consensus/manual-seal",
|
|
"client/consensus/pow",
|
|
"client/consensus/slots",
|
|
"client/db",
|
|
"client/executor",
|
|
"client/executor/common",
|
|
"client/executor/runtime-test",
|
|
"client/executor/wasmtime",
|
|
"client/informant",
|
|
"client/keystore",
|
|
"client/merkle-mountain-range",
|
|
"client/merkle-mountain-range/rpc",
|
|
"client/network",
|
|
"client/network/transactions",
|
|
"client/network/statement",
|
|
"client/network-gossip",
|
|
"client/network/bitswap",
|
|
"client/network/common",
|
|
"client/network/light",
|
|
"client/network/sync",
|
|
"client/network/test",
|
|
"client/offchain",
|
|
"client/peerset",
|
|
"client/allocator",
|
|
"client/proposer-metrics",
|
|
"client/rpc",
|
|
"client/rpc-api",
|
|
"client/rpc-servers",
|
|
"client/rpc-spec-v2",
|
|
"client/service",
|
|
"client/service/test",
|
|
"client/state-db",
|
|
"client/statement-store",
|
|
"client/storage-monitor",
|
|
"client/sysinfo",
|
|
"client/sync-state-rpc",
|
|
"client/telemetry",
|
|
"client/tracing",
|
|
"client/tracing/proc-macro",
|
|
"client/transaction-pool",
|
|
"client/transaction-pool/api",
|
|
"client/utils",
|
|
"frame/alliance",
|
|
"frame/asset-conversion",
|
|
"frame/assets",
|
|
"frame/atomic-swap",
|
|
"frame/aura",
|
|
"frame/authority-discovery",
|
|
"frame/authorship",
|
|
"frame/babe",
|
|
"frame/bags-list",
|
|
"frame/bags-list/fuzzer",
|
|
"frame/bags-list/remote-tests",
|
|
"frame/balances",
|
|
"frame/beefy",
|
|
"frame/beefy-mmr",
|
|
"frame/benchmarking",
|
|
"frame/benchmarking/pov",
|
|
"frame/bounties",
|
|
"frame/child-bounties",
|
|
"frame/collective",
|
|
"frame/contracts",
|
|
"frame/contracts/proc-macro",
|
|
"frame/contracts/primitives",
|
|
"frame/conviction-voting",
|
|
"frame/core-fellowship",
|
|
"frame/democracy",
|
|
"frame/fast-unstake",
|
|
"frame/try-runtime",
|
|
"frame/elections-phragmen",
|
|
"frame/election-provider-multi-phase",
|
|
"frame/election-provider-multi-phase/test-staking-e2e",
|
|
"frame/election-provider-support",
|
|
"frame/election-provider-support/benchmarking",
|
|
"frame/election-provider-support/solution-type",
|
|
"frame/election-provider-support/solution-type/fuzzer",
|
|
"frame/examples/basic",
|
|
"frame/examples/offchain-worker",
|
|
"frame/examples/dev-mode",
|
|
"frame/executive",
|
|
"frame/nis",
|
|
"frame/grandpa",
|
|
"frame/identity",
|
|
"frame/im-online",
|
|
"frame/indices",
|
|
"frame/lottery",
|
|
"frame/membership",
|
|
"frame/merkle-mountain-range",
|
|
"frame/multisig",
|
|
"frame/nicks",
|
|
"frame/node-authorization",
|
|
"frame/offences",
|
|
"frame/offences/benchmarking",
|
|
"frame/preimage",
|
|
"frame/proxy",
|
|
"frame/message-queue",
|
|
"frame/nfts",
|
|
"frame/nfts/runtime-api",
|
|
"frame/nft-fractionalization",
|
|
"frame/nomination-pools",
|
|
"frame/nomination-pools/fuzzer",
|
|
"frame/nomination-pools/benchmarking",
|
|
"frame/nomination-pools/test-staking",
|
|
"frame/nomination-pools/runtime-api",
|
|
"frame/insecure-randomness-collective-flip",
|
|
"frame/ranked-collective",
|
|
"frame/recovery",
|
|
"frame/referenda",
|
|
"frame/remark",
|
|
"frame/salary",
|
|
"frame/scheduler",
|
|
"frame/scored-pool",
|
|
"frame/session",
|
|
"frame/session/benchmarking",
|
|
"frame/society",
|
|
"frame/staking",
|
|
"frame/staking/reward-curve",
|
|
"frame/staking/reward-fn",
|
|
"frame/staking/runtime-api",
|
|
"frame/state-trie-migration",
|
|
"frame/sudo",
|
|
"frame/root-offences",
|
|
"frame/root-testing",
|
|
"frame/statement",
|
|
"frame/support",
|
|
"frame/support/procedural",
|
|
"frame/support/procedural/tools",
|
|
"frame/support/procedural/tools/derive",
|
|
"frame/support/test",
|
|
"frame/support/test/compile_pass",
|
|
"frame/support/test/pallet",
|
|
"frame/system",
|
|
"frame/system/benchmarking",
|
|
"frame/system/rpc/runtime-api",
|
|
"frame/timestamp",
|
|
"frame/transaction-payment",
|
|
"frame/transaction-payment/asset-tx-payment",
|
|
"frame/transaction-payment/rpc",
|
|
"frame/transaction-payment/rpc/runtime-api",
|
|
"frame/transaction-storage",
|
|
"frame/treasury",
|
|
"frame/asset-rate",
|
|
"frame/tips",
|
|
"frame/uniques",
|
|
"frame/utility",
|
|
"frame/vesting",
|
|
"frame/glutton",
|
|
"frame/whitelist",
|
|
"primitives/api",
|
|
"primitives/api/proc-macro",
|
|
"primitives/api/test",
|
|
"primitives/application-crypto",
|
|
"primitives/application-crypto/test",
|
|
"primitives/arithmetic",
|
|
"primitives/arithmetic/fuzzer",
|
|
"primitives/authority-discovery",
|
|
"primitives/block-builder",
|
|
"primitives/blockchain",
|
|
"primitives/consensus/aura",
|
|
"primitives/consensus/babe",
|
|
"primitives/consensus/beefy",
|
|
"primitives/consensus/common",
|
|
"primitives/consensus/grandpa",
|
|
"primitives/consensus/pow",
|
|
"primitives/consensus/slots",
|
|
"primitives/core",
|
|
"primitives/core/hashing",
|
|
"primitives/core/hashing/proc-macro",
|
|
"primitives/database",
|
|
"primitives/debug-derive",
|
|
"primitives/externalities",
|
|
"primitives/inherents",
|
|
"primitives/io",
|
|
"primitives/keyring",
|
|
"primitives/keystore",
|
|
"primitives/maybe-compressed-blob",
|
|
"primitives/merkle-mountain-range",
|
|
"primitives/metadata-ir",
|
|
"primitives/npos-elections",
|
|
"primitives/npos-elections/fuzzer",
|
|
"primitives/offchain",
|
|
"primitives/panic-handler",
|
|
"primitives/rpc",
|
|
"primitives/runtime",
|
|
"primitives/runtime-interface",
|
|
"primitives/runtime-interface/proc-macro",
|
|
"primitives/runtime-interface/test",
|
|
"primitives/runtime-interface/test-wasm",
|
|
"primitives/runtime-interface/test-wasm-deprecated",
|
|
"primitives/session",
|
|
"primitives/staking",
|
|
"primitives/state-machine",
|
|
"primitives/statement-store",
|
|
"primitives/std",
|
|
"primitives/storage",
|
|
"primitives/test-primitives",
|
|
"primitives/timestamp",
|
|
"primitives/tracing",
|
|
"primitives/transaction-pool",
|
|
"primitives/transaction-storage-proof",
|
|
"primitives/trie",
|
|
"primitives/version",
|
|
"primitives/version/proc-macro",
|
|
"primitives/wasm-interface",
|
|
"primitives/weights",
|
|
"scripts/ci/node-template-release",
|
|
"test-utils",
|
|
"test-utils/client",
|
|
"test-utils/derive",
|
|
"test-utils/runtime",
|
|
"test-utils/runtime/client",
|
|
"test-utils/runtime/transaction-pool",
|
|
"test-utils/test-crate",
|
|
"utils/build-script-utils",
|
|
"utils/fork-tree",
|
|
"utils/frame/benchmarking-cli",
|
|
"utils/frame/remote-externalities",
|
|
"utils/frame/frame-utilities-cli",
|
|
"utils/frame/try-runtime/cli",
|
|
"utils/frame/rpc/state-trie-migration-rpc",
|
|
"utils/frame/rpc/support",
|
|
"utils/frame/rpc/system",
|
|
"utils/frame/generate-bags",
|
|
"utils/frame/generate-bags/node-runtime",
|
|
"utils/frame/rpc/client",
|
|
"utils/prometheus",
|
|
"utils/wasm-builder",
|
|
"utils/binary-merkle-tree",
|
|
]
|
|
|
|
# The list of dependencies below (which can be both direct and indirect dependencies) are crates
|
|
# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
|
|
# their debug info might be missing) or to require to be frequently recompiled. We compile these
|
|
# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
|
|
# The majority of these crates are cryptographic libraries.
|
|
#
|
|
# Note that this does **not** affect crates that depend on Substrate. In other words, if you add
|
|
# a dependency on Substrate, you have to copy-paste this list in your own `Cargo.toml` (assuming
|
|
# that you want the same list). This list is only relevant when running `cargo build` from within
|
|
# the Substrate workspace.
|
|
#
|
|
# If you see an error mentioning "profile package spec ... did not match any packages", it
|
|
# probably concerns this list.
|
|
#
|
|
# This list is ordered alphabetically.
|
|
[profile.dev.package]
|
|
blake2 = { opt-level = 3 }
|
|
blake2b_simd = { opt-level = 3 }
|
|
chacha20poly1305 = { opt-level = 3 }
|
|
cranelift-codegen = { opt-level = 3 }
|
|
cranelift-wasm = { opt-level = 3 }
|
|
crc32fast = { opt-level = 3 }
|
|
crossbeam-deque = { opt-level = 3 }
|
|
crypto-mac = { opt-level = 3 }
|
|
curve25519-dalek = { opt-level = 3 }
|
|
ed25519-zebra = { opt-level = 3 }
|
|
flate2 = { opt-level = 3 }
|
|
futures-channel = { opt-level = 3 }
|
|
hashbrown = { opt-level = 3 }
|
|
hash-db = { opt-level = 3 }
|
|
hmac = { opt-level = 3 }
|
|
httparse = { opt-level = 3 }
|
|
integer-sqrt = { opt-level = 3 }
|
|
k256 = { opt-level = 3 }
|
|
keccak = { opt-level = 3 }
|
|
libm = { opt-level = 3 }
|
|
librocksdb-sys = { opt-level = 3 }
|
|
libsecp256k1 = { opt-level = 3 }
|
|
libz-sys = { opt-level = 3 }
|
|
mio = { opt-level = 3 }
|
|
nalgebra = { opt-level = 3 }
|
|
num-bigint = { opt-level = 3 }
|
|
parking_lot = { opt-level = 3 }
|
|
parking_lot_core = { opt-level = 3 }
|
|
percent-encoding = { opt-level = 3 }
|
|
primitive-types = { opt-level = 3 }
|
|
ring = { opt-level = 3 }
|
|
rustls = { opt-level = 3 }
|
|
secp256k1 = { opt-level = 3 }
|
|
sha2 = { opt-level = 3 }
|
|
sha3 = { opt-level = 3 }
|
|
smallvec = { opt-level = 3 }
|
|
snow = { opt-level = 3 }
|
|
twox-hash = { opt-level = 3 }
|
|
uint = { opt-level = 3 }
|
|
wasmi = { opt-level = 3 }
|
|
x25519-dalek = { opt-level = 3 }
|
|
yamux = { opt-level = 3 }
|
|
zeroize = { opt-level = 3 }
|
|
|
|
[profile.release]
|
|
# Substrate runtime requires unwinding.
|
|
panic = "unwind"
|
|
|
|
[profile.production]
|
|
inherits = "release"
|
|
|
|
# Sacrifice compile speed for execution speed by using optimization flags:
|
|
|
|
# https://doc.rust-lang.org/rustc/linker-plugin-lto.html
|
|
lto = "fat"
|
|
# https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
|
|
codegen-units = 1
|