Skip to content

Commit 55d1572

Browse files
authored
Voter hir output (#134)
* Process snapshot to output VoterHIR Use VoterHIR as the output format for the snapshot tool * revert vp cap * add graphql query and schema files * use reqwest::Url instead of string in cli arg * fix build * remove conflicting short option * fix indentation * fix conflicting cli options * add dummy implementation
1 parent 00c2beb commit 55d1572

File tree

7 files changed

+1291
-21
lines changed

7 files changed

+1291
-21
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

catalyst-toolbox/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ graphql_client = "0.10"
6060
gag = "1"
6161
vit-servicing-station-lib = { git = "https://github.com/input-output-hk/vit-servicing-station.git", branch = "master" }
6262
env_logger = "0.9"
63+
voting-hir = { path = "../voting-hir", features = ["serde"] }
6364

6465
[dev-dependencies]
6566
rand_chacha = "0.3"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
query AllReps {
2+
representatives {
3+
data {
4+
attributes {
5+
address
6+
}
7+
}
8+
}
9+
}

0 commit comments

Comments
 (0)