update to runtime 800
Showing
- Cargo.lock 1630 additions, 993 deletionsCargo.lock
- Cargo.toml 26 additions, 23 deletionsCargo.toml
- README.md 15 additions, 2 deletionsREADME.md
- doc/config.md 2 additions, 2 deletionsdoc/config.md
- res/indexer-queries.graphql 15 additions, 9 deletionsres/indexer-queries.graphql
- res/indexer-schema.graphql 2632 additions, 3551 deletionsres/indexer-schema.graphql
- res/indexer-schema.json 0 additions, 1 deletionres/indexer-schema.json
- res/metadata.scale 0 additions, 0 deletionsres/metadata.scale
- src/commands/certification.rs 3 additions, 7 deletionssrc/commands/certification.rs
- src/commands/cesium.rs 17 additions, 9 deletionssrc/commands/cesium.rs
- src/commands/collective.rs 21 additions, 11 deletionssrc/commands/collective.rs
- src/commands/distance.rs 19 additions, 26 deletionssrc/commands/distance.rs
- src/commands/expire.rs 3 additions, 43 deletionssrc/commands/expire.rs
- src/commands/identity.rs 40 additions, 79 deletionssrc/commands/identity.rs
- src/commands/net_test.rs 7 additions, 6 deletionssrc/commands/net_test.rs
- src/commands/runtime.rs 148 additions, 31 deletionssrc/commands/runtime.rs
- src/commands/smith.rs 43 additions, 103 deletionssrc/commands/smith.rs
- src/commands/sudo.rs 3 additions, 9 deletionssrc/commands/sudo.rs
- src/commands/transfer.rs 4 additions, 2 deletionssrc/commands/transfer.rs
- src/data.rs 3 additions, 3 deletionssrc/data.rs
This diff is collapsed.
[package] | ||
authors = ["librelois <c@elo.tf>", "tuxmain <tuxmain@zettascript.org>"] | ||
authors = ["librelois <c@elo.tf>", "tuxmain <tuxmain@zettascript.org>", "h30x <hugo@trentesaux.fr>"] | ||
edition = "2021" | ||
license = "AGPL-3.0" | ||
name = "gcli" | ||
... | ... | @@ -7,28 +7,29 @@ repository = "https://git.duniter.org/clients/rust/gcli-v2s" |
version = "0.1.0" | ||
[dependencies] | ||
anyhow = "1.0" | ||
clap = { version = "4.1.9", features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "3.4.0" } | ||
env_logger = "0.10" | ||
futures = "0.3.27" | ||
graphql_client = { version = "0.12.0", features = ["reqwest"] } | ||
hex = "0.4.3" | ||
log = "0.4.17" | ||
reqwest = "0.11.14" | ||
rpassword = "7.2.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "^1.0.107" | ||
sp-core = { git = "https://github.com/duniter/substrate.git", branch = "duniter-substrate-v0.9.42" } | ||
sp-runtime = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42" } | ||
subxt = { git = "https://github.com/duniter/subxt.git", branch = "subxt-v0.32.1-duniter-substrate-v0.9.42", features = ["substrate-compat"] } | ||
# subxt-signer = { git = "https://github.com/duniter/subxt.git", branch = "subxt-v0.32.1-duniter-substrate-v0.9.42", features = ["subxt"] } | ||
# sp-api = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.42'} | ||
tokio = { version = "1.26.0", features = ["macros"] } | ||
confy = "0.5.1" | ||
scrypt = { version = "0.11", default-features = false } # for old-style key generation | ||
nacl = { version = "0.5.3" } # for old-style key generation | ||
bs58 = "0.5.0" | ||
# subxt is main dependency | ||
subxt = { git = 'https://github.com/duniter/subxt', branch = 'subxt-v0.34.0-duniter-substrate-v1.6.0', default-features = false, features = ["substrate-compat", "native", "jsonrpsee"] } | ||
# substrate primitives dependencies | ||
sp-core = { git = "https://github.com/duniter/duniter-polkadot-sdk.git", branch = "duniter-substrate-v1.6.0" } | ||
sp-runtime = { git = "https://github.com/duniter/duniter-polkadot-sdk.git", branch = "duniter-substrate-v1.6.0" } | ||
# crates.io dependencies | ||
anyhow = "^1.0" | ||
clap = { version = "^4.4.18", features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "^3.6.9" } | ||
env_logger = "^0.10" | ||
futures = "^0.3.30" | ||
graphql_client = { version = "^0.12.0", features = ["reqwest"] } | ||
hex = "^0.4.3" | ||
log = "^0.4.20" | ||
reqwest = "^0.11.23" | ||
rpassword = "^7.3.1" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0.113" | ||
tokio = { version = "^1.35.1", features = ["macros"] } | ||
confy = "^0.5.1" | ||
scrypt = { version = "^0.11", default-features = false } # for old-style key generation | ||
nacl = { version = "^0.5.3" } # for old-style key generation | ||
bs58 = "^0.5.0" | ||
# allows to build gcli for different runtimes and with different predefined networks | ||
[features] | ||
... | ... | @@ -36,3 +37,5 @@ default = ["gdev"] # default runtime is "gdev", gdev network is available |
gdev = [] | ||
gtest = [] | ||
g1 = [] | ||
This diff is collapsed.
res/indexer-schema.json
deleted
100644 → 0
source diff could not be displayed: it is too large. Options to address this: view the blob.
No preview for this file type
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Please register or sign in to comment