├── .gitignore ├── LICENSE ├── README.md ├── example ├── README.md ├── briefing │ ├── Briefing.sol │ ├── Setup.sol │ ├── solve.ipynb │ └── solve.py ├── gearing-up │ ├── Attack.sol │ ├── GearingUp.sol │ ├── Setup.sol │ └── solve.ipynb └── intro-to-eth │ ├── Setup.sol │ ├── solve.ipynb │ └── solve2.ipynb ├── pyproject.toml ├── requirements.txt └── src └── foundpy ├── __init__.py ├── cast.py ├── config.py ├── contract.py ├── forge.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/README.md -------------------------------------------------------------------------------- /example/briefing/Briefing.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/briefing/Briefing.sol -------------------------------------------------------------------------------- /example/briefing/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/briefing/Setup.sol -------------------------------------------------------------------------------- /example/briefing/solve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/briefing/solve.ipynb -------------------------------------------------------------------------------- /example/briefing/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/briefing/solve.py -------------------------------------------------------------------------------- /example/gearing-up/Attack.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/gearing-up/Attack.sol -------------------------------------------------------------------------------- /example/gearing-up/GearingUp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/gearing-up/GearingUp.sol -------------------------------------------------------------------------------- /example/gearing-up/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/gearing-up/Setup.sol -------------------------------------------------------------------------------- /example/gearing-up/solve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/gearing-up/solve.ipynb -------------------------------------------------------------------------------- /example/intro-to-eth/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/intro-to-eth/Setup.sol -------------------------------------------------------------------------------- /example/intro-to-eth/solve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/intro-to-eth/solve.ipynb -------------------------------------------------------------------------------- /example/intro-to-eth/solve2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/example/intro-to-eth/solve2.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/foundpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/__init__.py -------------------------------------------------------------------------------- /src/foundpy/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/cast.py -------------------------------------------------------------------------------- /src/foundpy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/config.py -------------------------------------------------------------------------------- /src/foundpy/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/contract.py -------------------------------------------------------------------------------- /src/foundpy/forge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/forge.py -------------------------------------------------------------------------------- /src/foundpy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wrth1/foundpy/HEAD/src/foundpy/util.py --------------------------------------------------------------------------------