Update requirement sections

This commit is contained in:
Fabio Berger
2019-01-17 12:53:09 +01:00
parent 6871f36dad
commit b2ea4f6aaf
3 changed files with 50 additions and 20 deletions

View File

@@ -70,16 +70,24 @@ const Coverage: React.StatelessComponent<{}> = () => (
<List>
<ListItem>
Use{' '}
<a href="https://www.npmjs.com/package/ganache-cli" target="_blank">
ganache-cli
<a href="https://github.com/ethereum/go-ethereum" target="_blank">
Geth
</a>{' '}
as a backing node.
as a backing node. We recommend using our{' '}
<a href="https://hub.docker.com/r/0xorg/devnet" target="_blank">
Devnet Docker container
</a>{' '}
which sets up a Geth node for testing purposes.{' '}
<a href="https://github.com/0xProject/0x-monorepo/issues/1520" target="_blank">
Ganache support is a work in progress.
</a>
</ListItem>
<ListItem>
Understand and use{' '}
<a href="https://github.com/MetaMask/provider-engine" target="_blank">
web3-provider-engine
</a>.
</a>
.
</ListItem>
</List>
</ContentBlock>
@@ -92,7 +100,8 @@ const Coverage: React.StatelessComponent<{}> = () => (
Sol-coverage is a subprovider that needs to be prepended to your{' '}
<a href="https://github.com/MetaMask/provider-engine" target="_blank">
provider engine
</a>. Depending on your project setup, you will need to use a specific ArtifactAdapter. Sol-coverage
</a>
. Depending on your project setup, you will need to use a specific ArtifactAdapter. Sol-coverage
ships with the <InlineCode>SolCompilerArtifactAdapter</InlineCode> for use with{' '}
<a href="http://sol-compiler.com" target="_blank">
Sol-compiler
@@ -100,7 +109,8 @@ const Coverage: React.StatelessComponent<{}> = () => (
and <InlineCode>TruffleArtifactAdapter</InlineCode> for use with the{' '}
<a href="https://truffleframework.com/truffle" target="_blank">
Truffle framework
</a>. You can also write your own and support any artifact format.
</a>
. You can also write your own and support any artifact format.
</p>
<Tabs>