├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── src ├── cairo_project.toml ├── erc20.cairo ├── lib.cairo └── storage.cairo └── tests ├── cairo_project.toml ├── lib.cairo └── tests_storage.cairo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/README.md -------------------------------------------------------------------------------- /src/cairo_project.toml: -------------------------------------------------------------------------------- 1 | [crate_roots] 2 | contracts = "." -------------------------------------------------------------------------------- /src/erc20.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/src/erc20.cairo -------------------------------------------------------------------------------- /src/lib.cairo: -------------------------------------------------------------------------------- 1 | mod storage; 2 | mod erc20; -------------------------------------------------------------------------------- /src/storage.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/src/storage.cairo -------------------------------------------------------------------------------- /tests/cairo_project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/tests/cairo_project.toml -------------------------------------------------------------------------------- /tests/lib.cairo: -------------------------------------------------------------------------------- 1 | mod tests_storage; 2 | -------------------------------------------------------------------------------- /tests/tests_storage.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enitrat/cairo1-template/HEAD/tests/tests_storage.cairo --------------------------------------------------------------------------------