Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Rename Sequencer to Certificate Producer #35

Merged
merged 3 commits into from
Feb 28, 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
12 changes: 6 additions & 6 deletions .github/workflows/frontend:erc20-messaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:
type: choice
default: light
options:
- light
- full
- light
- full
local-erc20-messaging-infra-ref:
description: "Git ref of local-erc20-messaging-infra"
required: false
Expand Down Expand Up @@ -152,13 +152,13 @@ jobs:
if: failure()
run: docker ps

- name: Debug sending sequencer
- name: Debug sending Certificate Producer
if: failure()
run: docker logs topos-sequencer
run: docker logs topos-certificate-producer

- name: Debug receiving sequencer
- name: Debug receiving Certificate Producer
if: failure()
run: docker logs incal-sequencer
run: docker logs incal-certificate-producer

- name: Debug topos node 1
if: failure()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sequencer Topos-Smart-Contracts
name: Certificate Producer Topos-Smart-Contracts

on:
pull_request:
Expand Down Expand Up @@ -111,8 +111,8 @@ jobs:
- name: Move contract artifacts
run: mv contracts/artifacts topos

- name: Install anvil
run: |
- name: Install anvil
run: |
curl -L https://foundry.paradigm.xyz -o install_foundry.sh
bash install_foundry.sh
source /home/runner/.bashrc
Expand All @@ -122,5 +122,5 @@ jobs:
working-directory: topos
run: |
export PATH=$PATH:/home/runner/.config/.foundry/bin
cd crates/topos-sequencer-subnet-runtime
cd crates/topos-certificate-producer-subnet-runtime
cargo test -- --nocapture
14 changes: 7 additions & 7 deletions .github/workflows/topos:integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
TOPOS_CORE_SALT: ${{ secrets.TOPOS_CORE_SALT }}
TOPOS_CORE_PROXY_SALT: ${{ secrets.TOPOS_CORE_PROXY_SALT }}
ERC20_MESSAGING_SALT: ${{ secrets.ERC20_MESSAGING_SALT }}
SUBNET_REGISTRATOR_SALT: ${{ secrets.SUBNET_REGISTRATOR_SALT }}
SUBNET_REGISTRATOR_SALT: ${{ secrets.SUBNET_REGISTRATOR_SALT }}
TOPOS_VERSION: ${{ env.TOPOS_DOCKER_TAG }}
TOPOS_MESSAGING_PROTOCOL_CONTRACTS_VERSION: ${{ env.CONTRACTS_DOCKER_TAG }}

Expand Down Expand Up @@ -151,11 +151,11 @@ jobs:
ERC20_MESSAGING_SALT: ${{ secrets.ERC20_MESSAGING_SALT }}
SUBNET_REGISTRATOR_SALT: ${{ secrets.SUBNET_REGISTRATOR_SALT }}

- name: Run target sequencer cert delivery test
- name: Run target Certificate Producer cert delivery test
run: >
cd infra &&
source .env &&
./tests/test_cert_sequencer_delivery.sh
./tests/test_cert_certificate_producer_delivery.sh
env:
DOCKER_DEFAULT_PLATFORM: linux/amd64
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
Expand Down Expand Up @@ -183,13 +183,13 @@ jobs:
if: failure()
run: docker ps

- name: Debug sending sequencer
- name: Debug sending Certificate Producer
if: failure()
run: docker logs topos-sequencer
run: docker logs topos-certificate-producer

- name: Debug receiving sequencer
- name: Debug receiving Certificate Producer
if: failure()
run: docker logs incal-sequencer
run: docker logs incal-certificate-producer

- name: Debug TCE boot node
if: failure()
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,13 @@ E2E-Tests is the end-to-end test suite testing all components of the Topos stack
</div>

![example workflow](https://github.com/topos-protocol/e2e-tests/actions/workflows/frontend:erc20-messaging.yml/badge.svg)
![example workflow](https://github.com/topos-protocol/e2e-tests/actions/workflows/topos:sequencer-contracts.yml/badge.svg)
![example workflow](https://github.com/topos-protocol/e2e-tests/actions/workflows/topos:certificate-producer-contracts.yml/badge.svg)
[![](https://dcbadge.vercel.app/api/server/7HZ8F8ykBT?style=flat)](https://discord.gg/7HZ8F8ykBT)

## Development

Contributions are very welcomed, the guidelines are outlined in [`CONTRIBUTING.md`](./CONTRIBUTING.md).

## Support

Feel free to [open an issue](https://github.com/topos-protocol/e2e-tests/issues/new) if you have any feature request or bug report.<br />
If you have any questions, do not hesitate to reach us on [Discord](https://discord.gg/7HZ8F8ykBT)!
Feel free to [open an issue](https://github.com/topos-protocol/e2e-tests/issues/new) if you have a feature request or bug report.<br />
If you have any questions, do not hesitate to reach out to us on [Discord](https://discord.gg/7HZ8F8ykBT)!

## Resources

Expand Down
Loading