-
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
optional chainId (extracted from #4932) #5134
optional chainId (extracted from #4932) #5134
Conversation
dbc1d05
to
1072aa9
Compare
:D 🕺 |
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.
Much better, thanks 👍
1072aa9
to
9a82a5d
Compare
rebased and fixed defaultValue bug. |
9a82a5d
to
4102a95
Compare
@buhrmi any suggestions are welcome 😃 |
4102a95
to
e722092
Compare
@hackmod well first of all the failing test needs to be fixed :p |
@buhrmi // test-e2e-fireforx fail is random. I think its circleci fault. |
e722092
to
ea31a91
Compare
I've just tested it. I was able to deploy and interact with a contract on the classic network within remix. Seems to work fine and good to go :) |
Launched a contract using reminx and the public https://node.expanse.tech node with chain_id 2 perfectly fine. |
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.
When merge?
Hi @hackmod @eosclassicteam, thanks again for your patience with this. We appreciate your work and want to make sure it lands with the appropriate implementation that makes it useable and minimally disruptive. After chatting with the team, here's what we think makes sense: UI
Functionality
Future improvements
Does this spec make sense? Sorry we haven't communicated these needs clearly until now, and thanks for bearing with us as we work through this together. I'll do my best to keep this top of mind for the team until we have something merged. And thank you for all your work! (cc @danfinlay) |
@bdresser // thank you for your support :) |
ea31a91
to
e57f530
Compare
16b1a65
to
660e21e
Compare
7cb8d17
to
aa4d0df
Compare
cd73ac4
to
99acde4
Compare
@hackmod I've added a few commits to this PR that we think help the implementation be a bit more generic. I think the commits speak for themselves but let me know if you they don't make sense. The gist of the changes are 1) As-is, this looks good changes-wise. @estebanmino had pointed out some issues with the login above that I think still persist with these changes (maybe with the RPC URL you shared in the OP). Do you have a suggested set of RPC information we can use to do a proper QA pass? I'm seeing a lot of connection issues when using information you've shared so far. |
about @whymarrh comments, I tried it out and I don't have found any issue as the one I mentioned before, for me seems that is working both with local ganache-cli and the information provided, when/where are you having those issues?. I agree that it would be very useful to have more RPC information. |
const { eventKey, value, timestamp } = activity | ||
const ethValue = index === 0 | ||
? `${getValueFromWeiHex({ | ||
value, | ||
toCurrency: ETH, | ||
nativeCurrency, |
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.
Whoops, this should be fromCurrency: nativeCurrency
})} ${ETH}` | ||
: getEthConversionFromWeiHex({ value, toCurrency: ETH, conversionRate }) | ||
})} ${nativeCurrency}` | ||
: getEthConversionFromWeiHex({ value, nativeCurrency, toCurrency: nativeCurrency, conversionRate }) |
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.
Whoops, this should be fromCurrency: nativeCurrency
They're intermittent so I believe they're related to the network connectivity of the added RPC URL. I'm cool with the state of this PR as that's up to what the user adds as their desired network. |
@hackmod thanks again for all the work you put into this! |
@whymarrh I run the ethereumclassic.network RPC, what issues are you seeing? Intermittent connectivity problems or any specific errors? |
How to rename custom network after creation? |
@pyskell I can't remember (sorry!) but I do use that for testing and I'll be sure to mention anything that I run into @filips123 remove and re-add is the only option right now |
from #4932
Description
This PR separates all other stuff except optional chainid support.
Done
See also
Screen shot