Skip to content

Commit

Permalink
Feat/substrate v1.0.0 e2e tests (#845)
Browse files Browse the repository at this point in the history
* removed references to port 9933, replaced with 9944

* using new rpc port

* fixed crowdsale e2e test

* fixed doughnut e2e test

* fixed evm gas costs e2e test

* fixed and consolidated fee preferences e2e test

* fixed pallet xrpl e2e test

* fixed and updated (made more reliable) dex rpc e2e test

* fixed futurepass precompile e2e tests

* pool address fixes

* updated precompile tx costs tables

* fixed pallet xrpl e2e test

* cargo fmt --all

* yarn format and lint

* updated @PolkaDot packages - required to support partialFee calls and updated substrate version
  • Loading branch information
zees-dev authored May 27, 2024
1 parent 850dc52 commit 18ae94b
Show file tree
Hide file tree
Showing 51 changed files with 847 additions and 1,516 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fork-state.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Fetch the service status
uses: nev7n/wait_for_response@v1
with:
url: "https://devnet.cicd.rootnet.app:9933/"
url: "https://devnet.cicd.rootnet.app:9944/"
responseCode: 405
timeout: 300
interval: 20
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ LABEL maintainer="The Root Network Team"
LABEL org.opencontainers.image.source=https://github.com/futureversecom/trn-seed
COPY --from=0 /workdir/target/release/seed /usr/bin/

EXPOSE 30333 9933 9944
EXPOSE 30333 9944
VOLUME ["/node-data"]
ENTRYPOINT ["/usr/bin/seed"]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ Docker images are published for every tagged release, you can quickly have a nod

```bash
# Root chainspec
docker run -p 9933:9933 -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --chain=root
docker run -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --chain=root
# Porcini chainspec
docker run -p 9933:9933 -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --chain=porcini
docker run -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --chain=porcini
# Dev chainspec
docker run -p 9933:9933 -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --dev --unsafe-rpc-external --unsafe-ws-external --rpc-cors=all
docker run -p 9944:9944 -p 30333:30333 ghcr.io/futureversecom/seed:latest --dev --unsafe-rpc-external --rpc-port=9944 --rpc-cors=all
```

### Run using source code
Expand Down Expand Up @@ -63,7 +63,7 @@ After building the source code, run the following commands to start the node.
# Porcini chainspec
./target/release/seed --chain=porcini
# Dev chainspec
./target/release/seed --dev --unsafe-rpc-external --unsafe-ws-external --rpc-cors=all
./target/release/seed --dev --unsafe-rpc-external --rpc-port=9944 --rpc-cors=all
```

## 🚧 Development
Expand Down
Loading

0 comments on commit 18ae94b

Please sign in to comment.