-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EthereumProvider ES6 #2001
EthereumProvider ES6 #2001
Conversation
* @constructor | ||
*/ | ||
constructor(utils, formatters) { | ||
super('eth_getStorageAt', 3, utils, formatters); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe a representation like:
super(
'eth_getStorageAt',
3,
utils,
formatters
);
would improve readability of the models.
You should add the babel conversion process as well. |
Your builds have a JSON error:
|
…rts and exports checked, codestyle improvements
I think babel will not be required because all "ethereum ready" platforms (browsers & node) are supporting es6. (https://kangax.github.io/compat-table/es6/) |
No description provided.