-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some things have changed with the way Dune returns things: Response bytes can be bigger than u16 Floats are returned as strings Timestamps no longer have the T in the middle Most of these things are since the move from Spark to Trino (since this project has not been touched since then). Furthermore we Updated dependencies Fixed dead reference links Migrated an old query to Trino yada yada yada.. Nobody even watches this repo, none of this matters to anyone but me... But it will matter.
- Loading branch information
Showing
7 changed files
with
96 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "duners" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
authors = ["Ben Smith <[email protected]>"] | ||
edition = "2021" | ||
description = "A simple framework for fetching query results from with [Dune Analytics API](https://dune.com/docs/api/)." | ||
|
@@ -11,11 +11,11 @@ license = "MIT OR Apache-2.0" | |
keywords = ["dune", "ethereum", "api-client", "web3", "dune-analytics"] | ||
|
||
[dependencies] | ||
chrono = { version ="0.4.23", features = ["serde", "rustc-serialize"] } | ||
chrono = { version = "0.4.31", features = ["serde"] } | ||
dotenv = "0.15.0" | ||
log = "0.4.17" | ||
reqwest = { version = "0.11.13", features = ["json"] } | ||
serde = { version = "1.0.151", features=["derive"] } | ||
serde_json = "1.0.91" | ||
serde_with = "2.1.0" | ||
tokio = { version = "1.23.0", features = ["full"] } | ||
log = "0.4.20" | ||
reqwest = { version = "0.11.22", features = ["json"] } | ||
serde = { version = "1.0.193", features = ["derive"] } | ||
serde_json = "1.0.108" | ||
serde_with = "3.4.0" | ||
tokio = { version = "1.34.0", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
/// DuneClient structure and all API route implementations. | ||
pub mod client; | ||
/// Utility Methods (primarily for date parsing) | ||
pub mod dateutil; | ||
/// DuneRequestError (encapsulating all errors that could arise within network requests and result parsing) | ||
pub mod error; | ||
/// Content related to Query Parameters. | ||
pub mod parameters; | ||
/// Utility Methods (primarily for date parsing) | ||
pub mod parse_utils; | ||
/// Data models representing response types for all client methods. | ||
pub mod response; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters