Skip to content

Commit

Permalink
Update repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 19, 2024
1 parent c6db19a commit 4da2c2b
Show file tree
Hide file tree
Showing 2 changed files with 182 additions and 0 deletions.
91 changes: 91 additions & 0 deletions PROJECT_STRUCTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2611,6 +2611,96 @@
β”‚ β”‚ β”œβ”€β”€ index.html
β”‚ β”‚ β”œβ”€β”€ readme.md
β”‚ β”‚ └── script.js
β”‚ β”œβ”€β”€ DVOTE/
β”‚ β”‚ β”œβ”€β”€ contracts/
β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”œβ”€β”€ foundry.toml
β”‚ β”‚ β”‚ β”œβ”€β”€ lib/
β”‚ β”‚ β”‚ β”‚ └── forge-std/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ LICENSE-APACHE
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ LICENSE-MIT
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ foundry.toml
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ package.json
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ scripts/
β”‚ β”‚ β”‚ β”‚ β”‚ └── vm.py
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Base.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Script.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdAssertions.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdChains.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdCheats.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdError.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdInvariant.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdJson.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdMath.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStorage.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStyle.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdToml.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdUtils.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Test.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Vm.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ console.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ console2.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ interfaces/
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC1155.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC165.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC20.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC4626.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC721.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ └── IMulticall3.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ mocks/
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ MockERC20.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ └── MockERC721.sol
β”‚ β”‚ β”‚ β”‚ β”‚ └── safeconsole.sol
β”‚ β”‚ β”‚ β”‚ └── test/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdAssertions.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdChains.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdCheats.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdError.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdJson.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdMath.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStorage.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStyle.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdToml.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdUtils.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Vm.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ compilation/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationScript.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationScriptBase.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationTest.sol
β”‚ β”‚ β”‚ β”‚ β”‚ └── CompilationTestBase.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ fixtures/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ broadcast.log.json
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ test.json
β”‚ β”‚ β”‚ β”‚ β”‚ └── test.toml
β”‚ β”‚ β”‚ β”‚ └── mocks/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ MockERC20.t.sol
β”‚ β”‚ β”‚ β”‚ └── MockERC721.t.sol
β”‚ β”‚ β”‚ β”œβ”€β”€ script/
β”‚ β”‚ β”‚ β”‚ └── Deploy.s.sol
β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ └── Voting.sol
β”‚ β”‚ β”‚ └── test/
β”‚ β”‚ β”‚ └── VotingTest.sol
β”‚ β”‚ β”œβ”€β”€ frontend/
β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”œβ”€β”€ next.config.mjs
β”‚ β”‚ β”‚ β”œβ”€β”€ package-lock.json
β”‚ β”‚ β”‚ β”œβ”€β”€ package.json
β”‚ β”‚ β”‚ β”œβ”€β”€ postcss.config.mjs
β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ └── app/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Header.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Results/
β”‚ β”‚ β”‚ β”‚ β”‚ └── page.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ globals.css
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ layout.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ page.tsx
β”‚ β”‚ β”‚ β”‚ └── voting.js
β”‚ β”‚ β”‚ β”œβ”€β”€ tailwind.config.ts
β”‚ β”‚ β”‚ └── tsconfig.json
β”‚ β”‚ └── readme.md
β”‚ β”œβ”€β”€ Daily_Diary_Entry_Website/
β”‚ β”‚ β”œβ”€β”€ Readme.md
β”‚ β”‚ β”œβ”€β”€ avatar img.png
Expand Down Expand Up @@ -5710,6 +5800,7 @@
β”‚ β”‚ β”œβ”€β”€ Crypto.png
β”‚ β”‚ β”œβ”€β”€ DENTISTWEB.png
β”‚ β”‚ β”œβ”€β”€ DOCLAB.png
β”‚ β”‚ β”œβ”€β”€ DVOTE.png
β”‚ β”‚ β”œβ”€β”€ Daily_Diary_Entry_Website.png
β”‚ β”‚ β”œβ”€β”€ Detect_device_battery.png
β”‚ β”‚ β”œβ”€β”€ Dice_Game.png
Expand Down
91 changes: 91 additions & 0 deletions repo_structure.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2607,6 +2607,96 @@
β”‚ β”‚ β”œβ”€β”€ index.html
β”‚ β”‚ β”œβ”€β”€ readme.md
β”‚ β”‚ └── script.js
β”‚ β”œβ”€β”€ DVOTE/
β”‚ β”‚ β”œβ”€β”€ contracts/
β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”œβ”€β”€ foundry.toml
β”‚ β”‚ β”‚ β”œβ”€β”€ lib/
β”‚ β”‚ β”‚ β”‚ └── forge-std/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ LICENSE-APACHE
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ LICENSE-MIT
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ foundry.toml
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ package.json
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ scripts/
β”‚ β”‚ β”‚ β”‚ β”‚ └── vm.py
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Base.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Script.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdAssertions.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdChains.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdCheats.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdError.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdInvariant.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdJson.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdMath.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStorage.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStyle.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdToml.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdUtils.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Test.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Vm.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ console.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ console2.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ interfaces/
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC1155.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC165.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC20.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC4626.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ IERC721.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ └── IMulticall3.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ mocks/
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ MockERC20.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ └── MockERC721.sol
β”‚ β”‚ β”‚ β”‚ β”‚ └── safeconsole.sol
β”‚ β”‚ β”‚ β”‚ └── test/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdAssertions.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdChains.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdCheats.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdError.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdJson.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdMath.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStorage.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdStyle.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdToml.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ StdUtils.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Vm.t.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ compilation/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationScript.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationScriptBase.sol
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ CompilationTest.sol
β”‚ β”‚ β”‚ β”‚ β”‚ └── CompilationTestBase.sol
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ fixtures/
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ broadcast.log.json
β”‚ β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ test.json
β”‚ β”‚ β”‚ β”‚ β”‚ └── test.toml
β”‚ β”‚ β”‚ β”‚ └── mocks/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ MockERC20.t.sol
β”‚ β”‚ β”‚ β”‚ └── MockERC721.t.sol
β”‚ β”‚ β”‚ β”œβ”€β”€ script/
β”‚ β”‚ β”‚ β”‚ └── Deploy.s.sol
β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ └── Voting.sol
β”‚ β”‚ β”‚ └── test/
β”‚ β”‚ β”‚ └── VotingTest.sol
β”‚ β”‚ β”œβ”€β”€ frontend/
β”‚ β”‚ β”‚ β”œβ”€β”€ README.md
β”‚ β”‚ β”‚ β”œβ”€β”€ next.config.mjs
β”‚ β”‚ β”‚ β”œβ”€β”€ package-lock.json
β”‚ β”‚ β”‚ β”œβ”€β”€ package.json
β”‚ β”‚ β”‚ β”œβ”€β”€ postcss.config.mjs
β”‚ β”‚ β”‚ β”œβ”€β”€ src/
β”‚ β”‚ β”‚ β”‚ └── app/
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Header.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ Results/
β”‚ β”‚ β”‚ β”‚ β”‚ └── page.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ globals.css
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ layout.tsx
β”‚ β”‚ β”‚ β”‚ β”œβ”€β”€ page.tsx
β”‚ β”‚ β”‚ β”‚ └── voting.js
β”‚ β”‚ β”‚ β”œβ”€β”€ tailwind.config.ts
β”‚ β”‚ β”‚ └── tsconfig.json
β”‚ β”‚ └── readme.md
β”‚ β”œβ”€β”€ Daily_Diary_Entry_Website/
β”‚ β”‚ β”œβ”€β”€ Readme.md
β”‚ β”‚ β”œβ”€β”€ avatar img.png
Expand Down Expand Up @@ -5706,6 +5796,7 @@
β”‚ β”‚ β”œβ”€β”€ Crypto.png
β”‚ β”‚ β”œβ”€β”€ DENTISTWEB.png
β”‚ β”‚ β”œβ”€β”€ DOCLAB.png
β”‚ β”‚ β”œβ”€β”€ DVOTE.png
β”‚ β”‚ β”œβ”€β”€ Daily_Diary_Entry_Website.png
β”‚ β”‚ β”œβ”€β”€ Detect_device_battery.png
β”‚ β”‚ β”œβ”€β”€ Dice_Game.png
Expand Down

0 comments on commit 4da2c2b

Please sign in to comment.