Merge pull request #902 from 0xProject/feature/web3-wrapper/unexport-marshaller

Stop exporting marshaller from web3-wrapper
This commit is contained in:
Francesco Agosti
2018-07-25 16:32:04 -07:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import { marshaller, Web3Wrapper } from '@0xproject/web3-wrapper';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import { marshaller } from '@0xproject/web3-wrapper/src/marshaller';
import { JSONRPCRequestPayload, Provider } from 'ethereum-types';
import { Callback, ErrorCallback } from '../types';

View File

@@ -21,6 +21,10 @@
"timestamp": 1532043000,
"version": "1.0.0",
"changes": [
{
"note": "Stop exporting `marshaller` utility file.",
"pr": 902
},
{
"note": "Export `marshaller` utility file.",
"pr": 829

View File

@@ -1,3 +1,2 @@
export { Web3Wrapper } from './web3_wrapper';
export { Web3WrapperErrors, NodeType } from './types';
export { marshaller } from './marshaller';