diff options
Diffstat (limited to 'packages/subproviders')
-rw-r--r-- | packages/subproviders/README.md | 8 | ||||
-rw-r--r-- | packages/subproviders/package.json | 4 | ||||
-rw-r--r-- | packages/subproviders/src/subproviders/ganache.ts | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/packages/subproviders/README.md b/packages/subproviders/README.md index b0d77284b..1ba4ff06c 100644 --- a/packages/subproviders/README.md +++ b/packages/subproviders/README.md @@ -1,4 +1,4 @@ -## @0x/subproviders +## @dexon-foundation/subproviders A few useful web3 subproviders including a LedgerSubprovider useful for adding Ledger Nano S support. @@ -9,7 +9,7 @@ We have written up a [Wiki](https://0xproject.com/wiki#Web3-Provider-Examples) a ## Installation ``` -yarn add @0x/subproviders +yarn add @dexon-foundation/subproviders ``` If your project is in [TypeScript](https://www.typescriptlang.org/), add the following to your `tsconfig.json`: @@ -45,13 +45,13 @@ yarn install To build this package and all other monorepo packages that it depends on, run the following from the monorepo root directory: ```bash -PKG=@0x/subproviders yarn build +PKG=@dexon-foundation/subproviders yarn build ``` Or continuously rebuild on change: ```bash -PKG=@0x/subproviders yarn watch +PKG=@dexon-foundation/subproviders yarn watch ``` ### Clean diff --git a/packages/subproviders/package.json b/packages/subproviders/package.json index b54cc11db..2e7cdc085 100644 --- a/packages/subproviders/package.json +++ b/packages/subproviders/package.json @@ -1,5 +1,5 @@ { - "name": "@0x/subproviders", + "name": "@dexon-foundation/subproviders", "version": "2.1.11", "engines": { "node": ">=6.12" @@ -34,6 +34,7 @@ "@0x/typescript-typings": "^3.0.8", "@0x/utils": "^3.0.1", "@0x/web3-wrapper": "^3.2.4", + "@dexon-foundation/ganache-core": "^2.3.2", "@ledgerhq/hw-app-eth": "^4.3.0", "@ledgerhq/hw-transport-u2f": "4.24.0", "@types/eth-lightwallet": "^3.0.0", @@ -46,7 +47,6 @@ "ethereum-types": "^1.1.6", "ethereumjs-tx": "^1.3.5", "ethereumjs-util": "^5.1.1", - "ganache-core": "^2.3.3", "hdkey": "^0.7.1", "json-rpc-error": "2.0.0", "lodash": "^4.17.5", diff --git a/packages/subproviders/src/subproviders/ganache.ts b/packages/subproviders/src/subproviders/ganache.ts index 2b8544f8b..f42d6deac 100644 --- a/packages/subproviders/src/subproviders/ganache.ts +++ b/packages/subproviders/src/subproviders/ganache.ts @@ -1,5 +1,5 @@ import { JSONRPCRequestPayload, Provider } from 'ethereum-types'; -import * as Ganache from 'ganache-core'; +import * as Ganache from '@dexon-foundation/ganache-core'; import { Callback, ErrorCallback } from '../types'; |