From 7c738b759361a0c856fedc67af7647641922b67c Mon Sep 17 00:00:00 2001 From: Danial Mehrjerdi Date: Fri, 15 Aug 2025 10:31:14 +0200 Subject: [PATCH] Fix version issue in lazer publisher and rust sdks --- Cargo.lock | 4 ++-- lazer/publisher_sdk/rust/Cargo.toml | 2 +- lazer/sdk/rust/client/Cargo.toml | 2 +- target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9f86159d6..3b4fd4b99b 100644 --- a/Cargo.lock +++ b/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", diff --git a/lazer/publisher_sdk/rust/Cargo.toml b/lazer/publisher_sdk/rust/Cargo.toml index 6695cbece3..735c27635e 100644 --- a/lazer/publisher_sdk/rust/Cargo.toml +++ b/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" diff --git a/lazer/sdk/rust/client/Cargo.toml b/lazer/sdk/rust/client/Cargo.toml index 17b54007a2..40fc29c8d3 100644 --- a/lazer/sdk/rust/client/Cargo.toml +++ b/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" diff --git a/target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol b/target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol index 728d627237..8d58524ed8 100644 --- a/target_chains/ethereum/entropy_sdk/solidity/IEntropy.sol +++ b/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.