├── .gitignore ├── .solhint.json ├── LICENSE ├── README.md ├── contracts ├── Snapshop.sol ├── SnapshopLib.sol └── test │ ├── TestERC20.sol │ └── TestGov.sol ├── hardhat.config.js ├── package.json ├── src └── snapshop.js └── test └── snapshop-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/.solhint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Snapshop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/contracts/Snapshop.sol -------------------------------------------------------------------------------- /contracts/SnapshopLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/contracts/SnapshopLib.sol -------------------------------------------------------------------------------- /contracts/test/TestERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/contracts/test/TestERC20.sol -------------------------------------------------------------------------------- /contracts/test/TestGov.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/contracts/test/TestGov.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/package.json -------------------------------------------------------------------------------- /src/snapshop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/src/snapshop.js -------------------------------------------------------------------------------- /test/snapshop-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSandwich/Snapshop/HEAD/test/snapshop-test.js --------------------------------------------------------------------------------