├── .gitignore ├── .node-xmlhttprequest-sync-16380 ├── .node-xmlhttprequest-sync-16996 ├── .node-xmlhttprequest-sync-22456 ├── .node-xmlhttprequest-sync-7768 ├── .node-xmlhttprequest-sync-9348 ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composables-998.iml ├── contracts ├── ComposableBottomUp.sol ├── ComposableTopDown.sol ├── ERC721.sol ├── ERC721Receiver.sol ├── Migrations.sol ├── SafeMath.sol ├── SampleERC20.sol └── SampleNFT.sol ├── migrations └── 1_initial_migration.js ├── notes ├── Composable.sol ├── Cryptokitties.sol └── Fiddle-Imp.sol ├── package.json ├── test └── composabletopdown.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-16380: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-16996: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-22456: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-7768: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-9348: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/README.md -------------------------------------------------------------------------------- /composables-998.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/composables-998.iml -------------------------------------------------------------------------------- /contracts/ComposableBottomUp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/ComposableBottomUp.sol -------------------------------------------------------------------------------- /contracts/ComposableTopDown.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/ComposableTopDown.sol -------------------------------------------------------------------------------- /contracts/ERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/ERC721.sol -------------------------------------------------------------------------------- /contracts/ERC721Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/ERC721Receiver.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/SafeMath.sol -------------------------------------------------------------------------------- /contracts/SampleERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/SampleERC20.sol -------------------------------------------------------------------------------- /contracts/SampleNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/contracts/SampleNFT.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /notes/Composable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/notes/Composable.sol -------------------------------------------------------------------------------- /notes/Cryptokitties.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/notes/Cryptokitties.sol -------------------------------------------------------------------------------- /notes/Fiddle-Imp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/notes/Fiddle-Imp.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/package.json -------------------------------------------------------------------------------- /test/composabletopdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/test/composabletopdown.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlockyer/composables-998/HEAD/truffle-config.js --------------------------------------------------------------------------------