Skip to content

Commit

Permalink
Merge 134b34c into 27c9679
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Dec 23, 2020
2 parents 27c9679 + 134b34c commit 0c60310
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/web3-providers-http/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface HttpProviderOptions {
keepAlive?: boolean;
}

export class HttpProvider extends HttpProviderBase {
export default class HttpProvider extends HttpProviderBase {
host: string;

withCredentials: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

import * as http from 'http';
import * as https from 'https';
import { HttpProvider } from 'web3-providers';
import { JsonRpcResponse } from 'web3-core-helpers';
import HttpProvider from 'web3-providers-http';

const httpProvider = new HttpProvider('http://localhost:8545', {
timeout: 20000,
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-providers-http/types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"allowSyntheticDefaultImports": false,
"baseUrl": ".",
"paths": {
"web3-providers": ["."]
"web3-providers-http": ["."]
}
}
}
2 changes: 1 addition & 1 deletion packages/web3-providers-ipc/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

import { IpcProviderBase } from 'web3-core-helpers';

export class IpcProvider extends IpcProviderBase { }
export default class IpcProvider extends IpcProviderBase { }
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
*/

import * as net from 'net';
import { IpcProvider } from 'web3-providers';
import { JsonRpcResponse } from 'web3-core-helpers';
import IpcProvider from 'web3-providers-ipc';

const ipcProvider = new IpcProvider(
'/Users/myuser/Library/Ethereum/geth.ipc',
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-providers-ipc/types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"allowSyntheticDefaultImports": false,
"baseUrl": ".",
"paths": {
"web3-providers": ["."]
"web3-providers-ipc": ["."]
}
}
}
2 changes: 1 addition & 1 deletion packages/web3-providers-ws/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

import { WebsocketProviderBase } from 'web3-core-helpers';

export class WebsocketProvider extends WebsocketProviderBase { }
export default class WebsocketProvider extends WebsocketProviderBase { }
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/

import { WebsocketProviderOptions, JsonRpcResponse } from 'web3-core-helpers';
import { WebsocketProvider } from 'web3-providers';
import WebsocketProvider from 'web3-providers-ws';

const options: WebsocketProviderOptions = {
timeout: 30000,
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-providers-ws/types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"allowSyntheticDefaultImports": false,
"baseUrl": ".",
"paths": {
"web3-providers": ["."]
"web3-providers-ws": ["."]
}
}
}

0 comments on commit 0c60310

Please sign in to comment.