gitextract_biizoasi/ ├── .gitignore ├── .gitmodules ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── FAQ.md ├── README.md ├── attestation-station.md ├── contracts/ │ ├── README.md │ ├── lib/ │ │ └── forge-std/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── ci.yml │ │ ├── .gitmodules │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── lib/ │ │ │ └── ds-test/ │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── default.nix │ │ │ ├── demo/ │ │ │ │ └── demo.sol │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── test.sol │ │ ├── package.json │ │ ├── src/ │ │ │ ├── Base.sol │ │ │ ├── InvariantTest.sol │ │ │ ├── Script.sol │ │ │ ├── StdAssertions.sol │ │ │ ├── StdChains.sol │ │ │ ├── StdCheats.sol │ │ │ ├── StdError.sol │ │ │ ├── StdJson.sol │ │ │ ├── StdMath.sol │ │ │ ├── StdStorage.sol │ │ │ ├── StdUtils.sol │ │ │ ├── Test.sol │ │ │ ├── Vm.sol │ │ │ ├── console.sol │ │ │ ├── console2.sol │ │ │ └── interfaces/ │ │ │ ├── IERC1155.sol │ │ │ ├── IERC165.sol │ │ │ ├── IERC20.sol │ │ │ ├── IERC4626.sol │ │ │ └── IERC721.sol │ │ └── test/ │ │ ├── StdAssertions.t.sol │ │ ├── StdChains.t.sol │ │ ├── StdCheats.t.sol │ │ ├── StdError.t.sol │ │ ├── StdMath.t.sol │ │ ├── StdStorage.t.sol │ │ ├── StdUtils.t.sol │ │ ├── compilation/ │ │ │ ├── CompilationScript.sol │ │ │ ├── CompilationScriptBase.sol │ │ │ ├── CompilationTest.sol │ │ │ └── CompilationTestBase.sol │ │ └── fixtures/ │ │ └── broadcast.log.json │ ├── script/ │ │ ├── AttestationStation.s.sol │ │ └── Counter.s.sol │ ├── src/ │ │ ├── AttestationStation.sol │ │ └── Counter.sol │ └── test/ │ ├── AttestationStation.t.sol │ └── Counter.t.sol ├── foundry.toml ├── index.html ├── package.json ├── polyfills.ts ├── src/ │ ├── App.tsx │ ├── README.md │ ├── components/ │ │ ├── Attestoooooor.tsx │ │ └── index.ts │ ├── generated.ts │ ├── main.tsx │ ├── vite-env.d.ts │ └── wagmi.ts ├── tsconfig.json ├── vite.config.ts └── wagmi.config.ts