diff --git a/CHANGELOG.md b/CHANGELOG.md index 276d9d3..f78bdf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. ### Bug Fixes - Server context types +- Remove double Arc Mutex from state types ### Features @@ -14,18 +15,23 @@ All notable changes to this project will be documented in this file. - Add telegram notifications - Discv5 configs - Add e2e tests +- Serves represented indexer info query ### Miscellaneous Tasks - Release 0.3.2 - Release 0.3.3 - Release 0.3.4 +- Update sdk version +- Release 0.3.5 ### Refactor - Operator struct replaces global mutex - Update interval constants - Remove 'v' prefix from release tag +- New ratio formatting +- Update logging level ## [0.3.1] - 2023-05-22 diff --git a/Cargo.lock b/Cargo.lock index f26d425..1f5810e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2281,50 +2281,9 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.3.2" -source = "git+https://github.com/graphops/graphcast-sdk?rev=278b537#278b537c7c83ffcfe461723b4948e6cb95264de9" -dependencies = [ - "anyhow", - "async-graphql", - "async-graphql-axum", - "chrono", - "clap", - "data-encoding", - "derive-getters", - "dotenv", - "ethers", - "ethers-contract", - "ethers-core 2.0.6", - "ethers-derive-eip712", - "graphql_client 0.12.0", - "lazy_static", - "num-bigint", - "num-traits", - "once_cell", - "partial_application", - "prometheus-http-query", - "prost", - "reqwest", - "rsb_derive", - "secp256k1 0.26.0", - "serde", - "serde_derive", - "serde_json", - "slack-morphism", - "teloxide", - "thiserror", - "tokio", - "toml 0.7.4", - "tracing", - "tracing-subscriber", - "url", - "waku-bindings", -] - -[[package]] -name = "graphcast-sdk" -version = "0.3.2" -source = "git+https://github.com/graphops/graphcast-sdk#fe2579dc36d87894abc00bde7b7d04bd41e9f08a" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d884fa3c4951e0310ee056144d8f300f9a095859c8e23914aaa97c550c6ee3" dependencies = [ "anyhow", "async-graphql", @@ -3858,7 +3817,7 @@ dependencies = [ [[package]] name = "poi-radio" -version = "0.3.4" +version = "0.3.5" dependencies = [ "anyhow", "async-graphql", @@ -3875,7 +3834,7 @@ dependencies = [ "ethers-contract", "ethers-core 2.0.6", "ethers-derive-eip712", - "graphcast-sdk 0.3.2 (git+https://github.com/graphops/graphcast-sdk?rev=278b537)", + "graphcast-sdk", "graphql_client 0.9.0", "hex", "metrics", @@ -5333,7 +5292,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk 0.3.2 (git+https://github.com/graphops/graphcast-sdk)", + "graphcast-sdk", "poi-radio", "rand 0.8.5", "serde", @@ -5354,7 +5313,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk 0.3.2 (git+https://github.com/graphops/graphcast-sdk)", + "graphcast-sdk", "poi-radio", "rand 0.8.5", "ring", @@ -5372,7 +5331,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk 0.3.2 (git+https://github.com/graphops/graphcast-sdk)", + "graphcast-sdk", "poi-radio", "rand 0.8.5", "tokio", diff --git a/poi-radio/Cargo.toml b/poi-radio/Cargo.toml index 6d335a4..91b1bf8 100644 --- a/poi-radio/Cargo.toml +++ b/poi-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poi-radio" -version = "0.3.4" +version = "0.3.5" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "POI Radio monitors subgraph data integrity in real time using Graphcast SDK" @@ -10,7 +10,7 @@ keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"] categories = ["network-programming", "web-programming::http-client"] [dependencies] -graphcast_sdk = { package = "graphcast-sdk", git = "https://github.com/graphops/graphcast-sdk", rev = "278b537" } +graphcast-sdk = "0.3.3" prost = "0.11" once_cell = "1.17" chrono = "0.4" diff --git a/test-runner/Cargo.toml b/test-runner/Cargo.toml index c9fc937..7e20bb9 100644 --- a/test-runner/Cargo.toml +++ b/test-runner/Cargo.toml @@ -23,7 +23,7 @@ categories = [ [dependencies] waku = { version = "0.1.0", package = "waku-bindings" } test-utils = { path = "../test-utils" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.3" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1" diff --git a/test-sender/Cargo.toml b/test-sender/Cargo.toml index b2296f5..128bc36 100644 --- a/test-sender/Cargo.toml +++ b/test-sender/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.0", package = "waku-bindings" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.3" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1" diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 9a22eea..6642d49 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.0", package = "waku-bindings" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.3" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1"