Skip to content

Commit

Permalink
refactor: rename everything (#166)
Browse files Browse the repository at this point in the history
* grand rename

* reinit modules
  • Loading branch information
NikVolf committed Jul 16, 2024
1 parent 3b278a0 commit e7d40a9
Show file tree
Hide file tree
Showing 121 changed files with 621 additions and 632 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,33 +41,33 @@ jobs:
./scripts/gear.sh show
forge --version
- name: "Check: hypercore contracts"
- name: "Check: ethexe contracts"
run: |
cd hypercore/contracts
cd ethexe/contracts
forge fmt --check
forge build --sizes
forge test -vvv
- name: "Check: workspace formatting"
run: ./scripts/gear.sh format gear --check

- name: "Check: hypercore clippy allowing unused code"
run: cargo clippy -p "hypercore-*" --all-targets --locked -- --no-deps -D warnings
- name: "Check: ethexe clippy allowing unused code"
run: cargo clippy -p "ethexe-*" --all-targets --locked -- --no-deps -D warnings

- name: "Build: Hypercore"
run: cargo build --release -p hypercore-cli
- name: "Build: ethexe"
run: cargo build --release -p ethexe-cli

- name: "Test: Hypercore CLI"
run: cargo test --release -p hypercore-cli
- name: "Test: ethexe CLI"
run: cargo test --release -p ethexe-cli

- name: "Test: Hypercore Network"
run: cargo test --release -p hypercore-network
- name: "Test: ethexe Network"
run: cargo test --release -p ethexe-network

- name: "Test: Hypercore Db"
run: cargo test --release -p hypercore-db
- name: "Test: ethexe Db"
run: cargo test --release -p ethexe-db

- name: "Test: Hypercore Observer"
run: cargo test --release -p hypercore-observer
- name: "Test: ethexe Observer"
run: cargo test --release -p ethexe-observer

- name: "Test: Hypercore processor"
run: cargo test --release -p hypercore-processor
- name: "Test: ethexe processor"
run: cargo test --release -p ethexe-processor
32 changes: 16 additions & 16 deletions .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,33 +62,33 @@ jobs:
./scripts/gear.sh show
forge --version
- name: "Check: hypercore contracts"
- name: "Check: ethexe contracts"
run: |
cd hypercore/contracts
cd ethexe/contracts
forge fmt --check
forge build --sizes
forge test -vvv
- name: "Check: workspace formatting"
run: ./scripts/gear.sh format gear --check

- name: "Check: hypercore clippy allowing unused code"
run: cargo clippy -p "hypercore-*" --all-targets --locked -- --no-deps -D warnings
- name: "Check: ethexe clippy allowing unused code"
run: cargo clippy -p "ethexe-*" --all-targets --locked -- --no-deps -D warnings

- name: "Build: Hypercore"
run: cargo build --release -p hypercore-cli
- name: "Build: ethexe"
run: cargo build --release -p ethexe-cli

- name: "Test: Hypercore CLI"
run: cargo test --release -p hypercore-cli
- name: "Test: ethexe CLI"
run: cargo test --release -p ethexe-cli

- name: "Test: Hypercore Network"
run: cargo test --release -p hypercore-network
- name: "Test: ethexe Network"
run: cargo test --release -p ethexe-network

- name: "Test: Hypercore Db"
run: cargo test --release -p hypercore-db
- name: "Test: ethexe Db"
run: cargo test --release -p ethexe-db

- name: "Test: Hypercore Observer"
run: cargo test --release -p hypercore-observer
- name: "Test: ethexe Observer"
run: cargo test --release -p ethexe-observer

- name: "Test: Hypercore processor"
run: cargo test --release -p hypercore-processor
- name: "Test: ethexe processor"
run: cargo test --release -p ethexe-processor
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ utils/**/fuzz/corpus/*
utils/**/fuzz/coverage/*
utils/**/fuzz/artifacts/*
utils/**/fuzz/fuzz/*
.hypercore.toml
.ethexe.toml
16 changes: 8 additions & 8 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "hypercore/contracts/lib/forge-std"]
path = hypercore/contracts/lib/forge-std
[submodule "ethexe/contracts/lib/forge-std"]
path = ethexe/contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "hypercore/contracts/lib/openzeppelin-contracts"]
path = hypercore/contracts/lib/openzeppelin-contracts
[submodule "ethexe/contracts/lib/openzeppelin-contracts"]
path = ethexe/contracts/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "hypercore/contracts/lib/openzeppelin-foundry-upgrades"]
path = hypercore/contracts/lib/openzeppelin-foundry-upgrades
[submodule "ethexe/contracts/lib/openzeppelin-foundry-upgrades"]
path = ethexe/contracts/lib/openzeppelin-foundry-upgrades
url = https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades
[submodule "hypercore/contracts/lib/openzeppelin-contracts-upgradeable"]
path = hypercore/contracts/lib/openzeppelin-contracts-upgradeable
[submodule "ethexe/contracts/lib/openzeppelin-contracts-upgradeable"]
path = ethexe/contracts/lib/openzeppelin-contracts-upgradeable
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
Loading

0 comments on commit e7d40a9

Please sign in to comment.