├── .gas-snapshot ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── README.md ├── artifacts ├── build-info │ ├── 3d4f9af651c29e8af0c3eea66a51781e.json │ └── 96e5e6b1354355ca45a0252c1a4cdda9.json └── contracts │ ├── DRIP20.sol │ ├── DRIP20.dbg.json │ └── DRIP20.json │ ├── GIGADRIP20.sol │ ├── GIGADRIP20.dbg.json │ └── GIGADRIP20.json │ └── test20.sol │ ├── Test20.dbg.json │ └── Test20.json ├── foundry.toml ├── gas-report.txt ├── src ├── DRIP20.sol └── GIGADRIP20.sol └── test ├── DRIP20.t.sol ├── GIGADRIP20.t.sol └── mocks ├── MockDRIP20.sol └── MockGIGADRIP20.sol /.gas-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/.gas-snapshot -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/build-info/3d4f9af651c29e8af0c3eea66a51781e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/build-info/3d4f9af651c29e8af0c3eea66a51781e.json -------------------------------------------------------------------------------- /artifacts/build-info/96e5e6b1354355ca45a0252c1a4cdda9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/build-info/96e5e6b1354355ca45a0252c1a4cdda9.json -------------------------------------------------------------------------------- /artifacts/contracts/DRIP20.sol/DRIP20.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/DRIP20.sol/DRIP20.dbg.json -------------------------------------------------------------------------------- /artifacts/contracts/DRIP20.sol/DRIP20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/DRIP20.sol/DRIP20.json -------------------------------------------------------------------------------- /artifacts/contracts/GIGADRIP20.sol/GIGADRIP20.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/GIGADRIP20.sol/GIGADRIP20.dbg.json -------------------------------------------------------------------------------- /artifacts/contracts/GIGADRIP20.sol/GIGADRIP20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/GIGADRIP20.sol/GIGADRIP20.json -------------------------------------------------------------------------------- /artifacts/contracts/test20.sol/Test20.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/test20.sol/Test20.dbg.json -------------------------------------------------------------------------------- /artifacts/contracts/test20.sol/Test20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/artifacts/contracts/test20.sol/Test20.json -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/foundry.toml -------------------------------------------------------------------------------- /gas-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/gas-report.txt -------------------------------------------------------------------------------- /src/DRIP20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/src/DRIP20.sol -------------------------------------------------------------------------------- /src/GIGADRIP20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/src/GIGADRIP20.sol -------------------------------------------------------------------------------- /test/DRIP20.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/test/DRIP20.t.sol -------------------------------------------------------------------------------- /test/GIGADRIP20.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/test/GIGADRIP20.t.sol -------------------------------------------------------------------------------- /test/mocks/MockDRIP20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/test/mocks/MockDRIP20.sol -------------------------------------------------------------------------------- /test/mocks/MockGIGADRIP20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xBeans/DRIP20/HEAD/test/mocks/MockGIGADRIP20.sol --------------------------------------------------------------------------------