Explorar el Código

chore(hermes): bump major version

Ali Behjati hace 2 años
padre
commit
916d9463b2
Se han modificado 3 ficheros con 5 adiciones y 5 borrados
  1. 1 1
      hermes/Cargo.lock
  2. 1 1
      hermes/Cargo.toml
  3. 3 3
      hermes/README.md

+ 1 - 1
hermes/Cargo.lock

@@ -1858,7 +1858,7 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
 
 [[package]]
 name = "hermes"
-version = "0.1.22"
+version = "0.2.0"
 dependencies = [
  "anyhow",
  "async-trait",

+ 1 - 1
hermes/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name        = "hermes"
-version     = "0.1.22"
+version     = "0.2.0"
 description = "Hermes is an agent that provides Verified Prices from the Pythnet Pyth Oracle."
 edition     = "2021"
 

+ 3 - 3
hermes/README.md

@@ -38,8 +38,8 @@ To set up and run a Hermes node, follow the steps below:
 
    ```bash
    ./target/release/hermes run \
-     --pythnet-http-endpoint https://pythnet-rpc/ \
-     --pythnet-ws-endpoint wss://pythnet-rpc/
+     --pythnet-http-addr https://pythnet-rpc/ \
+     --pythnet-ws-addr wss://pythnet-rpc/
    ```
 
    Your Hermes node will now start and connect to the specified networks. You
@@ -49,5 +49,5 @@ To set up and run a Hermes node, follow the steps below:
    it automatically when the code changes:
 
    ```bash
-   cargo watch -w src -x "run -- run --pythnet-http-endpoint https://pythnet-rpc/ --pythnet-ws-endpoint wss://pythnet-rpc/"
+   cargo watch -w src -x "run -- run --pythnet-http-addr https://pythnet-rpc/ --pythnet-ws-addr wss://pythnet-rpc/"
    ```