-
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
Make chainId available in the metamask-inpage-provider #7110
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1f80f3a
Make chainId available in the metamask-inpage-provider
danjm 22326c4
Update metamask-inpage-provider to 2.1.0
danjm a208d5c
Add e2e tests for ethereum.on events
danjm eb8b3d7
Move chainId constants to lib/enums.js
danjm 4b06051
Don't use new chainId enums in createInfuraClient
danjm ea18463
Fix app/scripts/lib/select-chain-id.js
danjm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const standardNetworkId = { | ||
'1': '0x01', | ||
'3': '0x03', | ||
'4': '0x04', | ||
'42': '0x2a', | ||
'5': '0x05', | ||
} | ||
|
||
function selectChainId (metamaskState) { | ||
const { network, provider: { chaindId } } = metamaskState | ||
return standardNetworkId[network] || parseInt(chaindId, 10).toString(16) | ||
Gudahtt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
module.exports = selectChainId |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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? Maybeapp/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 ofparseInt
doesn't add the0x
prefix, nor does it pad single digits.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.
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.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.
Moved to
enums.js
in 16c83e140I'm not going to touch the
0x
prefix for now, and prefer to keep this event consistent withcreateInfuraClient
. I don't want to change that file as there may be downstream dependencies on that format.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.
It was the
0
padding on single-digits that contradicts the EIP, not the0x
prefix. The0x
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 the0
padding on single-digit chain IDs.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.
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.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.
We could do 01f9910bb... and have the event return a different result from the method
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.
I think that's the least bad solution
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.
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.
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.
Yeah seems like this counts as a
quantity
and should therefore be hex prefixed with no0
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 thannetworkId
.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.
Right, that's what I thought the
metamask-inpage-provider
PR was for - the event uponchainId
changing. I've since realized that that event comes from thepublicConfig
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.