├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── contracts ├── Migrations.sol └── SimplePaymentChannel.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contract.js ├── package.json ├── test ├── SimplePaymentChannel.spec.js └── utils.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SimplePaymentChannel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/contracts/SimplePaymentChannel.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/migrations/2_deploy_contract.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/package.json -------------------------------------------------------------------------------- /test/SimplePaymentChannel.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/test/SimplePaymentChannel.spec.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/test/utils.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolszewski/simple-payment-channel/HEAD/truffle-config.js --------------------------------------------------------------------------------