Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Beta Update #169

Merged
merged 24 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ea3d525
Added fee-market contract and removed mock scs
andreiblt1304 Oct 22, 2024
158050c
Merge branch 'main' into fee-market-update
andreiblt1304 Oct 22, 2024
6672339
Header-Verifier copy paste
andreiblt1304 Oct 22, 2024
40b26c0
Clippy fix
andreiblt1304 Oct 22, 2024
1b45929
Merge pull request #155 from multiversx/header-verifier-update
andreiblt1304 Oct 23, 2024
ea47e04
Esdt-Safe copy paste
andreiblt1304 Oct 28, 2024
6178aa7
common copy-paste
andreiblt1304 Oct 28, 2024
fa7ae70
Merge pull request #154 from multiversx/fee-market-update
andreiblt1304 Oct 28, 2024
694038f
Esdt-Safe copy paste
andreiblt1304 Oct 28, 2024
fadcfa9
Merge branch 'feat/next' into esdt-safe
andreiblt1304 Oct 28, 2024
bf083f4
Merge pull request #161 from multiversx/esdt-safe
andreiblt1304 Oct 28, 2024
ceed878
Added lock logic for operation hash
andreiblt1304 Nov 4, 2024
8655c9e
Copy paste of Header-Verifier lock logic
andreiblt1304 Nov 4, 2024
988a722
Merge pull request #165 from multiversx/lock-hash-merge
andreiblt1304 Nov 4, 2024
69571e8
FW upgrade
andreiblt1304 Nov 13, 2024
1597650
Merge pull request #170 from multiversx/next-fw-upgrade
andreiblt1304 Nov 13, 2024
d59f7c6
Removed token-whitelist commented code
andreiblt1304 Nov 13, 2024
efaef09
Merge pull request #172 from multiversx/feat-next-cleanup
andreiblt1304 Nov 13, 2024
f2c31cd
Added interactor files
andreiblt1304 Nov 13, 2024
3879072
Fixed interactor
andreiblt1304 Nov 13, 2024
14c569f
Removed proxies from src/ folder
andreiblt1304 Nov 13, 2024
93663a1
Updated fee-market to create proxy in interactor
andreiblt1304 Nov 13, 2024
5ea2068
Used correct endpoint name in tests
andreiblt1304 Nov 13, 2024
1e2a779
Merge pull request #173 from multiversx/esdt-interactor
andreiblt1304 Nov 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 87 additions & 50 deletions Cargo.lock

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

4 changes: 0 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ members = [
"esdt-safe/meta",
"fee-market",
"fee-market/meta",
"pair-mock",
"pair-mock/meta",
"router-mock",
"router-mock/meta",
"header-verifier",
"header-verifier/meta",
]
6 changes: 3 additions & 3 deletions chain-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ path = "src/lib.rs"
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.53.2"
version = "=0.54.0"

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

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

[dependencies.multiversx-sc-meta-lib]
version = "=0.53.2"
version = "=0.54.0"
27 changes: 19 additions & 8 deletions chain-config/wasm/Cargo.lock

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

2 changes: 1 addition & 1 deletion chain-config/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "=0.53.2"
version = "=0.54.0"

[workspace]
members = ["."]
4 changes: 2 additions & 2 deletions chain-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ path = "src/lib.rs"
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.53.2"
version = "=0.54.0"

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

[dependencies.utils]
path = "../common/utils"
Expand Down
2 changes: 1 addition & 1 deletion chain-factory/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ authors = ["you"]
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "=0.53.2"
version = "=0.54.0"
Loading
Loading