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

custom encode/decode #168

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
455 changes: 242 additions & 213 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions bridge-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bridge-proxy"
version = "0.0.0"
authors = ["Costin Carabaș <[email protected]>"]
edition = "2018"
edition = "2021"
publish = false

[lib]
Expand All @@ -15,17 +15,17 @@ path = "../common/transaction"
path = "../common/eth-address"

[dependencies.multiversx-sc]
version = "=0.46.1"
version = "=0.47.4"

[dependencies.multiversx-sc-modules]
version = "0.46.1"
version = "=0.47.4"

[dependencies.adder]
[dev-dependencies.adder]
git = "https://github.com/multiversx/mx-contracts-rs"
rev = "64e8926"
rev = "8df9f67"

[dev-dependencies]
num-bigint = "0.4.2"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.46.1"
version = "=0.47.4"
4 changes: 2 additions & 2 deletions bridge-proxy/meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bridge-proxy-meta"
version = "0.0.0"
edition = "2018"
edition = "2021"
publish = false
authors = ["you"]

Expand All @@ -11,4 +11,4 @@ authors = ["you"]
path = ".."

[dependencies.multiversx-sc-meta]
version = "=0.46.1"
version = "=0.47.4"
2 changes: 1 addition & 1 deletion bridge-proxy/tests/bridge_proxy_blackbox_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use multiversx_sc_scenario::{
};

use eth_address::*;
use transaction::{CallData, EthTransaction, EthTransactionPayment};
use transaction::{call_data::CallData, EthTransaction, EthTransactionPayment};

const BRIDGE_TOKEN_ID: &[u8] = b"BRIDGE-123456";
const GAS_LIMIT: u64 = 1_000_000;
Expand Down
49 changes: 20 additions & 29 deletions bridge-proxy/wasm/Cargo.lock

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

4 changes: 2 additions & 2 deletions bridge-proxy/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[package]
name = "bridge-proxy-wasm"
version = "0.0.0"
edition = "2018"
edition = "2021"
publish = false

[lib]
Expand All @@ -25,7 +25,7 @@ overflow-checks = false
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "=0.46.1"
version = "=0.47.4"

[workspace]
members = ["."]
8 changes: 4 additions & 4 deletions bridged-tokens-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bridged-tokens-wrapper"
version = "0.0.0"
authors = ["Alin Cruceat <[email protected]>"]
edition = "2018"
edition = "2021"
publish = false

[lib]
Expand All @@ -12,10 +12,10 @@ path = "src/lib.rs"
path = "../common/transaction"

[dependencies.multiversx-sc]
version = "=0.46.1"
version = "=0.47.4"

[dependencies.multiversx-sc-modules]
version = "=0.46.1"
version = "=0.47.4"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.46.1"
version = "=0.47.4"
4 changes: 2 additions & 2 deletions bridged-tokens-wrapper/meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "bridged-tokens-wrapper-meta"
version = "0.0.0"
edition = "2018"
edition = "2021"
publish = false

[dependencies.bridged-tokens-wrapper]
path = ".."

[dependencies.multiversx-sc-meta]
version = "=0.46.1"
version = "=0.47.4"
default-features = false
32 changes: 16 additions & 16 deletions bridged-tokens-wrapper/wasm/Cargo.lock

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

4 changes: 2 additions & 2 deletions bridged-tokens-wrapper/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[package]
name = "bridged-tokens-wrapper-wasm"
version = "0.0.0"
edition = "2018"
edition = "2021"
publish = false

[lib]
Expand All @@ -25,7 +25,7 @@ overflow-checks = false
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "=0.46.1"
version = "=0.47.4"

[workspace]
members = ["."]
4 changes: 2 additions & 2 deletions common/eth-address/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
name = "eth-address"
version = "0.0.0"
authors = ["dorin-iancu <[email protected]>"]
edition = "2018"
edition = "2021"

[lib]
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "=0.46.1"
version = "=0.47.4"
6 changes: 3 additions & 3 deletions common/fee-estimator-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
name = "fee-estimator-module"
version = "0.0.0"
authors = ["dorin-iancu <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies.multiversx-sc]
version = "=0.46.1"
version = "=0.47.4"

[dev-dependencies.multiversx-sc-scenario]
version = "=0.46.1"
version = "=0.47.4"
Loading
Loading