├── README.md ├── contracts ├── HeaderParser.sol ├── MerkleProof.sol ├── Migrations.sol └── Relay.sol ├── migrations └── 1_initial_migration.js ├── package.json ├── scripts ├── relayDeployer.js ├── relayHelper.js ├── sigVerification.js └── uncompress.py ├── test ├── headerParser.js ├── header_10776.json ├── headers_10800.json ├── headers_9313.json ├── headers_9626.json ├── producers_6713.json ├── producers_9313.json └── relay.js ├── truffle-config.js └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/README.md -------------------------------------------------------------------------------- /contracts/HeaderParser.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/contracts/HeaderParser.sol -------------------------------------------------------------------------------- /contracts/MerkleProof.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/contracts/MerkleProof.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Relay.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/contracts/Relay.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/relayDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/scripts/relayDeployer.js -------------------------------------------------------------------------------- /scripts/relayHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/scripts/relayHelper.js -------------------------------------------------------------------------------- /scripts/sigVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/scripts/sigVerification.js -------------------------------------------------------------------------------- /scripts/uncompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/scripts/uncompress.py -------------------------------------------------------------------------------- /test/headerParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/headerParser.js -------------------------------------------------------------------------------- /test/header_10776.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/header_10776.json -------------------------------------------------------------------------------- /test/headers_10800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/headers_10800.json -------------------------------------------------------------------------------- /test/headers_9313.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/headers_9313.json -------------------------------------------------------------------------------- /test/headers_9626.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/headers_9626.json -------------------------------------------------------------------------------- /test/producers_6713.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/producers_6713.json -------------------------------------------------------------------------------- /test/producers_9313.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/producers_9313.json -------------------------------------------------------------------------------- /test/relay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/test/relay.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyberNetwork/bridge_eth_smart_contracts/HEAD/truffle.js --------------------------------------------------------------------------------