瀏覽代碼

Fix version issue in lazer publisher and rust sdks (#2955)

Dani Mehrjerdi 3 月之前
父節點
當前提交
b31e059c6e

+ 2 - 2
Cargo.lock

@@ -5669,7 +5669,7 @@ dependencies = [
 
 [[package]]
 name = "pyth-lazer-client"
-version = "2.1.0"
+version = "4.0.0"
 dependencies = [
  "alloy-primitives 0.8.25",
  "anyhow",
@@ -5753,7 +5753,7 @@ dependencies = [
 
 [[package]]
 name = "pyth-lazer-publisher-sdk"
-version = "0.6.0"
+version = "0.7.0"
 dependencies = [
  "anyhow",
  "fs-err",

+ 1 - 1
lazer/publisher_sdk/rust/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "pyth-lazer-publisher-sdk"
-version = "0.6.0"
+version = "0.7.0"
 edition = "2021"
 description = "Pyth Lazer Publisher SDK types."
 license = "Apache-2.0"

+ 1 - 1
lazer/sdk/rust/client/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "pyth-lazer-client"
-version = "2.1.0"
+version = "4.0.0"
 edition = "2021"
 description = "A Rust client for Pyth Lazer"
 license = "Apache-2.0"

+ 1 - 1
target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol

@@ -52,7 +52,7 @@ interface IEntropy is EntropyEvents, EntropyEventsV2, IEntropyV2 {
     // The address calling this function should be a contract that inherits from the IEntropyConsumer interface.
     // The `entropyCallback` method on that interface will receive a callback with the generated random number.
     // `entropyCallback` will be run with the provider's default gas limit (see `getProviderInfo(provider).defaultGasLimit`).
-    // If your callback needs additional gas, please use the function `requestv2` from `IEntropyV2` interface 
+    // If your callback needs additional gas, please use the function `requestv2` from `IEntropyV2` interface
     // with gasLimit as the input parameter.
     //
     // This method will revert unless the caller provides a sufficient fee (at least `getFee(provider)`) as msg.value.