-
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.
* feat(endpoint_onchain_ohlc): Initial work for OHLC endpoint * feat(endpoint_onchain_ohlc): Fixed compilation error * feat(endpoint_onchain_ohlc): Added ohlc computation * feat(endpoint_onchain_ohlc): Added FromIterator trait * feat(endpoint_onchain_ohlc): Fixed earliest timesamp * feat(endpoint_onchain_ohlc): Removed monster SQL query and used Rust * feat(endpoint_onchain_ohlc): Updated OHLC computation with limit parameter * feat(endpoint_onchain_ohlc): TODO * feat(endpoint_onchain_ohlc): Repushed query * feat(endpoint_onchain_ohlc): Added ws endpoint for OHLC * feat(endpoint_onchain_ohlc): compute OHLC data (ws) * feat(endpoint_onchain_ohlc): refinements from review * feat(endpoint_onchain_ohlc): Added docs for context
- Loading branch information
Showing
17 changed files
with
544 additions
and
49 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 +1,4 @@ | ||
FROM rust:1.75 as builder | ||
FROM rust:1.78 as builder | ||
|
||
WORKDIR /home/pragma-ingestor | ||
|
||
|
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,4 +1,4 @@ | ||
FROM rust:1.75 as builder | ||
FROM rust:1.78 as builder | ||
|
||
WORKDIR /home/pragma-node | ||
|
||
|
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
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
Oops, something went wrong.