├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── rpc ├── Cargo.toml ├── runtime-api │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ ├── lib.rs │ └── tests.rs ├── rustfmt.toml └── src ├── benchmarking.rs ├── lib.rs ├── mock.rs ├── rpc.rs ├── tests.rs └── weights.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/README.md -------------------------------------------------------------------------------- /rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/rpc/Cargo.toml -------------------------------------------------------------------------------- /rpc/runtime-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/rpc/runtime-api/Cargo.toml -------------------------------------------------------------------------------- /rpc/runtime-api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/rpc/runtime-api/src/lib.rs -------------------------------------------------------------------------------- /rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/rpc/src/lib.rs -------------------------------------------------------------------------------- /rpc/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/rpc/src/tests.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | fn_call_width = 85 2 | -------------------------------------------------------------------------------- /src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/benchmarking.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/mock.rs -------------------------------------------------------------------------------- /src/rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/rpc.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-dex/HEAD/src/weights.rs --------------------------------------------------------------------------------