Skip to content

Commit dbc5f68

Browse files
authored
chore: removes truffle example (#3719)
Signed-off-by: Simeon Nakov <[email protected]>
1 parent a9fc75b commit dbc5f68

File tree

12 files changed

+15
-11735
lines changed

12 files changed

+15
-11735
lines changed

.github/workflows/dev-tool-test.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Dev Tool Tests
22

33
on:
44
pull_request:
5-
branches: [ main, release/** ]
5+
branches: [main, release/**]
66
push:
7-
branches: [ main, release/** ]
8-
tags: [ v* ]
7+
branches: [main, release/**]
8+
tags: [v*]
99

1010
concurrency:
1111
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -19,18 +19,10 @@ jobs:
1919
command: cd ./tools/hardhat-example/ && npx hardhat test
2020
directory: ./tools/hardhat-example
2121

22-
truffle:
23-
name: Truffle
24-
uses: ./.github/workflows/dev-tool-workflow.yml
25-
needs: hardhat
26-
with:
27-
command: cd ./tools/truffle-example/ && npx truffle test
28-
directory: ./tools/truffle-example
29-
3022
web3js:
3123
name: Web3js
3224
uses: ./.github/workflows/dev-tool-workflow.yml
33-
needs: [ hardhat, truffle]
25+
needs: [hardhat]
3426
with:
3527
command: cd ./tools/web3js-example/ && npm run test
3628
directory: ./tools/web3js-example

docs/diagrams/project-overview-diagram.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ B --> E[Relay]
88
B --> F[Server]
99
B --> G[WS-Server]
1010
C --> H[Hardhat]
11-
C --> I[Truffle]
12-
C --> J[Web3JS]
13-
C --> K[The Graph]
14-
D --> L[Synpress]
11+
C --> I[Web3JS]
12+
C --> J[The Graph]
13+
D --> K[Synpress]
1514
```

tools/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020

2121
### Supported tools
2222

23-
| | web3js | Truffle | ethers | Hardhat | Remix IDE | Foundry |
24-
| -------------------------------------------------------------------- | ------ | ------- | ------ | ------- | --------- | ------- |
25-
| Transfer HBARS || |||| |
26-
| Contract Deployment || |||| |
27-
| Can use the contract instance after deploy without re-initialization || |||| |
28-
| Contract View Function Call || |||| |
29-
| Contract Function Call || |||| |
30-
| Debug Operations\* || |||| |
23+
| | web3js | ethers | Hardhat | Remix IDE | Foundry |
24+
| -------------------------------------------------------------------- | ------ | ------ | ------- | --------- | ------- |
25+
| Transfer HBARS ||| |||
26+
| Contract Deployment ||| || |
27+
| Can use the contract instance after deploy without re-initialization ||| |||
28+
| Contract View Function Call ||| |||
29+
| Contract Function Call ||| |||
30+
| Debug Operations\* ||| |||
3131

3232
\*1: Debug operation are not supported yet.
3333

tools/truffle-example/.env.example

-5
This file was deleted.

tools/truffle-example/.gitignore

-9
This file was deleted.

tools/truffle-example/README.md

-28
This file was deleted.

tools/truffle-example/contracts/Greeter.sol

-24
This file was deleted.

tools/truffle-example/migrations/1_deploy_greeter.js

-7
This file was deleted.

0 commit comments

Comments
 (0)