Skip to content

Commit

Permalink
Merge pull request #92
Browse files Browse the repository at this point in the history
Update MvX SDK to 0.52.3
  • Loading branch information
gfusee authored Sep 30, 2024
2 parents 720b43b + 3c1949d commit 32a4f31
Show file tree
Hide file tree
Showing 14 changed files with 35 additions and 2,997 deletions.
2,962 changes: 0 additions & 2,962 deletions Cargo.lock

This file was deleted.

10 changes: 5 additions & 5 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ async-trait = "0.1.72"
serde = "1.0.177"
serde_json = "1.0.104"
tokio = "1.29.1"
multiversx-sc = "0.50.3"
multiversx-sc-snippets = "0.50.3"
multiversx-sc = "0.52.3"
multiversx-sc-snippets = "0.52.3"
multiversx-sdk = "0.4.1"
multiversx-sc-scenario = "0.50.3"
multiversx-sc-codec = "0.19.0"
multiversx-sc-codec-derive = "=0.19.0"
multiversx-sc-scenario = "0.52.3"
multiversx-sc-codec = "0.20.1"
multiversx-sc-codec-derive = "=0.20.1"
reqwest = "0.11.18"
hex = "0.4.3"

Expand Down
6 changes: 3 additions & 3 deletions data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ repository = "https://github.com/gfusee/novax"

[dependencies]
num-bigint = "0.4.3"
multiversx-sc = "0.50.3"
multiversx-sc-scenario = "0.50.3"
multiversx-sc-codec = "0.19.0"
multiversx-sc = "0.52.3"
multiversx-sc-scenario = "0.52.3"
multiversx-sc-codec = "0.20.1"
multiversx-sdk = "0.4.1"
serde = "1.0.183"
base64 = "0.21.3"
2 changes: 1 addition & 1 deletion data/src/types/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ multiversx_sc::derive_imports!();
///
/// # Methods
/// - `to_native`: Performs the conversion from the managed type to the specified
/// native Rust type.
/// native Rust type.
pub trait NativeConvertible {
/// The native Rust type to which the managed type will be converted.
type Native;
Expand Down
6 changes: 3 additions & 3 deletions executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ sha3 = "0.10.8"
pem = "3.0.4"
novax-data = { path = "../data", version = "0.1.8" }
novax-request = { path = "../request", version = "0.1.8" }
multiversx-sc = "0.50.3"
multiversx-sc-scenario = "0.50.3"
multiversx-sc = "0.52.3"
multiversx-sc-scenario = "0.52.3"
multiversx-sdk = "0.4.1"
multiversx-sc-snippets = "0.50.3"
multiversx-sc-snippets = "0.52.3"

[dev-dependencies]
serde_json = "1.0.105"
2 changes: 1 addition & 1 deletion executor/src/utils/transaction/results.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use base64::Engine;
use multiversx_sc_scenario::scenario_model::decode_scr_data_or_panic;
use multiversx_sc_snippets::network_response::decode_scr_data_or_panic;
use multiversx_sdk::utils::base64_decode;

use crate::{ExecutorError, TransactionOnNetworkTransactionLogs, TransactionOnNetworkTransactionLogsEvents, TransactionOnNetworkTransactionSmartContractResult};
Expand Down
4 changes: 2 additions & 2 deletions mocking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ tokio = "1.30.0"
novax = { path = "../core", version = "0.1.8" }
novax-token = { path = "../token", version = "0.1.8" }
novax-executor = { path = "../executor", version = "0.1.8" }
multiversx-sc = "0.50.3"
multiversx-sc-snippets = "0.50.3"
multiversx-sc = "0.52.3"
multiversx-sc-snippets = "0.52.3"
multiversx-sdk = "0.4.1"
reqwest = "0.11.18"
serde = "1.0.180"
Expand Down
12 changes: 6 additions & 6 deletions tester/contract/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tester/contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ publish = false
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "0.50.3"
version = "0.52.3"

[dev-dependencies]
num-bigint = "0.4"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.3"
version = "0.52.3"
4 changes: 2 additions & 2 deletions tester/contract/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ publish = false
[dependencies.tester-contract]
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.3"
[dependencies.multiversx-sc-meta-lib]
version = "0.52.3"
default-features = false
2 changes: 1 addition & 1 deletion tester/contract/meta/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
multiversx_sc_meta::cli_main::<tester_contract::AbiProvider>();
multiversx_sc_meta_lib::cli_main::<tester_contract::AbiProvider>();
}
10 changes: 5 additions & 5 deletions tester/contract/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tester/contract/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.3"
version = "0.52.3"

[workspace]
members = ["."]
6 changes: 3 additions & 3 deletions token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ novax-data = { path = "../data", version = "0.1.8" }
novax-request = { path = "../request", version = "0.1.8" }
num-bigint = "0.4.4"
async-trait = "0.1.73"
multiversx-sc = "0.50.3"
multiversx-sc-scenario = "0.50.3"
multiversx-sc-codec = "0.19.0"
multiversx-sc = "0.52.3"
multiversx-sc-scenario = "0.52.3"
multiversx-sc-codec = "0.20.1"
base64 = "0.21.5"

[dev-dependencies]
Expand Down

0 comments on commit 32a4f31

Please sign in to comment.