Skip to content

Commit

Permalink
Merge pull request #125 from multiversx/contracts-upgrade-0.54.0-part2
Browse files Browse the repository at this point in the history
Contracts upgrade 0.54.0 (2)
  • Loading branch information
BiancaIalangi authored Nov 22, 2024
2 parents ac17795 + cdb5d40 commit e21d75f
Show file tree
Hide file tree
Showing 135 changed files with 4,968 additions and 3,375 deletions.
15 changes: 14 additions & 1 deletion Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [

"contracts/adder",
"contracts/adder/meta",
"contracts/adder/interact",
"contracts/adder/interactor",
"contracts/esdt-transfer-with-fee",
"contracts/esdt-transfer-with-fee/meta",
"contracts/bonding-curve-contract",
Expand Down Expand Up @@ -70,6 +70,7 @@ members = [
"contracts/paymaster/interactor",
"contracts/ping-pong-egld",
"contracts/ping-pong-egld/meta",
"contracts/ping-pong-egld/interactor",
"contracts/proxy-deployer",
"contracts/proxy-deployer/meta",
"contracts/proxy-pause",
Expand All @@ -81,5 +82,5 @@ members = [
"contracts/token-release",
"contracts/token-release/meta",
"contracts/mvx-game-sc",
"contracts/mvx-game-sc/meta"
"contracts/mvx-game-sc/meta",
]
262 changes: 0 additions & 262 deletions contracts/adder/interact/src/basic_interact.rs

This file was deleted.

6 changes: 0 additions & 6 deletions contracts/adder/interact/src/basic_interact_main.rs

This file was deleted.

5 changes: 5 additions & 0 deletions contracts/adder/interactor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Pem files are used for interactions, but shouldn't be committed
*.pem

# Temporary storage of deployed contract address, so we can preserve the context between executions.
state.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[[bin]]
name = "basic-interact"
path = "src/basic_interact_main.rs"

[package]
name = "basic-interact"
name = "basic-interactor"
version = "0.0.0"
authors = ["Ovidiu Stinga <ovidiu.stinga@multiversx.com>"]
authors = ["MultiversX <contact@multiversx.com>"]
edition = "2021"
publish = false

[lib]
path = "src/basic_interact.rs"
[[bin]]
name = "basic-interactor"
path = "src/basic_interactor_main.rs"

[dependencies]
clap = { version = "4.4.7", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8.6"
tokio = { version = "1.24" }
[lib]
path = "src/basic_interactor.rs"

[dependencies.adder]
path = ".."

[dependencies.multiversx-sc-snippets]
version = "0.54.3"

[dependencies]
clap = { version = "4.4.7", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8.6"
tokio = { version = "1.24" }

[features]
chain-simulator-tests = []
File renamed without changes.
Loading

0 comments on commit e21d75f

Please sign in to comment.