├── .gitignore ├── README.md ├── age-check ├── README.md ├── age_check.cairo ├── example.py └── input.json └── anon-bank ├── README.md ├── bank.cairo ├── example.py ├── input.json ├── state.json ├── treemap.cairo └── treemap_test.cairo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/README.md -------------------------------------------------------------------------------- /age-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/age-check/README.md -------------------------------------------------------------------------------- /age-check/age_check.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/age-check/age_check.cairo -------------------------------------------------------------------------------- /age-check/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/age-check/example.py -------------------------------------------------------------------------------- /age-check/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/age-check/input.json -------------------------------------------------------------------------------- /anon-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/README.md -------------------------------------------------------------------------------- /anon-bank/bank.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/bank.cairo -------------------------------------------------------------------------------- /anon-bank/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/example.py -------------------------------------------------------------------------------- /anon-bank/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/input.json -------------------------------------------------------------------------------- /anon-bank/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/state.json -------------------------------------------------------------------------------- /anon-bank/treemap.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/treemap.cairo -------------------------------------------------------------------------------- /anon-bank/treemap_test.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielkroeni/cairo-playground/HEAD/anon-bank/treemap_test.cairo --------------------------------------------------------------------------------