aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/parsers
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-10-19 04:44:09 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:12:36 +0800
commit4912affbe81876a00a90c4266f38b22b4018c05f (patch)
treef18f02080621c0ee0bccc744f44dd9e553abbcf2 /packages/pipeline/src/parsers
parentc52ab47185f3d3a808e0490440d01e21fef61e06 (diff)
downloaddexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar.gz
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar.bz2
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar.lz
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar.xz
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.tar.zst
dexon-sol-tools-4912affbe81876a00a90c4266f38b22b4018c05f.zip
Update pipeline to use new @0x npm org for imports
Diffstat (limited to 'packages/pipeline/src/parsers')
-rw-r--r--packages/pipeline/src/parsers/events/index.ts6
-rw-r--r--packages/pipeline/src/parsers/sra_orders/index.ts6
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/pipeline/src/parsers/events/index.ts b/packages/pipeline/src/parsers/events/index.ts
index 66f382dda..b9b4d02cb 100644
--- a/packages/pipeline/src/parsers/events/index.ts
+++ b/packages/pipeline/src/parsers/events/index.ts
@@ -3,9 +3,9 @@ import {
ExchangeCancelUpToEventArgs,
ExchangeEventArgs,
ExchangeFillEventArgs,
-} from '@0xproject/contract-wrappers';
-import { assetDataUtils } from '@0xproject/order-utils';
-import { AssetProxyId, ERC721AssetData } from '@0xproject/types';
+} from '@0x/contract-wrappers';
+import { assetDataUtils } from '@0x/order-utils';
+import { AssetProxyId, ERC721AssetData } from '@0x/types';
import { LogWithDecodedArgs } from 'ethereum-types';
import * as R from 'ramda';
diff --git a/packages/pipeline/src/parsers/sra_orders/index.ts b/packages/pipeline/src/parsers/sra_orders/index.ts
index fb2b74dfe..39c222afd 100644
--- a/packages/pipeline/src/parsers/sra_orders/index.ts
+++ b/packages/pipeline/src/parsers/sra_orders/index.ts
@@ -1,6 +1,6 @@
-import { APIOrder, OrdersResponse } from '@0xproject/connect';
-import { assetDataUtils, orderHashUtils } from '@0xproject/order-utils';
-import { AssetProxyId, ERC721AssetData } from '@0xproject/types';
+import { APIOrder, OrdersResponse } from '@0x/connect';
+import { assetDataUtils, orderHashUtils } from '@0x/order-utils';
+import { AssetProxyId, ERC721AssetData } from '@0x/types';
import * as R from 'ramda';
import { SraOrder } from '../../entities/SraOrder';