Skip to content

Commit daa97c3

Browse files
committed
Merge branch 'main' into pyth-stylus-governance-impl
2 parents 2e17cc9 + 928f003 commit daa97c3

27 files changed

+854
-210
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish Rust package pyth-lazer-agent to crates.io
2+
3+
on:
4+
push:
5+
tags:
6+
- pyth-lazer-agent-v*
7+
jobs:
8+
publish-pyth-lazer-agent:
9+
name: Publish Rust package pyth-lazer-agent to crates.io
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout sources
13+
uses: actions/checkout@v2
14+
15+
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
16+
env:
17+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
18+
working-directory: "apps/pyth-lazer-agent"

Cargo.lock

Lines changed: 20 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/hermes/server/Cargo.lock

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

apps/hermes/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hermes"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
description = "Hermes is an agent that provides Verified Prices from the Pythnet Pyth Oracle."
55
edition = "2021"
66

apps/hermes/server/src/api/rest/get_price_feed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ where
7373
)
7474
.await
7575
.map_err(|e| {
76-
tracing::warn!(
76+
tracing::debug!(
7777
"Error getting price feed {:?} with update data: {:?}",
7878
price_id,
7979
e

apps/hermes/server/src/api/rest/get_vaa.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ where
7272
)
7373
.await
7474
.map_err(|e| {
75-
tracing::warn!(
75+
tracing::debug!(
7676
"Error getting price feed {:?} with update data: {:?}",
7777
price_id,
7878
e

apps/hermes/server/src/api/rest/get_vaa_ccip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ where
7373
)
7474
.await
7575
.map_err(|e| {
76-
tracing::warn!(
76+
tracing::debug!(
7777
"Error getting price feed {:?} with update data: {:?}",
7878
price_id,
7979
e

apps/hermes/server/src/api/rest/latest_price_feeds.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ where
7272
Aggregates::get_price_feeds_with_update_data(state, &price_ids, RequestTime::Latest)
7373
.await
7474
.map_err(|e| {
75-
tracing::warn!(
75+
tracing::debug!(
7676
"Error getting price feeds {:?} with update data: {:?}",
7777
price_ids,
7878
e

apps/hermes/server/src/api/rest/latest_vaas.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ where
6161
Aggregates::get_price_feeds_with_update_data(state, &price_ids, RequestTime::Latest)
6262
.await
6363
.map_err(|e| {
64-
tracing::warn!(
64+
tracing::debug!(
6565
"Error getting price feeds {:?} with update data: {:?}",
6666
price_ids,
6767
e

apps/hermes/server/src/api/rest/v2/latest_price_updates.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ where
7979
Aggregates::get_price_feeds_with_update_data(state, &price_ids, RequestTime::Latest)
8080
.await
8181
.map_err(|e| {
82-
tracing::warn!(
82+
tracing::debug!(
8383
"Error getting price feeds {:?} with update data: {:?}",
8484
price_ids,
8585
e

0 commit comments

Comments
 (0)