-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Feature: Override chain id in network config #3453
Comments
If you want this feature, please let us know what network you are wanting to use |
The VictoriumProject uses "network": 93610431 and (eip155) "chainID": 4388577777 https://github.com/VictoriumProject/go-victorium/blob/master/core/config/mainnet.json |
Hi, any progress on this as we have the same problem with Atheios: |
See also PR #4932 |
Hi guys, any update on this? I want to use the "old" ethereum network with chainid 61 because i dont like the main net. |
#5134 seems to do exactly what I need... Can I do something to help getting it merged? |
We now require the |
Currently we use the rpc response of
net_version
for the EIP155chainId
value when signing all txs.For some chains (e.g. ETC)
net_version
!==chainId
which causes an invalid tx sig for the network.The correct thing to do is introduce an rpc method for querying the chainId.
A workaround is to allow the user to override the chainId in the network settings.
This feature includes:
The text was updated successfully, but these errors were encountered: