├── LICENSE ├── Makefile ├── README.md ├── circle.yml ├── contracts ├── BadWallet.sol ├── ExampleMigration.sol ├── GNTAllocation.sol ├── MultiSigWallet.sol ├── ProxyAccount.sol ├── Token.sol └── Wallet.sol ├── deployment ├── encode_function_call.py └── prepare_gnt.py ├── examples ├── migration_process.txt └── time_locked_proxy_account_howto.txt ├── requirements.txt └── tests ├── .gitignore ├── test_allowance_wallet.py ├── test_cf_100k.py ├── test_gnt.py ├── test_proxy.py └── test_wallet.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/circle.yml -------------------------------------------------------------------------------- /contracts/BadWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/BadWallet.sol -------------------------------------------------------------------------------- /contracts/ExampleMigration.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/ExampleMigration.sol -------------------------------------------------------------------------------- /contracts/GNTAllocation.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/GNTAllocation.sol -------------------------------------------------------------------------------- /contracts/MultiSigWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/MultiSigWallet.sol -------------------------------------------------------------------------------- /contracts/ProxyAccount.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/ProxyAccount.sol -------------------------------------------------------------------------------- /contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/Token.sol -------------------------------------------------------------------------------- /contracts/Wallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/contracts/Wallet.sol -------------------------------------------------------------------------------- /deployment/encode_function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/deployment/encode_function_call.py -------------------------------------------------------------------------------- /deployment/prepare_gnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/deployment/prepare_gnt.py -------------------------------------------------------------------------------- /examples/migration_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/examples/migration_process.txt -------------------------------------------------------------------------------- /examples/time_locked_proxy_account_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/examples/time_locked_proxy_account_howto.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.abi 2 | *.bin 3 | __pycache__ -------------------------------------------------------------------------------- /tests/test_allowance_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/tests/test_allowance_wallet.py -------------------------------------------------------------------------------- /tests/test_cf_100k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/tests/test_cf_100k.py -------------------------------------------------------------------------------- /tests/test_gnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/tests/test_gnt.py -------------------------------------------------------------------------------- /tests/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/tests/test_proxy.py -------------------------------------------------------------------------------- /tests/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golemfactory/golem-crowdfunding/HEAD/tests/test_wallet.py --------------------------------------------------------------------------------