Skip to content

Commit e27f540

Browse files
Merge branch 'main' into poc-eth-service-apporach
2 parents 9e7d902 + bbc6841 commit e27f540

12 files changed

+3199
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Compiler files
2+
cache/
3+
out/
4+
5+
# Ignores development broadcast logs
6+
!/broadcast
7+
/broadcast/*/31337/
8+
/broadcast/**/dry-run/
9+
10+
# Docs
11+
docs/
12+
13+
# Dotenv file
14+
.env
15+
16+
# Libs
17+
lib/*
18+
!lib/.gitkeep
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Foundry `HTSConnector` contract fuzz testing
2+
3+
#### How to run
4+
5+
- Install forge dependencies
6+
```bash
7+
forge install hashgraph/hedera-forking --no-commit --no-git
8+
```
9+
10+
- Install npm dependencies (openzeppelin and lz contracts)
11+
```bash
12+
npm install
13+
```
14+
15+
- Run tests
16+
```bash
17+
forge test --fork-url https://testnet.hashio.io/api
18+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[profile.default]
2+
src = "src"
3+
out = "out"
4+
libs = ["lib"]
5+
ffi = true
6+
remappings = [
7+
"@openzeppelin=node_modules/@openzeppelin/",
8+
"@layerzerolabs=node_modules/@layerzerolabs/"
9+
]

tools/layer-zero-example/test/fuzzy-testing/lib/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)