Skip to content

Commit

Permalink
Framework upgrade 0.53.2
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Oct 9, 2024
1 parent 091289e commit 6c7a767
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 30 deletions.
14 changes: 12 additions & 2 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions contracts/potlock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ readme = "README.md"
path = "src/potlock.rs"

[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]
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "0.52.3"
version = "0.53.2"
8 changes: 4 additions & 4 deletions contracts/potlock/interact-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[[bin]]
name = "rust-interact"
name = "potlock-interact"
path = "src/potlock_interactor_main.rs"

[package]
name = "rust-interact"
name = "potlock-interact"
version = "0.0.0"
authors = ["you"]
edition = "2021"
Expand All @@ -16,10 +16,10 @@ toml = "0.8.6"
path = ".."

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

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

[dependencies.clap]
version = "4.4.7"
Expand Down
2 changes: 1 addition & 1 deletion contracts/potlock/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
36 changes: 18 additions & 18 deletions contracts/potlock/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 contracts/potlock/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 = ["."]
4 changes: 3 additions & 1 deletion contracts/price-aggregator/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
////////////////////////////////////////////////////

// Init: 1
// Upgrade: 1
// Endpoints: 21
// Async Callback (empty): 1
// Total number of exported functions: 23
// Total number of exported functions: 24

#![no_std]

Expand All @@ -18,6 +19,7 @@ multiversx_sc_wasm_adapter::endpoints! {
multiversx_price_aggregator_sc
(
init => init
upgrade => upgrade
changeAmounts => change_amounts
addOracles => add_oracles
removeOracles => remove_oracles
Expand Down

0 comments on commit 6c7a767

Please sign in to comment.