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

Feat/substrate v1.0.0 e2e tests #845

Merged
merged 15 commits into from
May 27, 2024
Merged
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
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