├── .gitignore ├── BankOfDeposit.py ├── BankOfDeposit.sol ├── LICENSE ├── Lottery.py ├── Lottery.sol ├── README.md ├── __init__.py ├── requirements.txt └── tests ├── test_bankofdeposit.py └── test_lottery.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /BankOfDeposit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/BankOfDeposit.py -------------------------------------------------------------------------------- /BankOfDeposit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/BankOfDeposit.sol -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /Lottery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/Lottery.py -------------------------------------------------------------------------------- /Lottery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/Lottery.sol -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ethereum==1.3.2 2 | -------------------------------------------------------------------------------- /tests/test_bankofdeposit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/tests/test_bankofdeposit.py -------------------------------------------------------------------------------- /tests/test_lottery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/ethereum-contracts/HEAD/tests/test_lottery.py --------------------------------------------------------------------------------