Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,9 @@ sdk/python/dist/
.github/scripts/deploy/proxy_proxy_blob.hex
.github/scripts/deploy/pending-release.json
.github/scripts/deploy/deployment-multisig-proposal.hex

# Canonical rails local rig state and foundry build outputs
.rails/
contracts/evm/out/
contracts/evm/cache/
contracts/evm/broadcast/
52 changes: 52 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ useless_conversion = "allow" # until polkadot is patched

[workspace.dependencies]
pallet-alpha-assets = { path = "pallets/alpha-assets", default-features = false }
pallet-usd-psm = { path = "pallets/usd-psm", default-features = false }
pallet-usd-psm-runtime-api = { path = "pallets/usd-psm/runtime-api", default-features = false }
pallet-usd-psm-rpc = { path = "pallets/usd-psm/rpc", default-features = false }
node-subtensor-runtime = { path = "runtime", default-features = false }
pallet-admin-utils = { path = "pallets/admin-utils", default-features = false }
pallet-limit-orders = { path = "pallets/limit-orders", default-features = false }
Expand Down
4 changes: 4 additions & 0 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ runtime-common.workspace = true
impl-trait-for-tuples.workspace = true
approx = { workspace = true, optional = true }

[dev-dependencies]
hex.workspace = true
hex-literal.workspace = true

[lints]
workspace = true

Expand Down
1 change: 1 addition & 0 deletions common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ use frame_support::weights::WeightMeter;
mod currency;
mod evm_context;
mod proxy;
pub mod rails;
mod transaction_error;

/// Balance of an account.
Expand Down
Loading
Loading