Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Framework upgrade 0.53.2 #234

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
400 changes: 182 additions & 218 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions bridge-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ path = "../esdt-safe"
path = "../bridged-tokens-wrapper"

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

[dependencies.multiversx-sc-modules]
version = "0.52.3"
version = "0.53.2"

[dependencies.crowdfunding-esdt]
git = "https://github.com/multiversx/mx-contracts-rs"
rev = "d91bbff"
rev = "e72c201"

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

[dev-dependencies.multiversx-sc-scenario]
version = "=0.52.3"
version = "=0.53.2"
2 changes: 1 addition & 1 deletion bridge-proxy/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ authors = ["you"]
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "=0.52.3"
version = "=0.53.2"
4 changes: 2 additions & 2 deletions bridge-proxy/tests/test-contract/crowdfunding-esdt.mxsc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"framework": {
"name": "multiversx-sc",
"version": "0.52.3"
"version": "0.53.2"
}
},
"abi": {
Expand Down Expand Up @@ -193,4 +193,4 @@
"hasPanic": "none"
}
}
}
}
83 changes: 42 additions & 41 deletions bridge-proxy/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 bridge-proxy/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.52.3"
version = "=0.53.2"

[workspace]
members = ["."]
6 changes: 3 additions & 3 deletions bridged-tokens-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ path = "../common/tx-batch-module"
path = "../common/sc-proxies"

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

[dependencies.multiversx-sc-modules]
version = "=0.52.3"
version = "=0.53.2"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.52.3"
version = "=0.53.2"
2 changes: 1 addition & 1 deletion bridged-tokens-wrapper/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "=0.52.3"
version = "=0.53.2"
default-features = false
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(deprecated)]

use bridged_tokens_wrapper::BridgedTokensWrapper;
use eth_address::EthAddress;
use multiversx_sc_modules::pause::PauseModule;
Expand Down
Loading
Loading