Skip to content
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

Make chainId available in the metamask-inpage-provider #7110

Merged
merged 6 commits into from
Sep 10, 2019

Conversation

danjm
Copy link
Contributor

@danjm danjm commented Sep 5, 2019

This PR makes the current chainId available on the public state of the inpage provider.

Together, this PR and MetaMask/providers#6 resolve #6885

@metamaskbot
Copy link
Collaborator

Builds ready [1f80f3a]: chrome, firefox, edge, opera

@@ -0,0 +1,14 @@
const standardNetworkId = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting - these seem to be hard-coded into app/scripts/controllers/network/createInfuraClient.js as well. Could be move them out into a shared location? Maybe app/scripts/lib/enums.js perhaps.

I don't know much about these ids - is there a reason the single-digit ids are padded with a zero? Do they all need the 0x prefix? I noticed that the fallback of parseInt doesn't add the 0x prefix, nor does it pad single digits.

Copy link
Member

@Gudahtt Gudahtt Sep 9, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The EIP doesn't seem to mention anything about padding with 0 😕 The other example implementations don't seem to do that either.

I realize this was already done in createInfuraClient, but I don't understand why.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to enums.js in 16c83e140

I'm not going to touch the 0x prefix for now, and prefer to keep this event consistent with createInfuraClient. I don't want to change that file as there may be downstream dependencies on that format.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was the 0 padding on single-digits that contradicts the EIP, not the 0x prefix. The 0x prefix is correct (according to the EIP), it was just missing on the fallback. Sorry for the confusion - I should have made separate comments.

If I'm not mistaken, it looks like you've removed both the 0x prefix and the 0 padding on single-digit chain IDs.

Copy link
Member

@Gudahtt Gudahtt Sep 9, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to be clear, I do think that this is supposed to return a string that is prefixed with 0x.

My interpretation of the EIP is that left-padding single-digit numbers with a single zero is not correct (though I'm not super confident in this). I'm guessing that we'd be better off not doing this, but I don't know what the implications would be of changing the behavior of createInfuraClient. I am concerned that that change would break things, but I'm equally concerned that adding the padding to a new public API would contradict the behavior of other wallets and the expectations of dapps.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could do 01f9910bb... and have the event return a different result from the method

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that's the least bad solution

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, maybe so. I'm not sure exactly how this new public API would be used, so I'm not sure whether it'd ever be assumed to match the result from the middleware.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah seems like this counts as a quantity and should therefore be hex prefixed with no 0 padding.

This API would be used for sites to detect a network change. chainId is used for transaction security, so it's much more meaningful to watch for changes than networkId.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, that's what I thought the metamask-inpage-provider PR was for - the event upon chainId changing. I've since realized that that event comes from the publicConfig stream being updated here, so it all makes sense now.

I'm still not sure what we should do about the createInfuraClient middleware, but after learning a bit more about it, I at least don't think it'll conflict with this.

@Gudahtt Gudahtt mentioned this pull request Sep 9, 2019
@Gudahtt
Copy link
Member

Gudahtt commented Sep 9, 2019

I guess we should bump metamask-inpage-provider in this PR as well.

@danjm danjm requested a review from whymarrh as a code owner September 9, 2019 18:50
@danjm
Copy link
Contributor Author

danjm commented Sep 9, 2019

Versison bumped in 22326c4

And e2e test added in a208d5c

@danjm danjm force-pushed the chain-id-inpage-provider branch 2 times, most recently from 9344d46 to 706c60b Compare September 9, 2019 19:43
Copy link
Contributor

@danfinlay danfinlay left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like it should work right to me.

@metamaskbot
Copy link
Collaborator

Builds ready [ea18463]: chrome, firefox, edge, opera

@danjm danjm merged commit 7af902e into develop Sep 10, 2019
@whymarrh whymarrh deleted the chain-id-inpage-provider branch September 10, 2019 13:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add chainId event
4 participants