diff --git a/local-network/configs/wavesnode/genesis-template.conf b/local-network/configs/wavesnode/genesis-template.conf index 99724a5c..ca567e32 100644 --- a/local-network/configs/wavesnode/genesis-template.conf +++ b/local-network/configs/wavesnode/genesis-template.conf @@ -24,7 +24,7 @@ genesis-generator { # Private key: 5r7KpS3MNXxRcz9jMbpjZKhaZVxDxF74H4VLW6ydi4aT # Public key: 2JYMTjUK7tC8NQi6TD6oWgy41YbrnXuoLzZydrFKTKt6 # Address: 3FSgXpgbT6m1speWgVx3cVxAZKmdr4barHU - { seed-text = "devnet-1", nonce = 1, amount = 998036000000000 } + { seed-text = "devnet-1", nonce = 1, amount = 900000000000000 } # Miner on wavesnode-2 # Seed text: devnet-2 @@ -33,7 +33,7 @@ genesis-generator { # Private key: F17jrRWmrR7en6eY6ptvnUTNqc9W8RSP34hpX7bNhbht # Public key: FuibB1rJ1uHVvvY6FNmhLqnbvQBNtziWbh7zh5c1CQCG # Address: 3FSrRN8X7cDsLyYTScS8Yf8KSwZgJBwf1jU - { seed-text = "devnet-2", nonce = 0, amount = 998036000000000 } + { seed-text = "devnet-2", nonce = 0, amount = 800900102030000 } # Additional addresses diff --git a/local-network/deploy/README.md b/local-network/deploy/README.md index 36dfd701..a80abd1d 100644 --- a/local-network/deploy/README.md +++ b/local-network/deploy/README.md @@ -6,7 +6,7 @@ To re-deploy from a container run the following command from the project's root To run tests on the host machine, from this directory: 1. If you're on macOS with Apple Silicon: install `gcc`. 2. Create the virtual environment and install dependencies: `./dev-setup.sh` -3. Run test, e.g.: `./tests/transfer-c2e.py` +3. Run test, e.g.: `./tests/transfer-multiple-c2e.py` To generate `Bridge.java`, run: ```bash diff --git a/local-network/deploy/pyproject.toml b/local-network/deploy/pyproject.toml index 01fdf4f2..bb16f36d 100644 --- a/local-network/deploy/pyproject.toml +++ b/local-network/deploy/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1" description = "Scripts and tests for a locally deployed Unit network" dependencies = [ "solc-select", - "units-network @ git+https://github.com/UnitsNetwork/examples.git@dao-rewards", + "units-network @ git+https://github.com/UnitsNetwork/examples.git", ] readme = "README.md" requires-python = ">=3.9"