├── .gitignore ├── README.md ├── contracts ├── EtherSwap.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test └── crossChainSwapTest.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | package-lock.json 3 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/README.md -------------------------------------------------------------------------------- /contracts/EtherSwap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/contracts/EtherSwap.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/package.json -------------------------------------------------------------------------------- /test/crossChainSwapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/test/crossChainSwapTest.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kabl/ether-cross-chain-swap/HEAD/truffle.js --------------------------------------------------------------------------------