aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/md/docs/sol_cov/1/usage.md
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-12-15 06:46:05 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-12-15 06:46:05 +0800
commit51b1cab72a80b8ef05038ecf392d9c72b8d4294e (patch)
treed1e777a68730a323f3fa3e873f5a15bad6cdbf59 /packages/website/md/docs/sol_cov/1/usage.md
parente3dcb7107bdd7bd8197818a05b163985026f7ca2 (diff)
downloaddexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar.gz
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar.bz2
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar.lz
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar.xz
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.tar.zst
dexon-sol-tools-51b1cab72a80b8ef05038ecf392d9c72b8d4294e.zip
fix(website) replace 0xproject.com with 0x.org
Diffstat (limited to 'packages/website/md/docs/sol_cov/1/usage.md')
-rw-r--r--packages/website/md/docs/sol_cov/1/usage.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/md/docs/sol_cov/1/usage.md b/packages/website/md/docs/sol_cov/1/usage.md
index c747005fb..c2b8404af 100644
--- a/packages/website/md/docs/sol_cov/1/usage.md
+++ b/packages/website/md/docs/sol_cov/1/usage.md
@@ -1,4 +1,4 @@
-Sol-cov uses transaction traces in order to figure out which lines of Solidity source code have been covered by your tests. In order for it to gather these traces, you must add the `CoverageSubprovider` to the [ProviderEngine](https://github.com/MetaMask/provider-engine) instance you use when running your Solidity tests. If you're unfamiliar with ProviderEngine, please read the [Web3 Provider explained](https://0xproject.com/wiki#Web3-Provider-Explained) wiki article.
+Sol-cov uses transaction traces in order to figure out which lines of Solidity source code have been covered by your tests. In order for it to gather these traces, you must add the `CoverageSubprovider` to the [ProviderEngine](https://github.com/MetaMask/provider-engine) instance you use when running your Solidity tests. If you're unfamiliar with ProviderEngine, please read the [Web3 Provider explained](https://0x.org/wiki#Web3-Provider-Explained) wiki article.
The CoverageSubprovider eavesdrops on the `eth_sendTransaction` and `eth_call` RPC calls and collects traces after each call using `debug_traceTransaction`. `eth_call`'s' don't generate traces - so we take a snapshot, re-submit it as a transaction, get the trace and then revert the snapshot.
@@ -8,7 +8,7 @@ In order to use `CoverageSubprovider` with your favorite framework you need to p
### Sol-compiler
-If you are generating your artifacts with [@0xproject/sol-compiler](https://0xproject.com/docs/sol-compiler) you can use the `SolCompilerArtifactsAdapter` we've implemented for you.
+If you are generating your artifacts with [@0xproject/sol-compiler](https://0x.org/docs/sol-compiler) you can use the `SolCompilerArtifactsAdapter` we've implemented for you.
```typescript
import { SolCompilerArtifactsAdapter } from '@0xproject/sol-cov';