├── .gitignore ├── README.md ├── contracts ├── BossonCoin.sol ├── BossonEscrow.sol └── Migrations.sol ├── docs └── excel_capture.JPG ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test ├── .gitkeep └── BossonEscrow.assigmentTest.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/README.md -------------------------------------------------------------------------------- /contracts/BossonCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/contracts/BossonCoin.sol -------------------------------------------------------------------------------- /contracts/BossonEscrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/contracts/BossonEscrow.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /docs/excel_capture.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/docs/excel_capture.JPG -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/BossonEscrow.assigmentTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/test/BossonEscrow.assigmentTest.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejoacosta74/solidity-escrow-arrangement/HEAD/truffle-config.js --------------------------------------------------------------------------------