-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from multiversx/update-ping-pong-tokens
revert to ping-pong esdt or egld, upgrade to v0.54.6, create interactor
- Loading branch information
Showing
38 changed files
with
552 additions
and
1,714 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# Pem files are used for interactions, but shouldn't be committed | ||
*.pem | ||
*.json | ||
|
||
# Temporary storage of deployed contract address, so we can preserve the context between executions. | ||
state.toml | ||
|
||
# Trace file of interactor tooling | ||
interactor_trace.scen.json | ||
state.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,31 @@ | ||
[[bin]] | ||
name = "ping-pong-interact" | ||
path = "src/interact_main.rs" | ||
|
||
[package] | ||
name = "ping-pong-interact" | ||
version = "0.0.0" | ||
authors = ["MultiversX <[email protected]>"] | ||
authors = ["you"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[[bin]] | ||
name = "ping-pong-interact" | ||
path = "src/interact_main.rs" | ||
|
||
[lib] | ||
path = "src/interact.rs" | ||
|
||
[dependencies] | ||
toml = "0.8.6" | ||
|
||
[dependencies.clap] | ||
version = "4.4.7" | ||
features = ["derive"] | ||
|
||
[dependencies.serde] | ||
version = "1.0" | ||
features = ["derive"] | ||
|
||
[dependencies.tokio] | ||
version = "1.24" | ||
|
||
[dependencies.ping-pong] | ||
path = ".." | ||
|
||
[dependencies.multiversx-sc-snippets] | ||
version = "0.54.6" | ||
|
||
[dependencies.multiversx-sc] | ||
version = "0.54.6" | ||
|
||
[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 = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
|
||
# chain_type = 'simulator' | ||
# gateway_uri = 'http://localhost:8085' | ||
|
||
chain_type = 'real' | ||
gateway_uri = 'https://devnet-gateway.multiversx.com' | ||
|
Oops, something went wrong.