Package Exports
- @counterfactual/cf-adjudicator-contracts/build/AppWithAction.json
- @counterfactual/cf-adjudicator-contracts/build/ChallengeRegistry.json
- @counterfactual/cf-adjudicator-contracts/build/CounterfactualApp.json
- @counterfactual/cf-adjudicator-contracts/expected-build-artifacts/AppWithAction.json
- @counterfactual/cf-adjudicator-contracts/expected-build-artifacts/ChallengeRegistry.json
- @counterfactual/cf-adjudicator-contracts/expected-build-artifacts/CounterfactualApp.json
- @counterfactual/cf-adjudicator-contracts/networks/1.json
- @counterfactual/cf-adjudicator-contracts/networks/3.json
- @counterfactual/cf-adjudicator-contracts/networks/4.json
- @counterfactual/cf-adjudicator-contracts/networks/42.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@counterfactual/cf-adjudicator-contracts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@counterfactual/cf-adjudicator-contracts 
Counterfactual is a general framework for building state channel applications. An overview of the principles and objectives of this framework can be found at the Counterfactual specifications repo.
Development
Make sure you have Yarn v1.10.1 installed or higher. Refer to Yarn's installation guide for setup instructions for your operating system.
To install the dependencies:
yarnCompiling Solidity
To compile the Solidity source code into bytecode and ABI, run:
yarn buildTests
To run all tests:
yarn testTo run only specific tests:
yarn test [test/<filename of specific test>.spec.ts ...]Migrations
The networks folder contains the migration files for the different Ethereum networks the contracts have been migrated to. The ID of the respective networks are used as file names. The mapping of some of the major Ethereum network IDs to network names is:
| Network ID | Network Name |
|---|---|
| 1 | Main net |
| 3 | Ropsten testnet |
| 4 | Rinkeby testnet |
| 42 | Kovan testnet |
Not all of the networks will be used for the Counterfactual contracts, but you can find a more comprehensive list here. To run a migration against a target network:
- make sure the target network configuration exists in
truffle-config.js cp .env.example .envand make sure the right env vars are set in.env- note that the address of the account that needs to be funded to deploy the contracts is derived (in a node.js REPL) via:
require('ethers').Wallet.fromMnemonic('ETH_ACCOUNT_MNENOMIC')
- note that the address of the account that needs to be funded to deploy the contracts is derived (in a node.js REPL) via:
- the network account you're using to send transactions from is funded (eg. for Rinkeby: https://faucet.rinkeby.io/)
- run:
yarn migrate --network <network name>