├── .babelrc ├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── contracts ├── Migrations.sol ├── OZ_LICENSE ├── lib │ ├── ERC20.sol │ ├── lifecycle │ │ └── Destructible.sol │ ├── ownership │ │ ├── Ownable.sol │ │ ├── Upgradable.sol │ │ ├── ZapCoordinator.sol │ │ └── ZapCoordinatorInterface.sol │ ├── platform │ │ ├── BTCcontest.sol │ │ ├── Client.sol │ │ ├── MostBondedByDateContest.sol │ │ ├── OnChainProvider.sol │ │ ├── PiecewiseLogic.sol │ │ ├── SampleContest.sol │ │ ├── SampleOnChainOracle.sol │ │ ├── Telegram.sol │ │ ├── TestContracts.sol │ │ └── TokenDotFactory.sol │ └── token │ │ ├── FactoryTokenInterface.sol │ │ ├── Token.sol │ │ ├── TokenFactory.sol │ │ └── TokenFactoryInterface.sol ├── platform │ ├── arbiter │ │ ├── Arbiter.sol │ │ └── ArbiterInterface.sol │ ├── bondage │ │ ├── Bondage.sol │ │ ├── BondageInterface.sol │ │ └── currentCost │ │ │ ├── CurrentCost.sol │ │ │ └── CurrentCostInterface.sol │ ├── database │ │ ├── Database.sol │ │ └── DatabaseInterface.sol │ ├── dispatch │ │ ├── Dispatch.sol │ │ └── DispatchInterface.sol │ └── registry │ │ ├── Registry.sol │ │ └── RegistryInterface.sol └── token │ ├── Faucet.sol │ └── ZapToken.sol ├── dataflow.png ├── docker-compose.yml ├── migrations ├── 1_initial_migration.js ├── 2_token_migration.js ├── 3_deploy_main_contracts.js ├── 4_replace_contract.js ├── 5_deploy_token_factory.js └── 6_deploy_utility_contracts.js ├── new-token.sh ├── package.json ├── parity-assets ├── config.toml ├── keys │ └── DevelopmentNetwork │ │ ├── UTC--2017-10-17T14-03-11.901398090Z--9e65c373a97793e8d36cb8316ecbe79940110f90 │ │ ├── UTC--2017-10-17T14-04-15.974472619Z--4fc95b48a473f59c83a4aaefaad2a588a865d013 │ │ ├── UTC--2017-10-17T14-04-45.883217082Z--4ca7393cf5575fdefd8402f16920a33870fc9ef0 │ │ ├── UTC--2017-10-17T14-06-08.114570731Z--800ce51198c95280f2627a330e730bc96f704178 │ │ ├── UTC--2017-10-17T14-06-23.339285868Z--f85d84c5ef6dfd25e9a2f23941a93a05b41ffd7d │ │ ├── UTC--2017-10-17T14-06-34.489473934Z--010e49e47cbb34e67c072702ed6f4d8b273f751f │ │ ├── UTC--2017-10-17T14-06-56.988850065Z--67efd57c71232438cb405ce8917e259b8d14ea7e │ │ ├── UTC--2017-10-17T14-07-10.127867546Z--4929d7de115ff73fe19fcf8ace73a2bececc9eb0 │ │ ├── UTC--2017-10-17T14-07-48.522584802Z--07a6aea0328e908140670628d67b6133c121f1c7 │ │ ├── UTC--2017-10-17T14-07-59.704947468Z--81eaf903c952447fd27b11db1604f4da6deda0ed │ │ ├── address_book.json │ │ └── dapps_history.json ├── parity-genesis.json ├── password └── reserved-peers.txt ├── parity.sh ├── scripts └── test.sh ├── test ├── 0_coordinator_test.js ├── 1_registry_test.js ├── 2_bondage_test.js ├── 3_arbiter_test.js ├── 4_dispatch_test.js ├── 5_dot_factory_test.js ├── 6_samplecontest_test.js ├── 7_BTCcontest_test.js └── helpers │ ├── EVMRevert.js │ ├── advanceToBlock.js │ ├── ether.js │ ├── increaseTime.js │ ├── latestTime.js │ └── utils.js └── truffle-config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | LOCALTIME_PATH=~/etc/localtime -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/OZ_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/OZ_LICENSE -------------------------------------------------------------------------------- /contracts/lib/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/ERC20.sol -------------------------------------------------------------------------------- /contracts/lib/lifecycle/Destructible.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/lifecycle/Destructible.sol -------------------------------------------------------------------------------- /contracts/lib/ownership/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/ownership/Ownable.sol -------------------------------------------------------------------------------- /contracts/lib/ownership/Upgradable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/ownership/Upgradable.sol -------------------------------------------------------------------------------- /contracts/lib/ownership/ZapCoordinator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/ownership/ZapCoordinator.sol -------------------------------------------------------------------------------- /contracts/lib/ownership/ZapCoordinatorInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/ownership/ZapCoordinatorInterface.sol -------------------------------------------------------------------------------- /contracts/lib/platform/BTCcontest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/BTCcontest.sol -------------------------------------------------------------------------------- /contracts/lib/platform/Client.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/Client.sol -------------------------------------------------------------------------------- /contracts/lib/platform/MostBondedByDateContest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/MostBondedByDateContest.sol -------------------------------------------------------------------------------- /contracts/lib/platform/OnChainProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/OnChainProvider.sol -------------------------------------------------------------------------------- /contracts/lib/platform/PiecewiseLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/PiecewiseLogic.sol -------------------------------------------------------------------------------- /contracts/lib/platform/SampleContest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/SampleContest.sol -------------------------------------------------------------------------------- /contracts/lib/platform/SampleOnChainOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/SampleOnChainOracle.sol -------------------------------------------------------------------------------- /contracts/lib/platform/Telegram.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/Telegram.sol -------------------------------------------------------------------------------- /contracts/lib/platform/TestContracts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/TestContracts.sol -------------------------------------------------------------------------------- /contracts/lib/platform/TokenDotFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/platform/TokenDotFactory.sol -------------------------------------------------------------------------------- /contracts/lib/token/FactoryTokenInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/token/FactoryTokenInterface.sol -------------------------------------------------------------------------------- /contracts/lib/token/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/token/Token.sol -------------------------------------------------------------------------------- /contracts/lib/token/TokenFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/token/TokenFactory.sol -------------------------------------------------------------------------------- /contracts/lib/token/TokenFactoryInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/lib/token/TokenFactoryInterface.sol -------------------------------------------------------------------------------- /contracts/platform/arbiter/Arbiter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/arbiter/Arbiter.sol -------------------------------------------------------------------------------- /contracts/platform/arbiter/ArbiterInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/arbiter/ArbiterInterface.sol -------------------------------------------------------------------------------- /contracts/platform/bondage/Bondage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/bondage/Bondage.sol -------------------------------------------------------------------------------- /contracts/platform/bondage/BondageInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/bondage/BondageInterface.sol -------------------------------------------------------------------------------- /contracts/platform/bondage/currentCost/CurrentCost.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/bondage/currentCost/CurrentCost.sol -------------------------------------------------------------------------------- /contracts/platform/bondage/currentCost/CurrentCostInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/bondage/currentCost/CurrentCostInterface.sol -------------------------------------------------------------------------------- /contracts/platform/database/Database.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/database/Database.sol -------------------------------------------------------------------------------- /contracts/platform/database/DatabaseInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/database/DatabaseInterface.sol -------------------------------------------------------------------------------- /contracts/platform/dispatch/Dispatch.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/dispatch/Dispatch.sol -------------------------------------------------------------------------------- /contracts/platform/dispatch/DispatchInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/dispatch/DispatchInterface.sol -------------------------------------------------------------------------------- /contracts/platform/registry/Registry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/registry/Registry.sol -------------------------------------------------------------------------------- /contracts/platform/registry/RegistryInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/platform/registry/RegistryInterface.sol -------------------------------------------------------------------------------- /contracts/token/Faucet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/token/Faucet.sol -------------------------------------------------------------------------------- /contracts/token/ZapToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/contracts/token/ZapToken.sol -------------------------------------------------------------------------------- /dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/dataflow.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_token_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/2_token_migration.js -------------------------------------------------------------------------------- /migrations/3_deploy_main_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/3_deploy_main_contracts.js -------------------------------------------------------------------------------- /migrations/4_replace_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/4_replace_contract.js -------------------------------------------------------------------------------- /migrations/5_deploy_token_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/5_deploy_token_factory.js -------------------------------------------------------------------------------- /migrations/6_deploy_utility_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/migrations/6_deploy_utility_contracts.js -------------------------------------------------------------------------------- /new-token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/new-token.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/package.json -------------------------------------------------------------------------------- /parity-assets/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/config.toml -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-03-11.901398090Z--9e65c373a97793e8d36cb8316ecbe79940110f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-03-11.901398090Z--9e65c373a97793e8d36cb8316ecbe79940110f90 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-04-15.974472619Z--4fc95b48a473f59c83a4aaefaad2a588a865d013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-04-15.974472619Z--4fc95b48a473f59c83a4aaefaad2a588a865d013 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-04-45.883217082Z--4ca7393cf5575fdefd8402f16920a33870fc9ef0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-04-45.883217082Z--4ca7393cf5575fdefd8402f16920a33870fc9ef0 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-08.114570731Z--800ce51198c95280f2627a330e730bc96f704178: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-08.114570731Z--800ce51198c95280f2627a330e730bc96f704178 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-23.339285868Z--f85d84c5ef6dfd25e9a2f23941a93a05b41ffd7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-23.339285868Z--f85d84c5ef6dfd25e9a2f23941a93a05b41ffd7d -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-34.489473934Z--010e49e47cbb34e67c072702ed6f4d8b273f751f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-34.489473934Z--010e49e47cbb34e67c072702ed6f4d8b273f751f -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-56.988850065Z--67efd57c71232438cb405ce8917e259b8d14ea7e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-06-56.988850065Z--67efd57c71232438cb405ce8917e259b8d14ea7e -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-10.127867546Z--4929d7de115ff73fe19fcf8ace73a2bececc9eb0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-10.127867546Z--4929d7de115ff73fe19fcf8ace73a2bececc9eb0 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-48.522584802Z--07a6aea0328e908140670628d67b6133c121f1c7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-48.522584802Z--07a6aea0328e908140670628d67b6133c121f1c7 -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-59.704947468Z--81eaf903c952447fd27b11db1604f4da6deda0ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/UTC--2017-10-17T14-07-59.704947468Z--81eaf903c952447fd27b11db1604f4da6deda0ed -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/address_book.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /parity-assets/keys/DevelopmentNetwork/dapps_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/keys/DevelopmentNetwork/dapps_history.json -------------------------------------------------------------------------------- /parity-assets/parity-genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/parity-genesis.json -------------------------------------------------------------------------------- /parity-assets/password: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /parity-assets/reserved-peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity-assets/reserved-peers.txt -------------------------------------------------------------------------------- /parity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/parity.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /test/0_coordinator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/0_coordinator_test.js -------------------------------------------------------------------------------- /test/1_registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/1_registry_test.js -------------------------------------------------------------------------------- /test/2_bondage_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/2_bondage_test.js -------------------------------------------------------------------------------- /test/3_arbiter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/3_arbiter_test.js -------------------------------------------------------------------------------- /test/4_dispatch_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/4_dispatch_test.js -------------------------------------------------------------------------------- /test/5_dot_factory_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/5_dot_factory_test.js -------------------------------------------------------------------------------- /test/6_samplecontest_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/6_samplecontest_test.js -------------------------------------------------------------------------------- /test/7_BTCcontest_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/7_BTCcontest_test.js -------------------------------------------------------------------------------- /test/helpers/EVMRevert.js: -------------------------------------------------------------------------------- 1 | export default 'revert' -------------------------------------------------------------------------------- /test/helpers/advanceToBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/helpers/advanceToBlock.js -------------------------------------------------------------------------------- /test/helpers/ether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/helpers/ether.js -------------------------------------------------------------------------------- /test/helpers/increaseTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/helpers/increaseTime.js -------------------------------------------------------------------------------- /test/helpers/latestTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/helpers/latestTime.js -------------------------------------------------------------------------------- /test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/test/helpers/utils.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapproject/zap-ethereum-api/HEAD/truffle-config.js --------------------------------------------------------------------------------