diff --git a/CHANGELOG.md b/CHANGELOG.md index d412990d36..d997fb8e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,17 @@ They are: - `multiversx-chain-scenario-format`, in short `scenario-format`, scenario JSON serializer/deserializer, 1 crate. - `multiversx-sdk`, in short `sdk`, allows communication with the chain(s), 1 crate. + +## [sc 0.50.2] - 2024-05-24 +- Unified transaction syntax: + - Better compilation error messages for malformed transactions; + - Deprecated methods `async_call` and `async_call_promises`, which are kept for backwards compatibility, but causing confusion among developers; + - Contract upgrade available in tests. +- `sc-meta` proxy compare option, which checks that proxies are up to date. Useful for CI. +- `TypeAbi` - removed `Unmanaged` associated type trait bounds, and implemented it for more types. +- Removed jitter from interactor transaction fetch. +- Fixed an issue in the snippets generator. + ## [sc 0.50.1] - 2024-05-16 - `sc-meta all snippets` generates unified syntax. - Proxy generator can reference multi-contract variant. diff --git a/Cargo.lock b/Cargo.lock index 454c2c033d..391dd0874a 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -1890,7 +1890,7 @@ checksum = "b59072fa0624b55ae5ae3fa6bfa91515bbeb4ac440214bc4a509e2c8806d6e9f" [[package]] name = "multiversx-price-aggregator-sc" -version = "0.50.1" +version = "0.50.2" dependencies = [ "arrayvec", "getrandom 0.2.15", @@ -1911,7 +1911,7 @@ dependencies = [ [[package]] name = "multiversx-sc" -version = "0.50.1" +version = "0.50.2" dependencies = [ "bitflags 2.5.0", "hex-literal", @@ -1943,7 +1943,7 @@ dependencies = [ [[package]] name = "multiversx-sc-derive" -version = "0.50.1" +version = "0.50.2" dependencies = [ "hex", "proc-macro2", @@ -1954,7 +1954,7 @@ dependencies = [ [[package]] name = "multiversx-sc-meta" -version = "0.50.1" +version = "0.50.2" dependencies = [ "clap", "colored", @@ -1980,14 +1980,14 @@ dependencies = [ [[package]] name = "multiversx-sc-modules" -version = "0.50.1" +version = "0.50.2" dependencies = [ "multiversx-sc", ] [[package]] name = "multiversx-sc-scenario" -version = "0.50.1" +version = "0.50.2" dependencies = [ "base64", "bech32", @@ -2014,7 +2014,7 @@ dependencies = [ [[package]] name = "multiversx-sc-snippets" -version = "0.50.1" +version = "0.50.2" dependencies = [ "base64", "env_logger", @@ -2028,7 +2028,7 @@ dependencies = [ [[package]] name = "multiversx-sc-wasm-adapter" -version = "0.50.1" +version = "0.50.2" dependencies = [ "multiversx-sc", ] @@ -2059,7 +2059,7 @@ dependencies = [ [[package]] name = "multiversx-wegld-swap-sc" -version = "0.50.1" +version = "0.50.2" dependencies = [ "multiversx-sc", "multiversx-sc-modules", diff --git a/contracts/benchmarks/large-storage/Cargo.toml b/contracts/benchmarks/large-storage/Cargo.toml index 138a09e851..a871323ea8 100644 --- a/contracts/benchmarks/large-storage/Cargo.toml +++ b/contracts/benchmarks/large-storage/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/large_storage.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/benchmarks/large-storage/meta/Cargo.toml b/contracts/benchmarks/large-storage/meta/Cargo.toml index 472e2b616f..7b7d6434b2 100644 --- a/contracts/benchmarks/large-storage/meta/Cargo.toml +++ b/contracts/benchmarks/large-storage/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/large-storage/wasm/Cargo.toml b/contracts/benchmarks/large-storage/wasm/Cargo.toml index f3f97e406a..201116d231 100644 --- a/contracts/benchmarks/large-storage/wasm/Cargo.toml +++ b/contracts/benchmarks/large-storage/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/benchmark-common/Cargo.toml b/contracts/benchmarks/mappers/benchmark-common/Cargo.toml index 45310eb044..6d0e59e219 100644 --- a/contracts/benchmarks/mappers/benchmark-common/Cargo.toml +++ b/contracts/benchmarks/mappers/benchmark-common/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml b/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml index a99aaed522..7189016168 100644 --- a/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml index 158b09a734..91ad5d6a0d 100644 --- a/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml index 21d623d7be..55d6767463 100644 --- a/contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/map-repeat/Cargo.toml b/contracts/benchmarks/mappers/map-repeat/Cargo.toml index 675b56e1c2..4bd096e126 100644 --- a/contracts/benchmarks/mappers/map-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/map-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml index 7a5424fa1a..8849ae32c6 100644 --- a/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml index a525b02f79..f147ed5eb5 100644 --- a/contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/queue-repeat/Cargo.toml b/contracts/benchmarks/mappers/queue-repeat/Cargo.toml index 4d884954c0..2a20ef63db 100644 --- a/contracts/benchmarks/mappers/queue-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/queue-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml index d063dba3c1..4cb5492359 100644 --- a/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml index ec60e48a03..aff2a1bfd1 100644 --- a/contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/set-repeat/Cargo.toml b/contracts/benchmarks/mappers/set-repeat/Cargo.toml index ec51e7fde8..5da7bef443 100644 --- a/contracts/benchmarks/mappers/set-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/set-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml index 981872b36f..fc5fcd572a 100644 --- a/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/set-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/set-repeat/wasm/Cargo.toml index 1154eaba4a..2ca364b011 100644 --- a/contracts/benchmarks/mappers/set-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/set-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml b/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml index 683b716015..e074ee3ab2 100644 --- a/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml index 0a2a2219fd..fdf2a1f601 100644 --- a/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/single-value-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/single-value-repeat/wasm/Cargo.toml index 456d379155..23074413f9 100644 --- a/contracts/benchmarks/mappers/single-value-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/single-value-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/mappers/vec-repeat/Cargo.toml b/contracts/benchmarks/mappers/vec-repeat/Cargo.toml index 7c72eaf04d..d26dc4edaa 100644 --- a/contracts/benchmarks/mappers/vec-repeat/Cargo.toml +++ b/contracts/benchmarks/mappers/vec-repeat/Cargo.toml @@ -13,9 +13,9 @@ path = "../benchmark-common" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml b/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml index 7555f13c48..b6c3615731 100644 --- a/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/mappers/vec-repeat/wasm/Cargo.toml b/contracts/benchmarks/mappers/vec-repeat/wasm/Cargo.toml index cfd4d5c540..d2a492a11b 100644 --- a/contracts/benchmarks/mappers/vec-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/mappers/vec-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/send-tx-repeat/Cargo.toml b/contracts/benchmarks/send-tx-repeat/Cargo.toml index 90c0a64553..0dea5d128f 100644 --- a/contracts/benchmarks/send-tx-repeat/Cargo.toml +++ b/contracts/benchmarks/send-tx-repeat/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/send_tx_repeat.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml b/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml index 17554ab4c4..255d1e0159 100644 --- a/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml b/contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml index 10d0093eb7..380231895b 100644 --- a/contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/str-repeat/Cargo.toml b/contracts/benchmarks/str-repeat/Cargo.toml index 4adfa00e76..e69129709b 100644 --- a/contracts/benchmarks/str-repeat/Cargo.toml +++ b/contracts/benchmarks/str-repeat/Cargo.toml @@ -12,10 +12,10 @@ path = "src/str_repeat.rs" managed-buffer-builder-cached = ["multiversx-sc/managed-buffer-builder-cached"] [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/benchmarks/str-repeat/meta/Cargo.toml b/contracts/benchmarks/str-repeat/meta/Cargo.toml index 772906e453..ced6e8835b 100644 --- a/contracts/benchmarks/str-repeat/meta/Cargo.toml +++ b/contracts/benchmarks/str-repeat/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-basic/Cargo.toml b/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-basic/Cargo.toml index 5b30b06c37..3911218a2c 100644 --- a/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-basic/Cargo.toml +++ b/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-basic/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-cached/Cargo.toml b/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-cached/Cargo.toml index 0a1b7a6c85..51a8622a2a 100644 --- a/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-cached/Cargo.toml +++ b/contracts/benchmarks/str-repeat/wasm-str-repeat-mb-builder-cached/Cargo.toml @@ -29,7 +29,7 @@ path = ".." features = ["managed-buffer-builder-cached"] [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/benchmarks/str-repeat/wasm/Cargo.toml b/contracts/benchmarks/str-repeat/wasm/Cargo.toml index bcf0787432..cd9f64bc2c 100644 --- a/contracts/benchmarks/str-repeat/wasm/Cargo.toml +++ b/contracts/benchmarks/str-repeat/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/core/price-aggregator/Cargo.toml b/contracts/core/price-aggregator/Cargo.toml index 98c6565aa7..3ed7a01c40 100644 --- a/contracts/core/price-aggregator/Cargo.toml +++ b/contracts/core/price-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-price-aggregator-sc" -version = "0.50.1" +version = "0.50.2" authors = [ "Claudiu-Marcel Bruda ", "MultiversX ", @@ -19,15 +19,15 @@ edition = "2021" path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dependencies] diff --git a/contracts/core/price-aggregator/meta/Cargo.toml b/contracts/core/price-aggregator/meta/Cargo.toml index e1814d1cba..1b2e87862c 100644 --- a/contracts/core/price-aggregator/meta/Cargo.toml +++ b/contracts/core/price-aggregator/meta/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/core/price-aggregator/scenarios/stress_submit_test.scen.json b/contracts/core/price-aggregator/scenarios/stress_submit_test.scen.json index e2b19c9966..061e546079 100644 --- a/contracts/core/price-aggregator/scenarios/stress_submit_test.scen.json +++ b/contracts/core/price-aggregator/scenarios/stress_submit_test.scen.json @@ -1,221 +1,471 @@ { "steps": [ + { + "step": "setState", + "accounts": { + "address:owner": { + "nonce": "1" + } + }, + "newAddresses": [ + { + "creatorAddress": "address:owner", + "creatorNonce": "1", + "newAddress": "sc:price-aggregator" + } + ], + "currentBlockInfo": { + "blockTimestamp": "100" + } + }, { "step": "setState", "accounts": { "address:oracle1": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle2": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle3": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle4": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle5": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle6": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle7": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle8": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { + "address:oracle9": { + "nonce": "1", + "balance": "20" + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle10": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle11": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle12": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle13": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle14": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle15": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle16": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle17": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle18": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle19": { "nonce": "1", "balance": "20" - }, - "address:oracle2": { - "nonce": "1", - "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle20": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle21": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle22": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle23": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle24": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle25": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle26": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle27": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle28": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle29": { "nonce": "1", "balance": "20" - }, - "address:oracle3": { - "nonce": "1", - "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle30": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle31": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle32": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle33": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle34": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle35": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle36": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle37": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle38": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle39": { "nonce": "1", "balance": "20" - }, - "address:oracle4": { - "nonce": "1", - "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle40": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle41": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle42": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle43": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle44": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle45": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle46": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle47": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle48": { "nonce": "1", "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle49": { "nonce": "1", "balance": "20" - }, - "address:oracle5": { - "nonce": "1", - "balance": "20" - }, + } + } + }, + { + "step": "setState", + "accounts": { "address:oracle50": { "nonce": "1", "balance": "20" - }, - "address:oracle6": { - "nonce": "1", - "balance": "20" - }, - "address:oracle7": { - "nonce": "1", - "balance": "20" - }, - "address:oracle8": { - "nonce": "1", - "balance": "20" - }, - "address:oracle9": { - "nonce": "1", - "balance": "20" - }, - "address:owner": { - "nonce": "1" } - }, - "newAddresses": [ - { - "creatorAddress": "address:owner", - "creatorNonce": "1", - "newAddress": "sc:price-aggregator" - } - ], - "currentBlockInfo": { - "blockTimestamp": "100" } }, { @@ -281,7 +531,7 @@ "0x6f7261636c6534395f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f", "0x6f7261636c6535305f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f" ], - "gasLimit": "120,000,000" + "gasLimit": "120000000" }, "expect": { "out": [], @@ -297,7 +547,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -313,7 +563,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -329,7 +579,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -345,7 +595,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -361,7 +611,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -377,7 +627,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -393,7 +643,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -409,7 +659,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -425,7 +675,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -441,7 +691,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -457,7 +707,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -473,7 +723,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -489,7 +739,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -505,7 +755,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -521,7 +771,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -537,7 +787,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -553,7 +803,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -569,7 +819,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -585,7 +835,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -601,7 +851,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -617,7 +867,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -633,7 +883,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -649,7 +899,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -665,7 +915,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -681,7 +931,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -697,7 +947,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -713,7 +963,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -729,7 +979,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -745,7 +995,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -761,7 +1011,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -777,7 +1027,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -793,7 +1043,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -809,7 +1059,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -825,7 +1075,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -841,7 +1091,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -857,7 +1107,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -873,7 +1123,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -889,7 +1139,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -905,7 +1155,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -921,7 +1171,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -937,7 +1187,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -953,7 +1203,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -969,7 +1219,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -985,7 +1235,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1001,7 +1251,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1017,7 +1267,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1033,7 +1283,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1049,7 +1299,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1065,7 +1315,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1081,7 +1331,7 @@ "egldValue": "20", "function": "stake", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1115,7 +1365,7 @@ "to": "sc:price-aggregator", "function": "unpause", "arguments": [], - "gasLimit": "5,000,000" + "gasLimit": "5000000" }, "expect": { "out": [], @@ -1133,10 +1383,10 @@ "0x45474c44", "0x55534443", "0x5f", - "0xd7fd71920be3e621", + "0x091b184fc5f004bc", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1154,10 +1404,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x5a032236cff2ff06", + "0xe9729036cd9f154a", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1175,10 +1425,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2e874347688dffa1", + "0x0ef08fbbfb29fa9d", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1196,10 +1446,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x4c94033d5e15a73a", + "0x3207fb972c5e92a2", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1217,10 +1467,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2bd5b88173750be6", + "0x81ba83f439de498c", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1238,10 +1488,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xe4cb406e5f95d9d7", + "0x380bda1e8b6987fe", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1259,10 +1509,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xfd4dd723ed0b256e", + "0x5fa881a62fd716e8", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1280,10 +1530,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x66b6bfe973064cfd", + "0x9db00be817db07e0", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1301,10 +1551,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xbc6a51b940c5c479", + "0x8a8b067757123b97", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1322,10 +1572,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x47ca1962093887df", + "0x0808699d47e5e222", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1343,10 +1593,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xa9657f2b7c255e3c", + "0x8a99056e5a4f5ec3", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1364,10 +1614,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xadaf4aaa5e63f2e5", + "0x1287efa5ee285b89", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1385,10 +1635,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x153a1384b3d68656", + "0x66bb082cb14b588c", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1406,10 +1656,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x4ba5dda59b2ba4e9", + "0x73bb54c3bb79b2a6", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1427,10 +1677,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x973e0d62157afb51", + "0x7d51498a21f297d8", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1448,10 +1698,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xe18cb77b44399b45", + "0xa8994675249fbdb2", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1469,10 +1719,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x30a1ed7ed6069074", + "0x420cd3fca2dac22d", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1490,10 +1740,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xfbd288d325739548", + "0x3901967f0bfc4b19", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1511,10 +1761,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x83ad3ad74745e6f5", + "0xccc8301348269f6c", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1532,10 +1782,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x0cc85234d5ea00b2", + "0x11c61572cfd36f0f", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1553,10 +1803,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x8dae036c75e9a62c", + "0xe6e281fc1380f6f3", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1574,10 +1824,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x31549118c983eaa0", + "0x4f523657e1c21a98", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1595,10 +1845,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x8228096b6388b4bd", + "0x11b895da88edaa1e", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1616,10 +1866,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2dc8b16251c44710", + "0x8bb2b3e31cd509e4", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1637,10 +1887,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xbc66b6f85858d98c", + "0xcc978fd08060e331", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1658,10 +1908,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2937c9b0c1073c0b", + "0x0dd5b76ab90b7c03", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1679,10 +1929,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xa2b7bd06214aabc4", + "0x2efd4f1e2f0a9143", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1700,10 +1950,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x61ae8ac001144476", + "0xff0115c2c5ea8613", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1721,10 +1971,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x5f6de265c643495f", + "0xe8081bfc5cf835ad", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1742,10 +1992,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x67430307e2f864f0", + "0xc9c0dabc121dcf71", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1763,10 +2013,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x7de010a49d52cd3f", + "0x414192caf945151b", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1784,10 +2034,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xb27799264f3b84ec", + "0xb25fcb9f205015ac", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1805,10 +2055,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x53d7a1ade83e0f2e", + "0x6d50724a8b04cd43", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1826,10 +2076,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2ec40e01673b8ad7", + "0xe42075aed4756ad5", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1847,10 +2097,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xfb616537f76f8ffb", + "0x313f2a35c66769b4", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1868,10 +2118,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x387268d229f4ec9a", + "0xf1b35eb74cca65b7", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1889,10 +2139,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xdea0f1c84325ea3a", + "0x89213e40c5fe999e", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1910,10 +2160,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x12eb7cb637de6e86", + "0x342d9642971eac2f", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1931,10 +2181,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x5f6b1784511d622d", + "0x68fd1cd6d1a1b79f", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1952,10 +2202,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x1a41106366209d8d", + "0x2c04d693adeb2057", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1973,10 +2223,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2324bca02526fec9", + "0x7dacad262a3735a3", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -1994,10 +2244,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xccf33fc47ef34300", + "0x38f6ddde98fa0a7c", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2015,10 +2265,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xebfab26bff9c74a3", + "0x84aae4d7febb4cfb", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2036,10 +2286,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x116a45e410db659b", + "0x1caca9ac9fb81ca9", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2057,10 +2307,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xc9bddc2b06ba1f1e", + "0x06927d3077fd08f5", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2078,10 +2328,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xde7473b9bfdfe96c", + "0xdf8d07650cd0dba5", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2099,10 +2349,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x91c2ff3a5c73267e", + "0x5fed239143192dcc", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2120,10 +2370,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x95bb44dffc62bb47", + "0x089d23a332da37d8", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2141,10 +2391,10 @@ "0x45474c44", "0x55534443", "0x64", - "0x2f28d194b7659f9f", + "0x7ed0b7917587a1d4", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], @@ -2162,10 +2412,10 @@ "0x45474c44", "0x55534443", "0x64", - "0xc1bd397146f3353e", + "0xe5a6529755f6d826", "0x" ], - "gasLimit": "7,000,000" + "gasLimit": "7000000" }, "expect": { "out": [], diff --git a/contracts/core/price-aggregator/wasm/Cargo.toml b/contracts/core/price-aggregator/wasm/Cargo.toml index f98a12e4e5..2ab14a672b 100644 --- a/contracts/core/price-aggregator/wasm/Cargo.toml +++ b/contracts/core/price-aggregator/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/core/wegld-swap/Cargo.toml b/contracts/core/wegld-swap/Cargo.toml index 016a09db45..559e62d1f5 100644 --- a/contracts/core/wegld-swap/Cargo.toml +++ b/contracts/core/wegld-swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-wegld-swap-sc" -version = "0.50.1" +version = "0.50.2" authors = [ "Dorin Iancu ", @@ -20,13 +20,13 @@ edition = "2021" path = "src/wegld.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/core/wegld-swap/meta/Cargo.toml b/contracts/core/wegld-swap/meta/Cargo.toml index d728cc1385..e8e744932d 100644 --- a/contracts/core/wegld-swap/meta/Cargo.toml +++ b/contracts/core/wegld-swap/meta/Cargo.toml @@ -11,10 +11,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/core/wegld-swap/wasm/Cargo.toml b/contracts/core/wegld-swap/wasm/Cargo.toml index 097811caf9..b7b59a916d 100644 --- a/contracts/core/wegld-swap/wasm/Cargo.toml +++ b/contracts/core/wegld-swap/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/adder/Cargo.toml b/contracts/examples/adder/Cargo.toml index 58f704e35e..e2844c094b 100644 --- a/contracts/examples/adder/Cargo.toml +++ b/contracts/examples/adder/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/adder.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/adder/interact/Cargo.toml b/contracts/examples/adder/interact/Cargo.toml index 8c37a2b820..0ac38b4421 100644 --- a/contracts/examples/adder/interact/Cargo.toml +++ b/contracts/examples/adder/interact/Cargo.toml @@ -18,5 +18,5 @@ toml = "0.8.6" path = ".." [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/snippets" diff --git a/contracts/examples/adder/meta/Cargo.toml b/contracts/examples/adder/meta/Cargo.toml index cacdec590b..06b56a359a 100644 --- a/contracts/examples/adder/meta/Cargo.toml +++ b/contracts/examples/adder/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/adder/wasm/Cargo.toml b/contracts/examples/adder/wasm/Cargo.toml index a1b353be8d..aaabd53b90 100644 --- a/contracts/examples/adder/wasm/Cargo.toml +++ b/contracts/examples/adder/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/bonding-curve-contract/Cargo.toml b/contracts/examples/bonding-curve-contract/Cargo.toml index b224b700f3..ced45ebf9f 100644 --- a/contracts/examples/bonding-curve-contract/Cargo.toml +++ b/contracts/examples/bonding-curve-contract/Cargo.toml @@ -9,14 +9,14 @@ publish = false path = "src/bonding_curve_contract.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/bonding-curve-contract/meta/Cargo.toml b/contracts/examples/bonding-curve-contract/meta/Cargo.toml index 7e0659a813..95e77c79c7 100644 --- a/contracts/examples/bonding-curve-contract/meta/Cargo.toml +++ b/contracts/examples/bonding-curve-contract/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/bonding-curve-contract/wasm/Cargo.toml b/contracts/examples/bonding-curve-contract/wasm/Cargo.toml index d9d6f45ab6..ab190b27a8 100644 --- a/contracts/examples/bonding-curve-contract/wasm/Cargo.toml +++ b/contracts/examples/bonding-curve-contract/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/check-pause/Cargo.toml b/contracts/examples/check-pause/Cargo.toml index 06b6762672..4bd63c8381 100644 --- a/contracts/examples/check-pause/Cargo.toml +++ b/contracts/examples/check-pause/Cargo.toml @@ -12,14 +12,14 @@ path = "src/check_pause.rs" num-bigint = "0.4" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/check-pause/meta/Cargo.toml b/contracts/examples/check-pause/meta/Cargo.toml index eff5be4d68..b7f9c85915 100644 --- a/contracts/examples/check-pause/meta/Cargo.toml +++ b/contracts/examples/check-pause/meta/Cargo.toml @@ -9,6 +9,6 @@ authors = ["Alin Cruceat "] path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/check-pause/wasm/Cargo.toml b/contracts/examples/check-pause/wasm/Cargo.toml index b2f886722e..9c38481868 100644 --- a/contracts/examples/check-pause/wasm/Cargo.toml +++ b/contracts/examples/check-pause/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crowdfunding-esdt/Cargo.toml b/contracts/examples/crowdfunding-esdt/Cargo.toml index de3edda2c7..3d3edfced8 100644 --- a/contracts/examples/crowdfunding-esdt/Cargo.toml +++ b/contracts/examples/crowdfunding-esdt/Cargo.toml @@ -9,11 +9,11 @@ publish = false path = "src/crowdfunding_esdt.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies] diff --git a/contracts/examples/crowdfunding-esdt/meta/Cargo.toml b/contracts/examples/crowdfunding-esdt/meta/Cargo.toml index 38f50eaef7..79f4df47cc 100644 --- a/contracts/examples/crowdfunding-esdt/meta/Cargo.toml +++ b/contracts/examples/crowdfunding-esdt/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/crowdfunding-esdt/wasm/Cargo.toml b/contracts/examples/crowdfunding-esdt/wasm/Cargo.toml index d916d9b70e..6d15ac8fbc 100644 --- a/contracts/examples/crowdfunding-esdt/wasm/Cargo.toml +++ b/contracts/examples/crowdfunding-esdt/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crypto-bubbles/Cargo.toml b/contracts/examples/crypto-bubbles/Cargo.toml index 713794b94c..e4dc311d2e 100644 --- a/contracts/examples/crypto-bubbles/Cargo.toml +++ b/contracts/examples/crypto-bubbles/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/crypto_bubbles.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/crypto-bubbles/meta/Cargo.toml b/contracts/examples/crypto-bubbles/meta/Cargo.toml index 8d6b4c8999..73f33a4b14 100644 --- a/contracts/examples/crypto-bubbles/meta/Cargo.toml +++ b/contracts/examples/crypto-bubbles/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/crypto-bubbles/wasm/Cargo.toml b/contracts/examples/crypto-bubbles/wasm/Cargo.toml index 683b6b820f..f5c4528a2e 100644 --- a/contracts/examples/crypto-bubbles/wasm/Cargo.toml +++ b/contracts/examples/crypto-bubbles/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crypto-kitties/common/kitty/Cargo.toml b/contracts/examples/crypto-kitties/common/kitty/Cargo.toml index 3b051fe071..94179c554c 100644 --- a/contracts/examples/crypto-kitties/common/kitty/Cargo.toml +++ b/contracts/examples/crypto-kitties/common/kitty/Cargo.toml @@ -9,7 +9,7 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" [dependencies.random] diff --git a/contracts/examples/crypto-kitties/common/random/Cargo.toml b/contracts/examples/crypto-kitties/common/random/Cargo.toml index 53a0e86625..e8fd9c6e6e 100644 --- a/contracts/examples/crypto-kitties/common/random/Cargo.toml +++ b/contracts/examples/crypto-kitties/common/random/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" diff --git a/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml b/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml index 05e2dae958..67eb27cf68 100644 --- a/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml @@ -17,9 +17,9 @@ version = "0.0.0" path = "../kitty-ownership" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml b/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml index 61092e4f43..38f8e36f86 100644 --- a/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/examples/crypto-kitties/kitty-auction/wasm/Cargo.toml b/contracts/examples/crypto-kitties/kitty-auction/wasm/Cargo.toml index a469a46d21..808da081c2 100644 --- a/contracts/examples/crypto-kitties/kitty-auction/wasm/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-auction/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml b/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml index 9ee2ff5572..fca668f801 100644 --- a/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml @@ -18,9 +18,9 @@ version = "0.0.0" path = "../common/random" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml b/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml index eb47f6dbaf..bb7a9b3569 100644 --- a/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/examples/crypto-kitties/kitty-genetic-alg/wasm/Cargo.toml b/contracts/examples/crypto-kitties/kitty-genetic-alg/wasm/Cargo.toml index c830f58ce1..709ba6a261 100644 --- a/contracts/examples/crypto-kitties/kitty-genetic-alg/wasm/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-genetic-alg/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml b/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml index 2a089c2baf..c9aac3863c 100644 --- a/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml @@ -21,9 +21,9 @@ version = "0.0.0" path = "../kitty-genetic-alg" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml b/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml index 2870c2a53b..32327493ec 100644 --- a/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/examples/crypto-kitties/kitty-ownership/wasm/Cargo.toml b/contracts/examples/crypto-kitties/kitty-ownership/wasm/Cargo.toml index 80da1c3165..7f1bee0e21 100644 --- a/contracts/examples/crypto-kitties/kitty-ownership/wasm/Cargo.toml +++ b/contracts/examples/crypto-kitties/kitty-ownership/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/crypto-zombies/Cargo.toml b/contracts/examples/crypto-zombies/Cargo.toml index bb2df3bf84..fb2f72487b 100644 --- a/contracts/examples/crypto-zombies/Cargo.toml +++ b/contracts/examples/crypto-zombies/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/crypto-zombies/meta/Cargo.toml b/contracts/examples/crypto-zombies/meta/Cargo.toml index ac6971585c..75bf9f3916 100644 --- a/contracts/examples/crypto-zombies/meta/Cargo.toml +++ b/contracts/examples/crypto-zombies/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/crypto-zombies/wasm/Cargo.toml b/contracts/examples/crypto-zombies/wasm/Cargo.toml index 94f62bb240..2cb8a0ceb8 100644 --- a/contracts/examples/crypto-zombies/wasm/Cargo.toml +++ b/contracts/examples/crypto-zombies/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/digital-cash/Cargo.toml b/contracts/examples/digital-cash/Cargo.toml index 47a8895f89..2a7922c2e6 100644 --- a/contracts/examples/digital-cash/Cargo.toml +++ b/contracts/examples/digital-cash/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/digital_cash.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/digital-cash/meta/Cargo.toml b/contracts/examples/digital-cash/meta/Cargo.toml index 23c6e92813..f34c8c2469 100644 --- a/contracts/examples/digital-cash/meta/Cargo.toml +++ b/contracts/examples/digital-cash/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/digital-cash/wasm/Cargo.toml b/contracts/examples/digital-cash/wasm/Cargo.toml index f6299159b7..e7d6ec8364 100644 --- a/contracts/examples/digital-cash/wasm/Cargo.toml +++ b/contracts/examples/digital-cash/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/empty/Cargo.toml b/contracts/examples/empty/Cargo.toml index d86af47d4e..cbcf4ad3ce 100644 --- a/contracts/examples/empty/Cargo.toml +++ b/contracts/examples/empty/Cargo.toml @@ -9,11 +9,11 @@ publish = false path = "src/empty.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies] diff --git a/contracts/examples/empty/meta/Cargo.toml b/contracts/examples/empty/meta/Cargo.toml index b0921a72e0..8be1d53f76 100644 --- a/contracts/examples/empty/meta/Cargo.toml +++ b/contracts/examples/empty/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/empty/wasm/Cargo.toml b/contracts/examples/empty/wasm/Cargo.toml index bfc29befd8..b6c5c3516f 100644 --- a/contracts/examples/empty/wasm/Cargo.toml +++ b/contracts/examples/empty/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/esdt-transfer-with-fee/Cargo.toml b/contracts/examples/esdt-transfer-with-fee/Cargo.toml index 4fa249d387..4f02d0205f 100644 --- a/contracts/examples/esdt-transfer-with-fee/Cargo.toml +++ b/contracts/examples/esdt-transfer-with-fee/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/esdt_transfer_with_fee.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml b/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml index 4b1625c5d0..d796af7793 100644 --- a/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml +++ b/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/esdt-transfer-with-fee/wasm/Cargo.toml b/contracts/examples/esdt-transfer-with-fee/wasm/Cargo.toml index ca0205d2df..929461a46b 100644 --- a/contracts/examples/esdt-transfer-with-fee/wasm/Cargo.toml +++ b/contracts/examples/esdt-transfer-with-fee/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/factorial/Cargo.toml b/contracts/examples/factorial/Cargo.toml index dc27e25d1c..efce484b68 100644 --- a/contracts/examples/factorial/Cargo.toml +++ b/contracts/examples/factorial/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/factorial.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/factorial/meta/Cargo.toml b/contracts/examples/factorial/meta/Cargo.toml index c25ba718c2..5682144b75 100644 --- a/contracts/examples/factorial/meta/Cargo.toml +++ b/contracts/examples/factorial/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/factorial/wasm/Cargo.toml b/contracts/examples/factorial/wasm/Cargo.toml index 83a2e0d421..2c799f7bf8 100644 --- a/contracts/examples/factorial/wasm/Cargo.toml +++ b/contracts/examples/factorial/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/fractional-nfts/Cargo.toml b/contracts/examples/fractional-nfts/Cargo.toml index 24149e5c5a..953187e3f7 100644 --- a/contracts/examples/fractional-nfts/Cargo.toml +++ b/contracts/examples/fractional-nfts/Cargo.toml @@ -9,13 +9,13 @@ publish = false path = "src/fractional_nfts.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/fractional-nfts/meta/Cargo.toml b/contracts/examples/fractional-nfts/meta/Cargo.toml index 0a5cea1450..737b34a290 100644 --- a/contracts/examples/fractional-nfts/meta/Cargo.toml +++ b/contracts/examples/fractional-nfts/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/fractional-nfts/wasm/Cargo.toml b/contracts/examples/fractional-nfts/wasm/Cargo.toml index 3e0e20a9b8..3829671280 100644 --- a/contracts/examples/fractional-nfts/wasm/Cargo.toml +++ b/contracts/examples/fractional-nfts/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/lottery-esdt/Cargo.toml b/contracts/examples/lottery-esdt/Cargo.toml index 2fa674fed7..1087c9fe42 100644 --- a/contracts/examples/lottery-esdt/Cargo.toml +++ b/contracts/examples/lottery-esdt/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lottery.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/lottery-esdt/meta/Cargo.toml b/contracts/examples/lottery-esdt/meta/Cargo.toml index 0f88b6c62e..80ddfc6019 100644 --- a/contracts/examples/lottery-esdt/meta/Cargo.toml +++ b/contracts/examples/lottery-esdt/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/lottery-esdt/wasm/Cargo.toml b/contracts/examples/lottery-esdt/wasm/Cargo.toml index 682b887dd3..a1c396b11b 100644 --- a/contracts/examples/lottery-esdt/wasm/Cargo.toml +++ b/contracts/examples/lottery-esdt/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/multisig/Cargo.toml b/contracts/examples/multisig/Cargo.toml index 6e5690103e..164091d43e 100644 --- a/contracts/examples/multisig/Cargo.toml +++ b/contracts/examples/multisig/Cargo.toml @@ -9,15 +9,15 @@ publish = false path = "src/multisig.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.adder] @@ -27,7 +27,7 @@ path = "../adder" path = "../factorial" [dev-dependencies.multiversx-wegld-swap-sc] -version = "0.50.1" +version = "0.50.2" path = "../../core/wegld-swap" [dev-dependencies] diff --git a/contracts/examples/multisig/interact/Cargo.toml b/contracts/examples/multisig/interact/Cargo.toml index ab946d05a9..458c1d21a0 100644 --- a/contracts/examples/multisig/interact/Cargo.toml +++ b/contracts/examples/multisig/interact/Cargo.toml @@ -18,17 +18,17 @@ toml = "0.8.6" path = ".." [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../../contracts/modules" [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/snippets" [dependencies.multiversx-sc-scenario] -version = "=0.50.1" +version = "=0.50.2" path = "../../../../framework/scenario" [dependencies.multiversx-sc] -version = "=0.50.1" +version = "=0.50.2" path = "../../../../framework/base" diff --git a/contracts/examples/multisig/meta/Cargo.toml b/contracts/examples/multisig/meta/Cargo.toml index 228087eebf..4a79057621 100644 --- a/contracts/examples/multisig/meta/Cargo.toml +++ b/contracts/examples/multisig/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/multisig/wasm-multisig-full/Cargo.toml b/contracts/examples/multisig/wasm-multisig-full/Cargo.toml index f97f320937..46c42fdf99 100644 --- a/contracts/examples/multisig/wasm-multisig-full/Cargo.toml +++ b/contracts/examples/multisig/wasm-multisig-full/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/multisig/wasm-multisig-view/Cargo.toml b/contracts/examples/multisig/wasm-multisig-view/Cargo.toml index b09c6148df..a48b794351 100644 --- a/contracts/examples/multisig/wasm-multisig-view/Cargo.toml +++ b/contracts/examples/multisig/wasm-multisig-view/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/multisig/wasm/Cargo.toml b/contracts/examples/multisig/wasm/Cargo.toml index f3ffba8979..fa8766e948 100644 --- a/contracts/examples/multisig/wasm/Cargo.toml +++ b/contracts/examples/multisig/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/nft-minter/Cargo.toml b/contracts/examples/nft-minter/Cargo.toml index 2eb3c915b5..596eda9ca4 100644 --- a/contracts/examples/nft-minter/Cargo.toml +++ b/contracts/examples/nft-minter/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/nft-minter/meta/Cargo.toml b/contracts/examples/nft-minter/meta/Cargo.toml index fbf04e0e70..58ea1ab23f 100644 --- a/contracts/examples/nft-minter/meta/Cargo.toml +++ b/contracts/examples/nft-minter/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/nft-minter/wasm/Cargo.toml b/contracts/examples/nft-minter/wasm/Cargo.toml index 3910e59ad4..1dacee022e 100644 --- a/contracts/examples/nft-minter/wasm/Cargo.toml +++ b/contracts/examples/nft-minter/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/nft-storage-prepay/Cargo.toml b/contracts/examples/nft-storage-prepay/Cargo.toml index 0a38b9601a..1375d7c7e9 100644 --- a/contracts/examples/nft-storage-prepay/Cargo.toml +++ b/contracts/examples/nft-storage-prepay/Cargo.toml @@ -10,9 +10,9 @@ path = "src/nft_storage_prepay.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/nft-storage-prepay/meta/Cargo.toml b/contracts/examples/nft-storage-prepay/meta/Cargo.toml index 8f63fdf9bb..a026628942 100644 --- a/contracts/examples/nft-storage-prepay/meta/Cargo.toml +++ b/contracts/examples/nft-storage-prepay/meta/Cargo.toml @@ -11,6 +11,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/nft-storage-prepay/wasm/Cargo.toml b/contracts/examples/nft-storage-prepay/wasm/Cargo.toml index 0688e1e2f8..da89f646c1 100644 --- a/contracts/examples/nft-storage-prepay/wasm/Cargo.toml +++ b/contracts/examples/nft-storage-prepay/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/nft-subscription/Cargo.toml b/contracts/examples/nft-subscription/Cargo.toml index 1ed733f7e8..bf014cc67d 100644 --- a/contracts/examples/nft-subscription/Cargo.toml +++ b/contracts/examples/nft-subscription/Cargo.toml @@ -9,13 +9,13 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/nft-subscription/meta/Cargo.toml b/contracts/examples/nft-subscription/meta/Cargo.toml index 40ebfe2200..0a366995ca 100644 --- a/contracts/examples/nft-subscription/meta/Cargo.toml +++ b/contracts/examples/nft-subscription/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/nft-subscription/wasm/Cargo.toml b/contracts/examples/nft-subscription/wasm/Cargo.toml index d571edb793..18e8903d5b 100644 --- a/contracts/examples/nft-subscription/wasm/Cargo.toml +++ b/contracts/examples/nft-subscription/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/order-book/factory/Cargo.toml b/contracts/examples/order-book/factory/Cargo.toml index 96e8d7a9c3..5d371c0bd2 100644 --- a/contracts/examples/order-book/factory/Cargo.toml +++ b/contracts/examples/order-book/factory/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/examples/order-book/factory/meta/Cargo.toml b/contracts/examples/order-book/factory/meta/Cargo.toml index 6eb84b176d..b4fa226be6 100644 --- a/contracts/examples/order-book/factory/meta/Cargo.toml +++ b/contracts/examples/order-book/factory/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/examples/order-book/factory/wasm/Cargo.toml b/contracts/examples/order-book/factory/wasm/Cargo.toml index a4e8d15158..455c1537f2 100644 --- a/contracts/examples/order-book/factory/wasm/Cargo.toml +++ b/contracts/examples/order-book/factory/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/order-book/pair/Cargo.toml b/contracts/examples/order-book/pair/Cargo.toml index afb148fb1d..1f4b53b669 100644 --- a/contracts/examples/order-book/pair/Cargo.toml +++ b/contracts/examples/order-book/pair/Cargo.toml @@ -8,9 +8,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/examples/order-book/pair/meta/Cargo.toml b/contracts/examples/order-book/pair/meta/Cargo.toml index 9d0fe953c3..53dbc216ef 100644 --- a/contracts/examples/order-book/pair/meta/Cargo.toml +++ b/contracts/examples/order-book/pair/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/examples/order-book/pair/wasm/Cargo.toml b/contracts/examples/order-book/pair/wasm/Cargo.toml index fe727e8839..a5bc1a5d5d 100644 --- a/contracts/examples/order-book/pair/wasm/Cargo.toml +++ b/contracts/examples/order-book/pair/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/ping-pong-egld/Cargo.toml b/contracts/examples/ping-pong-egld/Cargo.toml index b7e9be8c11..3807471fa5 100644 --- a/contracts/examples/ping-pong-egld/Cargo.toml +++ b/contracts/examples/ping-pong-egld/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/ping_pong.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/ping-pong-egld/meta/Cargo.toml b/contracts/examples/ping-pong-egld/meta/Cargo.toml index d7aca8ceef..2c4d52c532 100644 --- a/contracts/examples/ping-pong-egld/meta/Cargo.toml +++ b/contracts/examples/ping-pong-egld/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/ping-pong-egld/wasm/Cargo.toml b/contracts/examples/ping-pong-egld/wasm/Cargo.toml index c1b822e3a2..60304e4246 100644 --- a/contracts/examples/ping-pong-egld/wasm/Cargo.toml +++ b/contracts/examples/ping-pong-egld/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/proxy-pause/Cargo.toml b/contracts/examples/proxy-pause/Cargo.toml index 7f0b5626d4..e68c0898f3 100644 --- a/contracts/examples/proxy-pause/Cargo.toml +++ b/contracts/examples/proxy-pause/Cargo.toml @@ -9,11 +9,11 @@ publish = false path = "src/proxy_pause.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.check-pause] diff --git a/contracts/examples/proxy-pause/meta/Cargo.toml b/contracts/examples/proxy-pause/meta/Cargo.toml index 9305353045..6dc206ddab 100644 --- a/contracts/examples/proxy-pause/meta/Cargo.toml +++ b/contracts/examples/proxy-pause/meta/Cargo.toml @@ -11,6 +11,6 @@ authors = [ "you",] path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/proxy-pause/wasm/Cargo.toml b/contracts/examples/proxy-pause/wasm/Cargo.toml index 3ef2cd3769..784dd313d7 100644 --- a/contracts/examples/proxy-pause/wasm/Cargo.toml +++ b/contracts/examples/proxy-pause/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/rewards-distribution/Cargo.toml b/contracts/examples/rewards-distribution/Cargo.toml index 9d79308662..fd57cdc09c 100644 --- a/contracts/examples/rewards-distribution/Cargo.toml +++ b/contracts/examples/rewards-distribution/Cargo.toml @@ -9,13 +9,13 @@ publish = false path = "src/rewards_distribution.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/rewards-distribution/meta/Cargo.toml b/contracts/examples/rewards-distribution/meta/Cargo.toml index 8e74f644d1..1bf2ad7aec 100644 --- a/contracts/examples/rewards-distribution/meta/Cargo.toml +++ b/contracts/examples/rewards-distribution/meta/Cargo.toml @@ -11,6 +11,6 @@ authors = ["Claudiu-Marcel Bruda "] path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/rewards-distribution/wasm/Cargo.toml b/contracts/examples/rewards-distribution/wasm/Cargo.toml index 1cbf54d7aa..168b269b5c 100644 --- a/contracts/examples/rewards-distribution/wasm/Cargo.toml +++ b/contracts/examples/rewards-distribution/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/seed-nft-minter/Cargo.toml b/contracts/examples/seed-nft-minter/Cargo.toml index 1139b0ba20..642d20dd71 100644 --- a/contracts/examples/seed-nft-minter/Cargo.toml +++ b/contracts/examples/seed-nft-minter/Cargo.toml @@ -9,13 +9,13 @@ publish = false path = "src/seed_nft_minter.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/seed-nft-minter/meta/Cargo.toml b/contracts/examples/seed-nft-minter/meta/Cargo.toml index db7beb331a..2cdb799ac3 100644 --- a/contracts/examples/seed-nft-minter/meta/Cargo.toml +++ b/contracts/examples/seed-nft-minter/meta/Cargo.toml @@ -11,6 +11,6 @@ authors = ["Claudiu-Marcel Bruda "] path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/seed-nft-minter/wasm/Cargo.toml b/contracts/examples/seed-nft-minter/wasm/Cargo.toml index 0c82bd70a2..8842cd1ba4 100644 --- a/contracts/examples/seed-nft-minter/wasm/Cargo.toml +++ b/contracts/examples/seed-nft-minter/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/examples/token-release/Cargo.toml b/contracts/examples/token-release/Cargo.toml index b5f588d0b0..ccce6904e8 100644 --- a/contracts/examples/token-release/Cargo.toml +++ b/contracts/examples/token-release/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/token_release.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/examples/token-release/meta/Cargo.toml b/contracts/examples/token-release/meta/Cargo.toml index 45084d38dd..ccb13085e2 100644 --- a/contracts/examples/token-release/meta/Cargo.toml +++ b/contracts/examples/token-release/meta/Cargo.toml @@ -10,7 +10,7 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/examples/token-release/wasm/Cargo.toml b/contracts/examples/token-release/wasm/Cargo.toml index b1098af606..447830c672 100644 --- a/contracts/examples/token-release/wasm/Cargo.toml +++ b/contracts/examples/token-release/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/abi-tester/Cargo.toml b/contracts/feature-tests/abi-tester/Cargo.toml index c7913e1be2..7f7242245e 100644 --- a/contracts/feature-tests/abi-tester/Cargo.toml +++ b/contracts/feature-tests/abi-tester/Cargo.toml @@ -9,14 +9,14 @@ publish = false path = "src/abi_tester.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/meta" diff --git a/contracts/feature-tests/abi-tester/abi_tester_expected_main.abi.json b/contracts/feature-tests/abi-tester/abi_tester_expected_main.abi.json index 658c272483..8073e8f6c7 100644 --- a/contracts/feature-tests/abi-tester/abi_tester_expected_main.abi.json +++ b/contracts/feature-tests/abi-tester/abi_tester_expected_main.abi.json @@ -14,7 +14,7 @@ }, "framework": { "name": "multiversx-sc", - "version": "0.50.1" + "version": "0.50.2" } }, "docs": [ diff --git a/contracts/feature-tests/abi-tester/abi_tester_expected_view.abi.json b/contracts/feature-tests/abi-tester/abi_tester_expected_view.abi.json index c75a19fff9..33433ab28e 100644 --- a/contracts/feature-tests/abi-tester/abi_tester_expected_view.abi.json +++ b/contracts/feature-tests/abi-tester/abi_tester_expected_view.abi.json @@ -14,7 +14,7 @@ }, "framework": { "name": "multiversx-sc", - "version": "0.50.1" + "version": "0.50.2" } }, "docs": [ diff --git a/contracts/feature-tests/abi-tester/meta/Cargo.toml b/contracts/feature-tests/abi-tester/meta/Cargo.toml index c2af2a7964..e6171f9843 100644 --- a/contracts/feature-tests/abi-tester/meta/Cargo.toml +++ b/contracts/feature-tests/abi-tester/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/abi-tester/wasm-abi-tester-ev/Cargo.toml b/contracts/feature-tests/abi-tester/wasm-abi-tester-ev/Cargo.toml index 18862cf3ff..ab1099ea02 100644 --- a/contracts/feature-tests/abi-tester/wasm-abi-tester-ev/Cargo.toml +++ b/contracts/feature-tests/abi-tester/wasm-abi-tester-ev/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/abi-tester/wasm/Cargo.toml b/contracts/feature-tests/abi-tester/wasm/Cargo.toml index 3d4c21b5d6..3da5f876a1 100644 --- a/contracts/feature-tests/abi-tester/wasm/Cargo.toml +++ b/contracts/feature-tests/abi-tester/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/alloc-features/Cargo.toml b/contracts/feature-tests/alloc-features/Cargo.toml index 36c6a81c5f..cf96bfd4bb 100644 --- a/contracts/feature-tests/alloc-features/Cargo.toml +++ b/contracts/feature-tests/alloc-features/Cargo.toml @@ -9,12 +9,12 @@ publish = false path = "src/alloc_features_main.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.esdt-system-sc-mock] diff --git a/contracts/feature-tests/alloc-features/meta/Cargo.toml b/contracts/feature-tests/alloc-features/meta/Cargo.toml index ab892f44fc..885dfa114c 100644 --- a/contracts/feature-tests/alloc-features/meta/Cargo.toml +++ b/contracts/feature-tests/alloc-features/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/alloc-features/wasm-alloc-mem-fail/Cargo.toml b/contracts/feature-tests/alloc-features/wasm-alloc-mem-fail/Cargo.toml index 8f9dc59eef..a38e648e13 100644 --- a/contracts/feature-tests/alloc-features/wasm-alloc-mem-fail/Cargo.toml +++ b/contracts/feature-tests/alloc-features/wasm-alloc-mem-fail/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/alloc-features/wasm-alloc-mem-leaking/Cargo.toml b/contracts/feature-tests/alloc-features/wasm-alloc-mem-leaking/Cargo.toml index f7a1c986a7..0537926850 100644 --- a/contracts/feature-tests/alloc-features/wasm-alloc-mem-leaking/Cargo.toml +++ b/contracts/feature-tests/alloc-features/wasm-alloc-mem-leaking/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/alloc-features/wasm/Cargo.toml b/contracts/feature-tests/alloc-features/wasm/Cargo.toml index 604d014fe7..4868d23d42 100644 --- a/contracts/feature-tests/alloc-features/wasm/Cargo.toml +++ b/contracts/feature-tests/alloc-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/basic-features/Cargo.toml b/contracts/feature-tests/basic-features/Cargo.toml index ccfc3a21d0..e8ea571a13 100644 --- a/contracts/feature-tests/basic-features/Cargo.toml +++ b/contracts/feature-tests/basic-features/Cargo.toml @@ -9,15 +9,15 @@ publish = false path = "src/basic_features_main.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dev-dependencies.esdt-system-sc-mock] diff --git a/contracts/feature-tests/basic-features/interact/Cargo.toml b/contracts/feature-tests/basic-features/interact/Cargo.toml index f2a15b0384..7bb99bfe84 100644 --- a/contracts/feature-tests/basic-features/interact/Cargo.toml +++ b/contracts/feature-tests/basic-features/interact/Cargo.toml @@ -18,5 +18,5 @@ toml = "0.8.6" path = ".." [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/snippets" diff --git a/contracts/feature-tests/basic-features/meta/Cargo.toml b/contracts/feature-tests/basic-features/meta/Cargo.toml index dedbdbd5e8..1e9348e75c 100644 --- a/contracts/feature-tests/basic-features/meta/Cargo.toml +++ b/contracts/feature-tests/basic-features/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/basic-features/wasm-basic-features-storage-bytes/Cargo.toml b/contracts/feature-tests/basic-features/wasm-basic-features-storage-bytes/Cargo.toml index 7e3b053bfe..99e2e9d5c6 100644 --- a/contracts/feature-tests/basic-features/wasm-basic-features-storage-bytes/Cargo.toml +++ b/contracts/feature-tests/basic-features/wasm-basic-features-storage-bytes/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/basic-features/wasm/Cargo.toml b/contracts/feature-tests/basic-features/wasm/Cargo.toml index 6c1ca521c4..0279a974b9 100644 --- a/contracts/feature-tests/basic-features/wasm/Cargo.toml +++ b/contracts/feature-tests/basic-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/big-float-features/Cargo.toml b/contracts/feature-tests/big-float-features/Cargo.toml index 270c6e48ee..21027d1211 100644 --- a/contracts/feature-tests/big-float-features/Cargo.toml +++ b/contracts/feature-tests/big-float-features/Cargo.toml @@ -9,11 +9,11 @@ publish = false path = "src/big_float_main.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.esdt-system-sc-mock] diff --git a/contracts/feature-tests/big-float-features/meta/Cargo.toml b/contracts/feature-tests/big-float-features/meta/Cargo.toml index e0263aa923..a1d32efe6d 100644 --- a/contracts/feature-tests/big-float-features/meta/Cargo.toml +++ b/contracts/feature-tests/big-float-features/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/big-float-features/wasm/Cargo.toml b/contracts/feature-tests/big-float-features/wasm/Cargo.toml index 4b4c47398e..efb04c52d0 100644 --- a/contracts/feature-tests/big-float-features/wasm/Cargo.toml +++ b/contracts/feature-tests/big-float-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/Cargo.toml b/contracts/feature-tests/composability/Cargo.toml index 6d7e5a1a14..91c1da2653 100644 --- a/contracts/feature-tests/composability/Cargo.toml +++ b/contracts/feature-tests/composability/Cargo.toml @@ -36,9 +36,9 @@ path = "recursive-caller" path = "vault" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/composability/builtin-func-features/Cargo.toml b/contracts/feature-tests/composability/builtin-func-features/Cargo.toml index 40dd7806c9..6114a2f8b4 100644 --- a/contracts/feature-tests/composability/builtin-func-features/Cargo.toml +++ b/contracts/feature-tests/composability/builtin-func-features/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/builtin_func_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml b/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml index 78fecb685a..2f465de6a2 100644 --- a/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml +++ b/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/builtin-func-features/wasm/Cargo.toml b/contracts/feature-tests/composability/builtin-func-features/wasm/Cargo.toml index 71c249f42d..dda5daf882 100644 --- a/contracts/feature-tests/composability/builtin-func-features/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/builtin-func-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml index 22dbfcf60f..f0785ce123 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml @@ -12,9 +12,9 @@ path = "first-contract" path = "second-contract" [dev-dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml index 5dc5a8c70c..ef6a85fa3b 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml index e6bf521eb3..5aeb82dd75 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/wasm/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/wasm/Cargo.toml index 75bf650c13..b891bd5bed 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/first-contract/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/first-contract/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml index c58bf7eeba..5155115bb0 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml @@ -10,10 +10,10 @@ path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml index cd435c65b1..7b8094af55 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/wasm/Cargo.toml b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/wasm/Cargo.toml index 57fdd2a32d..6c7c139532 100644 --- a/contracts/feature-tests/composability/esdt-contract-pair/second-contract/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/esdt-contract-pair/second-contract/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/Cargo.toml index f232ba1fc2..a76a45818c 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/Cargo.toml @@ -16,9 +16,9 @@ path = "parent" path = "child" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml index 239c176cd6..9537044891 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml @@ -10,9 +10,9 @@ path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml index 1623016c58..7cdf43adda 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/wasm/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/wasm/Cargo.toml index 9d948ed1a8..09de3c1015 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml index 4134271eee..4f909f3aad 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml index 30423fa072..00ca2de2c7 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml @@ -8,10 +8,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/wasm/Cargo.toml b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/wasm/Cargo.toml index bd92a51740..a640e0b8f7 100644 --- a/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml b/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml index 018aafdd8f..4a037a62e9 100644 --- a/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml @@ -12,10 +12,10 @@ path = "src/forwarder_legacy_main.rs" path = "../vault" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml b/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml index 7031720601..dcec47e4ce 100644 --- a/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/forwarder-legacy/wasm/Cargo.toml b/contracts/feature-tests/composability/forwarder-legacy/wasm/Cargo.toml index aa9c8d2cd1..804df32de4 100644 --- a/contracts/feature-tests/composability/forwarder-legacy/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-legacy/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-queue/Cargo.toml b/contracts/feature-tests/composability/forwarder-queue/Cargo.toml index 5b874c3212..599c672f52 100644 --- a/contracts/feature-tests/composability/forwarder-queue/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-queue/Cargo.toml @@ -9,14 +9,14 @@ publish = false path = "src/forwarder_queue.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" optional = true [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml b/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml index 2044404279..4f6a89d5eb 100644 --- a/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/forwarder-queue/wasm-forwarder-queue-promises/Cargo.toml b/contracts/feature-tests/composability/forwarder-queue/wasm-forwarder-queue-promises/Cargo.toml index 37d301cb4f..4120330f0c 100644 --- a/contracts/feature-tests/composability/forwarder-queue/wasm-forwarder-queue-promises/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-queue/wasm-forwarder-queue-promises/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-queue/wasm/Cargo.toml b/contracts/feature-tests/composability/forwarder-queue/wasm/Cargo.toml index 9f95037b69..642a6d59f9 100644 --- a/contracts/feature-tests/composability/forwarder-queue/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-queue/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-raw/Cargo.toml b/contracts/feature-tests/composability/forwarder-raw/Cargo.toml index 4059317f1f..7a6002beec 100644 --- a/contracts/feature-tests/composability/forwarder-raw/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-raw/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/forwarder_raw.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml b/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml index abad11606a..36eed72979 100644 --- a/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-async-call/Cargo.toml b/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-async-call/Cargo.toml index 8fb817d32f..7f3695a14d 100644 --- a/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-async-call/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-async-call/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-sync-call/Cargo.toml b/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-sync-call/Cargo.toml index a344f1b8f0..0953d307e0 100644 --- a/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-sync-call/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-raw/wasm-forwarder-raw-init-sync-call/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder-raw/wasm/Cargo.toml b/contracts/feature-tests/composability/forwarder-raw/wasm/Cargo.toml index 805e5bcc3f..0e786a35be 100644 --- a/contracts/feature-tests/composability/forwarder-raw/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder-raw/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/forwarder/Cargo.toml b/contracts/feature-tests/composability/forwarder/Cargo.toml index 01b55029fa..b49df0fa82 100644 --- a/contracts/feature-tests/composability/forwarder/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/forwarder_main.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/forwarder/meta/Cargo.toml b/contracts/feature-tests/composability/forwarder/meta/Cargo.toml index 9adb95c2a1..73ce018f3f 100644 --- a/contracts/feature-tests/composability/forwarder/meta/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/forwarder/wasm/Cargo.toml b/contracts/feature-tests/composability/forwarder/wasm/Cargo.toml index d84c2f897c..5d1011af13 100644 --- a/contracts/feature-tests/composability/forwarder/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/forwarder/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/interact/Cargo.toml b/contracts/feature-tests/composability/interact/Cargo.toml index 366f82213f..743416441f 100644 --- a/contracts/feature-tests/composability/interact/Cargo.toml +++ b/contracts/feature-tests/composability/interact/Cargo.toml @@ -15,9 +15,9 @@ serde = { version = "1.0", features = ["derive"] } toml = "0.8.6" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/snippets" diff --git a/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml b/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml index 69a627f332..abb9e6d870 100644 --- a/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml +++ b/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml @@ -10,9 +10,9 @@ path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml b/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml index c3751aee68..3ba448368b 100644 --- a/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml +++ b/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/local-esdt-and-nft/wasm/Cargo.toml b/contracts/feature-tests/composability/local-esdt-and-nft/wasm/Cargo.toml index 3ab1f371d3..56b0e6bb4d 100644 --- a/contracts/feature-tests/composability/local-esdt-and-nft/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/local-esdt-and-nft/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/promises-features/Cargo.toml b/contracts/feature-tests/composability/promises-features/Cargo.toml index 1957628882..bb67b51dda 100644 --- a/contracts/feature-tests/composability/promises-features/Cargo.toml +++ b/contracts/feature-tests/composability/promises-features/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = "src/promises_main.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" diff --git a/contracts/feature-tests/composability/promises-features/meta/Cargo.toml b/contracts/feature-tests/composability/promises-features/meta/Cargo.toml index e9da47adf6..b60d2f0ecd 100644 --- a/contracts/feature-tests/composability/promises-features/meta/Cargo.toml +++ b/contracts/feature-tests/composability/promises-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/promises-features/wasm/Cargo.toml b/contracts/feature-tests/composability/promises-features/wasm/Cargo.toml index ecfb439d11..c0825ad5eb 100644 --- a/contracts/feature-tests/composability/promises-features/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/promises-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/proxy-test-first/Cargo.toml b/contracts/feature-tests/composability/proxy-test-first/Cargo.toml index e1c64de7a3..27dbeafb01 100644 --- a/contracts/feature-tests/composability/proxy-test-first/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-first/Cargo.toml @@ -12,10 +12,10 @@ path = "src/proxy-test-first.rs" hex-literal = "0.4.1" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml b/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml index caa8b48cfc..b07b833343 100644 --- a/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/proxy-test-first/wasm/Cargo.toml b/contracts/feature-tests/composability/proxy-test-first/wasm/Cargo.toml index 9b7a74f40d..493a515c05 100644 --- a/contracts/feature-tests/composability/proxy-test-first/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-first/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/proxy-test-second/Cargo.toml b/contracts/feature-tests/composability/proxy-test-second/Cargo.toml index 6b851b730c..ab9768b6c7 100644 --- a/contracts/feature-tests/composability/proxy-test-second/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-second/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/proxy-test-second.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml b/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml index 3d48f515e1..56dcd263bf 100644 --- a/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/proxy-test-second/wasm/Cargo.toml b/contracts/feature-tests/composability/proxy-test-second/wasm/Cargo.toml index 19049f294b..b1f2387b8f 100644 --- a/contracts/feature-tests/composability/proxy-test-second/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/proxy-test-second/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/recursive-caller/Cargo.toml b/contracts/feature-tests/composability/recursive-caller/Cargo.toml index 657db9ff6a..5a3f79327d 100644 --- a/contracts/feature-tests/composability/recursive-caller/Cargo.toml +++ b/contracts/feature-tests/composability/recursive-caller/Cargo.toml @@ -12,9 +12,9 @@ path = "src/recursive_caller.rs" path = "../vault" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml b/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml index e3bbc2ab4f..9bc0fce89b 100644 --- a/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml +++ b/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/recursive-caller/wasm/Cargo.toml b/contracts/feature-tests/composability/recursive-caller/wasm/Cargo.toml index 4fefcb2201..5eb5a69d31 100644 --- a/contracts/feature-tests/composability/recursive-caller/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/recursive-caller/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/transfer-role-features/Cargo.toml b/contracts/feature-tests/composability/transfer-role-features/Cargo.toml index 18c033d87c..119058fffa 100644 --- a/contracts/feature-tests/composability/transfer-role-features/Cargo.toml +++ b/contracts/feature-tests/composability/transfer-role-features/Cargo.toml @@ -12,13 +12,13 @@ path = "src/lib.rs" path = "../vault" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../../contracts/modules" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml b/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml index 6a48904ac1..eb6b401033 100644 --- a/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml +++ b/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/transfer-role-features/wasm/Cargo.toml b/contracts/feature-tests/composability/transfer-role-features/wasm/Cargo.toml index e308115d74..1c2401b202 100644 --- a/contracts/feature-tests/composability/transfer-role-features/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/transfer-role-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/vault/Cargo.toml b/contracts/feature-tests/composability/vault/Cargo.toml index 81140f8b4d..24b2c34f4e 100644 --- a/contracts/feature-tests/composability/vault/Cargo.toml +++ b/contracts/feature-tests/composability/vault/Cargo.toml @@ -10,9 +10,9 @@ path = "src/vault.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/composability/vault/meta/Cargo.toml b/contracts/feature-tests/composability/vault/meta/Cargo.toml index 659bdd4a50..08eb0bd267 100644 --- a/contracts/feature-tests/composability/vault/meta/Cargo.toml +++ b/contracts/feature-tests/composability/vault/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/composability/vault/wasm-vault-promises/Cargo.toml b/contracts/feature-tests/composability/vault/wasm-vault-promises/Cargo.toml index c31e954ac5..789f13460d 100644 --- a/contracts/feature-tests/composability/vault/wasm-vault-promises/Cargo.toml +++ b/contracts/feature-tests/composability/vault/wasm-vault-promises/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/vault/wasm-vault-upgrade/Cargo.toml b/contracts/feature-tests/composability/vault/wasm-vault-upgrade/Cargo.toml index b36434739a..427ea7a408 100644 --- a/contracts/feature-tests/composability/vault/wasm-vault-upgrade/Cargo.toml +++ b/contracts/feature-tests/composability/vault/wasm-vault-upgrade/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/composability/vault/wasm/Cargo.toml b/contracts/feature-tests/composability/vault/wasm/Cargo.toml index 86b21b5a5a..c82cbcced7 100644 --- a/contracts/feature-tests/composability/vault/wasm/Cargo.toml +++ b/contracts/feature-tests/composability/vault/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml index 6451c0441d..a5854218fc 100644 --- a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml @@ -12,10 +12,10 @@ path = "src/crowdfunding_erc20.rs" path = "../erc20" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml index e736530831..81143f9bc1 100644 --- a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/wasm/Cargo.toml index 0633d87ccc..1213ae403c 100644 --- a/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml index 807f95adc6..a630345f50 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml @@ -13,10 +13,10 @@ path = "src/lib.rs" path = "../erc1155" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml index b42302f8e5..b2687c29c0 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/wasm/Cargo.toml index 0f6651dfb8..b45c7437a9 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml index bc22058201..dde5f3ff77 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml index ffc26f129a..9fd49525c9 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/wasm/Cargo.toml index c3b8a0889d..e694030313 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml index c121ca828b..20ad72c3db 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml @@ -9,12 +9,12 @@ publish = false path = "src/erc1155.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" [dev-dependencies.erc1155-user-mock] diff --git a/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml index d29ac71de7..8f99f0a3ed 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/erc1155/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc1155/wasm/Cargo.toml index b3a72d9f86..c3b9513a5c 100644 --- a/contracts/feature-tests/erc-style-contracts/erc1155/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc1155/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml index 6036d0c34e..174608fa33 100644 --- a/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/erc20.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml index 7693bb48e3..239c28da37 100644 --- a/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/erc20/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc20/wasm/Cargo.toml index a93aad0954..42971d74de 100644 --- a/contracts/feature-tests/erc-style-contracts/erc20/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc20/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml index 142cf1c42c..6542540c70 100644 --- a/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml @@ -10,9 +10,9 @@ path = "src/erc721.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml index e408e153ab..30baf33bd5 100644 --- a/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/erc721/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/erc721/wasm/Cargo.toml index 4886b668bc..a5c5765e1e 100644 --- a/contracts/feature-tests/erc-style-contracts/erc721/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/erc721/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml b/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml index 5752b59be0..fbbcae82e6 100644 --- a/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml @@ -12,10 +12,10 @@ path = "src/lottery.rs" path = "../erc20" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" features = ["alloc"] [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/scenario" diff --git a/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml b/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml index 325e6e61b2..0fc8f82cd9 100644 --- a/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/erc-style-contracts/lottery-erc20/wasm/Cargo.toml b/contracts/feature-tests/erc-style-contracts/lottery-erc20/wasm/Cargo.toml index c48f778202..0625680ae6 100644 --- a/contracts/feature-tests/erc-style-contracts/lottery-erc20/wasm/Cargo.toml +++ b/contracts/feature-tests/erc-style-contracts/lottery-erc20/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml b/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml index 6937de32bb..a5a4670a95 100644 --- a/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml +++ b/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/esdt_system_sc_mock.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml b/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml index ea3ee87423..08b53f9c08 100644 --- a/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml +++ b/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/esdt-system-sc-mock/wasm/Cargo.toml b/contracts/feature-tests/esdt-system-sc-mock/wasm/Cargo.toml index 12b5fce711..8cc53b0a15 100644 --- a/contracts/feature-tests/esdt-system-sc-mock/wasm/Cargo.toml +++ b/contracts/feature-tests/esdt-system-sc-mock/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/exchange-features/Cargo.toml b/contracts/feature-tests/exchange-features/Cargo.toml index 3ecd59b340..6c931fa94f 100644 --- a/contracts/feature-tests/exchange-features/Cargo.toml +++ b/contracts/feature-tests/exchange-features/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/exchange_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/exchange-features/meta/Cargo.toml b/contracts/feature-tests/exchange-features/meta/Cargo.toml index c58de5bd9e..897e04471b 100644 --- a/contracts/feature-tests/exchange-features/meta/Cargo.toml +++ b/contracts/feature-tests/exchange-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/exchange-features/wasm/Cargo.toml b/contracts/feature-tests/exchange-features/wasm/Cargo.toml index d39e3d226a..637ba98293 100644 --- a/contracts/feature-tests/exchange-features/wasm/Cargo.toml +++ b/contracts/feature-tests/exchange-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/formatted-message-features/Cargo.toml b/contracts/feature-tests/formatted-message-features/Cargo.toml index 48af06e141..0437e961bf 100644 --- a/contracts/feature-tests/formatted-message-features/Cargo.toml +++ b/contracts/feature-tests/formatted-message-features/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/formatted_message_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/formatted-message-features/meta/Cargo.toml b/contracts/feature-tests/formatted-message-features/meta/Cargo.toml index 925ef3f2e4..44e6c0d1e3 100644 --- a/contracts/feature-tests/formatted-message-features/meta/Cargo.toml +++ b/contracts/feature-tests/formatted-message-features/meta/Cargo.toml @@ -11,6 +11,6 @@ authors = [ "you",] path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/formatted-message-features/wasm/Cargo.toml b/contracts/feature-tests/formatted-message-features/wasm/Cargo.toml index 2afee872bf..875d438dd0 100644 --- a/contracts/feature-tests/formatted-message-features/wasm/Cargo.toml +++ b/contracts/feature-tests/formatted-message-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/managed-map-features/Cargo.toml b/contracts/feature-tests/managed-map-features/Cargo.toml index 69eaacdd1e..99cd9f8d33 100644 --- a/contracts/feature-tests/managed-map-features/Cargo.toml +++ b/contracts/feature-tests/managed-map-features/Cargo.toml @@ -9,11 +9,11 @@ publish = false path = "src/mmap_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.esdt-system-sc-mock] diff --git a/contracts/feature-tests/managed-map-features/meta/Cargo.toml b/contracts/feature-tests/managed-map-features/meta/Cargo.toml index b57398d162..1a307e3000 100644 --- a/contracts/feature-tests/managed-map-features/meta/Cargo.toml +++ b/contracts/feature-tests/managed-map-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/managed-map-features/wasm/Cargo.toml b/contracts/feature-tests/managed-map-features/wasm/Cargo.toml index b7ce8dec6d..5112f7b43d 100644 --- a/contracts/feature-tests/managed-map-features/wasm/Cargo.toml +++ b/contracts/feature-tests/managed-map-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/multi-contract-features/Cargo.toml b/contracts/feature-tests/multi-contract-features/Cargo.toml index a548293fe5..46ef193145 100644 --- a/contracts/feature-tests/multi-contract-features/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/Cargo.toml @@ -12,9 +12,9 @@ path = "src/multi_contract_features.rs" example_feature = [] [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/multi-contract-features/meta/Cargo.toml b/contracts/feature-tests/multi-contract-features/meta/Cargo.toml index 9bd9d2503b..53f22000c2 100644 --- a/contracts/feature-tests/multi-contract-features/meta/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-alt-impl/Cargo.toml b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-alt-impl/Cargo.toml index d18f4d8c59..a78bd20b73 100644 --- a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-alt-impl/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-alt-impl/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-example-feature/Cargo.toml b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-example-feature/Cargo.toml index 308fe5594c..514bb760d2 100644 --- a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-example-feature/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-example-feature/Cargo.toml @@ -29,7 +29,7 @@ path = ".." features = ["example_feature"] [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-features-view/Cargo.toml b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-features-view/Cargo.toml index ce8564d6e3..e9fb18e566 100644 --- a/contracts/feature-tests/multi-contract-features/wasm-multi-contract-features-view/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/wasm-multi-contract-features-view/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/multi-contract-features/wasm/Cargo.toml b/contracts/feature-tests/multi-contract-features/wasm/Cargo.toml index 488124f208..a743c6f29e 100644 --- a/contracts/feature-tests/multi-contract-features/wasm/Cargo.toml +++ b/contracts/feature-tests/multi-contract-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/panic-message-features/Cargo.toml b/contracts/feature-tests/panic-message-features/Cargo.toml index b3c853f36d..3b3e93c6da 100644 --- a/contracts/feature-tests/panic-message-features/Cargo.toml +++ b/contracts/feature-tests/panic-message-features/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/panic_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/panic-message-features/meta/Cargo.toml b/contracts/feature-tests/panic-message-features/meta/Cargo.toml index 7ecc5c0f06..e163907acb 100644 --- a/contracts/feature-tests/panic-message-features/meta/Cargo.toml +++ b/contracts/feature-tests/panic-message-features/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/panic-message-features/wasm/Cargo.toml b/contracts/feature-tests/panic-message-features/wasm/Cargo.toml index b982ef6d44..4ac10cfb9a 100644 --- a/contracts/feature-tests/panic-message-features/wasm/Cargo.toml +++ b/contracts/feature-tests/panic-message-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/payable-features/Cargo.toml b/contracts/feature-tests/payable-features/Cargo.toml index e2f3a9eb7e..72c3a3c792 100644 --- a/contracts/feature-tests/payable-features/Cargo.toml +++ b/contracts/feature-tests/payable-features/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/payable_features.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/payable-features/meta/Cargo.toml b/contracts/feature-tests/payable-features/meta/Cargo.toml index c990e2b3f7..2777b86b88 100644 --- a/contracts/feature-tests/payable-features/meta/Cargo.toml +++ b/contracts/feature-tests/payable-features/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/payable-features/wasm/Cargo.toml b/contracts/feature-tests/payable-features/wasm/Cargo.toml index 236ad71f17..48d050441a 100644 --- a/contracts/feature-tests/payable-features/wasm/Cargo.toml +++ b/contracts/feature-tests/payable-features/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml b/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml index c7b2c13a8d..c5f0cf482e 100644 --- a/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml +++ b/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/rust-snippets-generator-test/interact-rs/Cargo.toml b/contracts/feature-tests/rust-snippets-generator-test/interact-rs/Cargo.toml index 459ea4ed3d..4d83a319b3 100644 --- a/contracts/feature-tests/rust-snippets-generator-test/interact-rs/Cargo.toml +++ b/contracts/feature-tests/rust-snippets-generator-test/interact-rs/Cargo.toml @@ -13,7 +13,7 @@ path = "src/interactor_main.rs" path = ".." [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/snippets" # [workspace] diff --git a/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml b/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml index 3145478e01..46cc2f507e 100644 --- a/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml +++ b/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs b/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs index bdc003a53a..65c5fe6cfd 100644 --- a/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs +++ b/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs @@ -13,7 +13,7 @@ multiversx_sc::derive_imports!(); // Additionally, we also have to update the interact-rs snippets manually to add relative paths: // [dependencies.multiversx-sc-snippets] -// version = "0.50.1" +// version = "0.50.2" // path = "../../../../framework/snippets" #[derive( diff --git a/contracts/feature-tests/rust-snippets-generator-test/wasm/Cargo.toml b/contracts/feature-tests/rust-snippets-generator-test/wasm/Cargo.toml index 7106170016..5d0df5dea1 100644 --- a/contracts/feature-tests/rust-snippets-generator-test/wasm/Cargo.toml +++ b/contracts/feature-tests/rust-snippets-generator-test/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml b/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml index 5e4e9c3658..aa14f96315 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml +++ b/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" features = [ "alloc" ] @@ -17,7 +17,7 @@ path = "../../examples/adder" path = "../../feature-tests/basic-features" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies] diff --git a/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml b/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml index 57017161e8..36ec302bd6 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml +++ b/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/rust-testing-framework-tester/scenarios/test_esdt_generation.scen.json b/contracts/feature-tests/rust-testing-framework-tester/scenarios/test_esdt_generation.scen.json index 558a14c743..3370d3b55c 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/scenarios/test_esdt_generation.scen.json +++ b/contracts/feature-tests/rust-testing-framework-tester/scenarios/test_esdt_generation.scen.json @@ -9,30 +9,6 @@ } } }, - { - "step": "setState", - "accounts": { - "0x00000000000000006c8fc18b8e9f8e20089714856ee233b3902a591d0d5f2925": { - "nonce": "0", - "balance": "0", - "esdt": { - "str:COOL-123456": { - "instances": [ - { - "nonce": "0", - "balance": "1000", - "royalties": "0", - "attributes": "0x" - } - ] - } - }, - "code": "file:../output/rust-testing-framework-tester.wasm", - "codeMetadata": "0x0506", - "developerRewards": "0" - } - } - }, { "step": "checkState", "accounts": { diff --git a/contracts/feature-tests/rust-testing-framework-tester/wasm/Cargo.toml b/contracts/feature-tests/rust-testing-framework-tester/wasm/Cargo.toml index 1f804a8b00..14c563d0b6 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/wasm/Cargo.toml +++ b/contracts/feature-tests/rust-testing-framework-tester/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/scenario-tester/Cargo.toml b/contracts/feature-tests/scenario-tester/Cargo.toml index 6b8a851a73..00680030c5 100644 --- a/contracts/feature-tests/scenario-tester/Cargo.toml +++ b/contracts/feature-tests/scenario-tester/Cargo.toml @@ -9,9 +9,9 @@ publish = false path = "src/lib.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" diff --git a/contracts/feature-tests/scenario-tester/meta/Cargo.toml b/contracts/feature-tests/scenario-tester/meta/Cargo.toml index 9ef6388239..cf831d2e75 100644 --- a/contracts/feature-tests/scenario-tester/meta/Cargo.toml +++ b/contracts/feature-tests/scenario-tester/meta/Cargo.toml @@ -8,6 +8,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/scenario-tester/wasm/Cargo.toml b/contracts/feature-tests/scenario-tester/wasm/Cargo.toml index db973f8887..50041d3db4 100644 --- a/contracts/feature-tests/scenario-tester/wasm/Cargo.toml +++ b/contracts/feature-tests/scenario-tester/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/use-module/Cargo.toml b/contracts/feature-tests/use-module/Cargo.toml index 2af9a18a90..e458d9f2ca 100644 --- a/contracts/feature-tests/use-module/Cargo.toml +++ b/contracts/feature-tests/use-module/Cargo.toml @@ -9,17 +9,17 @@ publish = false path = "src/use_module.rs" [dependencies.multiversx-sc-modules] -version = "0.50.1" +version = "0.50.2" path = "../../../contracts/modules" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/base" [dev-dependencies.multiversx-sc-scenario] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/scenario" [dev-dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../framework/meta" diff --git a/contracts/feature-tests/use-module/meta/Cargo.toml b/contracts/feature-tests/use-module/meta/Cargo.toml index 7959e308e6..f80dc60415 100644 --- a/contracts/feature-tests/use-module/meta/Cargo.toml +++ b/contracts/feature-tests/use-module/meta/Cargo.toml @@ -9,6 +9,6 @@ publish = false path = ".." [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/use-module/meta/abi/Cargo.toml b/contracts/feature-tests/use-module/meta/abi/Cargo.toml index b5d1825853..950b4522d2 100644 --- a/contracts/feature-tests/use-module/meta/abi/Cargo.toml +++ b/contracts/feature-tests/use-module/meta/abi/Cargo.toml @@ -9,10 +9,10 @@ publish = false path = ".." [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/base" [dependencies.multiversx-sc-meta] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/meta" default-features = false diff --git a/contracts/feature-tests/use-module/use_module_expected_main.abi.json b/contracts/feature-tests/use-module/use_module_expected_main.abi.json index c64a1e3bf8..b8b1c76070 100644 --- a/contracts/feature-tests/use-module/use_module_expected_main.abi.json +++ b/contracts/feature-tests/use-module/use_module_expected_main.abi.json @@ -14,7 +14,7 @@ }, "framework": { "name": "multiversx-sc", - "version": "0.50.1" + "version": "0.50.2" } }, "docs": [ diff --git a/contracts/feature-tests/use-module/use_module_expected_view.abi.json b/contracts/feature-tests/use-module/use_module_expected_view.abi.json index 9be47a4ba3..bd09d65eb2 100644 --- a/contracts/feature-tests/use-module/use_module_expected_view.abi.json +++ b/contracts/feature-tests/use-module/use_module_expected_view.abi.json @@ -14,7 +14,7 @@ }, "framework": { "name": "multiversx-sc", - "version": "0.50.1" + "version": "0.50.2" } }, "docs": [ diff --git a/contracts/feature-tests/use-module/wasm-use-module-view/Cargo.toml b/contracts/feature-tests/use-module/wasm-use-module-view/Cargo.toml index 6f90f19ed4..2d2f159fca 100644 --- a/contracts/feature-tests/use-module/wasm-use-module-view/Cargo.toml +++ b/contracts/feature-tests/use-module/wasm-use-module-view/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/feature-tests/use-module/wasm/Cargo.toml b/contracts/feature-tests/use-module/wasm/Cargo.toml index 2a36644a09..6a09664a03 100644 --- a/contracts/feature-tests/use-module/wasm/Cargo.toml +++ b/contracts/feature-tests/use-module/wasm/Cargo.toml @@ -28,7 +28,7 @@ panic = "abort" path = ".." [dependencies.multiversx-sc-wasm-adapter] -version = "0.50.1" +version = "0.50.2" path = "../../../../framework/wasm-adapter" [workspace] diff --git a/contracts/modules/Cargo.toml b/contracts/modules/Cargo.toml index 76b6bb88c2..c5d5c5c811 100644 --- a/contracts/modules/Cargo.toml +++ b/contracts/modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-modules" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = ["MultiversX "] @@ -17,5 +17,5 @@ categories = ["no-std", "wasm", "cryptography::cryptocurrencies"] alloc = ["multiversx-sc/alloc"] [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../framework/base" diff --git a/framework/base/Cargo.toml b/framework/base/Cargo.toml index 2e07c40cef..9d28abbf43 100644 --- a/framework/base/Cargo.toml +++ b/framework/base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = ["Andrei Marinica ", "MultiversX "] @@ -29,7 +29,7 @@ num-traits = { version = "=0.2.19", default-features = false } unwrap-infallible = "0.1.5" [dependencies.multiversx-sc-derive] -version = "=0.50.1" +version = "=0.50.2" path = "../derive" [dependencies.multiversx-sc-codec] diff --git a/framework/derive/Cargo.toml b/framework/derive/Cargo.toml index 51c4fbb757..5ce6412456 100644 --- a/framework/derive/Cargo.toml +++ b/framework/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-derive" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = ["Andrei Marinica ", "MultiversX "] diff --git a/framework/meta/Cargo.toml b/framework/meta/Cargo.toml index 21eae22f88..d85ef5976a 100644 --- a/framework/meta/Cargo.toml +++ b/framework/meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-meta" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = [ @@ -52,7 +52,7 @@ pathdiff = { version = "0.2.1", optional = true } common-path = { version = "1.0.0", optional = true } [dependencies.multiversx-sc] -version = "=0.50.1" +version = "=0.50.2" path = "../base" features = ["alloc", "num-bigint"] diff --git a/framework/meta/src/cmd/contract/generate_snippets/snippet_crate_gen.rs b/framework/meta/src/cmd/contract/generate_snippets/snippet_crate_gen.rs index bbfbb637a3..fdad4376d3 100644 --- a/framework/meta/src/cmd/contract/generate_snippets/snippet_crate_gen.rs +++ b/framework/meta/src/cmd/contract/generate_snippets/snippet_crate_gen.rs @@ -75,7 +75,7 @@ path = "src/{SNIPPETS_SOURCE_FILE_NAME}" path = ".." [dependencies.multiversx-sc-snippets] -version = "0.50.1" +version = "0.50.2" [dependencies.multiversx-sc] version = "0.50.1" diff --git a/framework/meta/src/version_history.rs b/framework/meta/src/version_history.rs index 281f9c496b..bebbc9e4d0 100644 --- a/framework/meta/src/version_history.rs +++ b/framework/meta/src/version_history.rs @@ -3,7 +3,7 @@ use crate::{framework_version, framework_versions, version::FrameworkVersion}; /// The last version to be used for upgrades and templates. /// /// Should be edited every time a new version of the framework is released. -pub const LAST_VERSION: FrameworkVersion = framework_version!(0.50.1); +pub const LAST_VERSION: FrameworkVersion = framework_version!(0.50.2); /// Indicates where to stop with the upgrades. pub const LAST_UPGRADE_VERSION: FrameworkVersion = LAST_VERSION; @@ -71,6 +71,7 @@ pub const VERSIONS: &[FrameworkVersion] = framework_versions![ 0.49.0, 0.50.0, 0.50.1, + 0.50.2, ]; #[rustfmt::skip] diff --git a/framework/scenario/Cargo.toml b/framework/scenario/Cargo.toml index 0262a9defa..f4eadf8a7b 100644 --- a/framework/scenario/Cargo.toml +++ b/framework/scenario/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-scenario" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = [ @@ -41,12 +41,12 @@ path = "src/main.rs" run-go-tests = [] [dependencies.multiversx-sc] -version = "=0.50.1" +version = "=0.50.2" features = ["alloc", "num-bigint"] path = "../base" [dependencies.multiversx-sc-meta] -version = "=0.50.1" +version = "=0.50.2" path = "../meta" [dependencies.multiversx-chain-scenario-format] diff --git a/framework/snippets/Cargo.toml b/framework/snippets/Cargo.toml index 6d04472ecf..1d2f1d4235 100644 --- a/framework/snippets/Cargo.toml +++ b/framework/snippets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-snippets" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = ["MultiversX "] @@ -22,7 +22,7 @@ env_logger = "0.11" futures = "0.3" [dependencies.multiversx-sc-scenario] -version = "=0.50.1" +version = "=0.50.2" path = "../scenario" [dependencies.multiversx-sdk] diff --git a/framework/wasm-adapter/Cargo.toml b/framework/wasm-adapter/Cargo.toml index 3661cbf570..30dd14cb4d 100644 --- a/framework/wasm-adapter/Cargo.toml +++ b/framework/wasm-adapter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-sc-wasm-adapter" -version = "0.50.1" +version = "0.50.2" edition = "2021" authors = [ @@ -22,5 +22,5 @@ categories = [ ] [dependencies.multiversx-sc] -version = "=0.50.1" +version = "=0.50.2" path = "../base" diff --git a/tools/mxpy-snippet-generator/Cargo.toml b/tools/mxpy-snippet-generator/Cargo.toml index 19411d33fd..7237cd25fb 100644 --- a/tools/mxpy-snippet-generator/Cargo.toml +++ b/tools/mxpy-snippet-generator/Cargo.toml @@ -10,7 +10,7 @@ name = "mxpy-snippet-generator" path = "src/mxpy_snippet_generator.rs" [dependencies.multiversx-sc] -version = "0.50.1" +version = "0.50.2" path = "../../framework/base" [dependencies] diff --git a/tools/rust-debugger/format-tests/Cargo.toml b/tools/rust-debugger/format-tests/Cargo.toml index fb02fdcd72..c74b08961f 100644 --- a/tools/rust-debugger/format-tests/Cargo.toml +++ b/tools/rust-debugger/format-tests/Cargo.toml @@ -9,11 +9,11 @@ name = "format-tests" path = "src/format_tests.rs" [dependencies.multiversx-sc] -version = "=0.50.1" +version = "=0.50.2" path = "../../../framework/base" [dependencies.multiversx-sc-scenario] -version = "=0.50.1" +version = "=0.50.2" path = "../../../framework/scenario" [dependencies.multiversx-chain-vm]