aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-profiler
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2019-01-10 18:21:05 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2019-01-10 18:21:05 +0800
commit7ae9e79235ed3b7eb110b0a1e88338b3965f44da (patch)
tree5339e9548142eb6ec3e7a7e4288cb5e5b1a582cc /packages/sol-profiler
parent15c9479ebeca57e7c275cd2e73ca3daad03a412f (diff)
downloaddexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar.gz
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar.bz2
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar.lz
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar.xz
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.tar.zst
dexon-sol-tools-7ae9e79235ed3b7eb110b0a1e88338b3965f44da.zip
Rename sol-trace-based-tools-common to sol-tracing-utils
Diffstat (limited to 'packages/sol-profiler')
-rw-r--r--packages/sol-profiler/CHANGELOG.json2
-rw-r--r--packages/sol-profiler/package.json2
-rw-r--r--packages/sol-profiler/src/index.ts2
-rw-r--r--packages/sol-profiler/src/profiler_subprovider.ts2
4 files changed, 4 insertions, 4 deletions
diff --git a/packages/sol-profiler/CHANGELOG.json b/packages/sol-profiler/CHANGELOG.json
index 938fa97a0..c650a4a4b 100644
--- a/packages/sol-profiler/CHANGELOG.json
+++ b/packages/sol-profiler/CHANGELOG.json
@@ -4,7 +4,7 @@
"changes": [
{
"note":
- "Initial release as a separate package. For historical entries see @0x/sol-trace-based-tools-common",
+ "Initial release as a separate package. For historical entries see @0x/sol-tracing-utils",
"pr": 1492
}
]
diff --git a/packages/sol-profiler/package.json b/packages/sol-profiler/package.json
index 03b421b0e..b85c82ed2 100644
--- a/packages/sol-profiler/package.json
+++ b/packages/sol-profiler/package.json
@@ -31,7 +31,7 @@
"dependencies": {
"@0x/subproviders": "^2.1.8",
"@0x/typescript-typings": "^3.0.6",
- "@0x/sol-trace-based-tools-common": "^2.1.16",
+ "@0x/sol-tracing-utils": "^2.1.16",
"ethereum-types": "^1.1.4",
"lodash": "^4.17.5"
},
diff --git a/packages/sol-profiler/src/index.ts b/packages/sol-profiler/src/index.ts
index b36ed5baa..5d4806be4 100644
--- a/packages/sol-profiler/src/index.ts
+++ b/packages/sol-profiler/src/index.ts
@@ -3,7 +3,7 @@ export {
SolCompilerArtifactAdapter,
TruffleArtifactAdapter,
ContractData,
-} from '@0x/sol-trace-based-tools-common';
+} from '@0x/sol-tracing-utils';
// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
export { ProfilerSubprovider } from './profiler_subprovider';
diff --git a/packages/sol-profiler/src/profiler_subprovider.ts b/packages/sol-profiler/src/profiler_subprovider.ts
index 61dc25b6b..c3ed13ea5 100644
--- a/packages/sol-profiler/src/profiler_subprovider.ts
+++ b/packages/sol-profiler/src/profiler_subprovider.ts
@@ -12,7 +12,7 @@ import {
TraceInfo,
TraceInfoSubprovider,
utils,
-} from '@0x/sol-trace-based-tools-common';
+} from '@0x/sol-tracing-utils';
/**
* This class implements the [web3-provider-engine](https://github.com/MetaMask/provider-engine) subprovider interface.