-
Notifications
You must be signed in to change notification settings - Fork 123
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
generate SSL only coins_config.json #821
Conversation
utils/coins_config_ssl.json also contains non-SSL electrums |
Is this ws_url not wss?
|
It is, everything is WSS, but Maybe we should consolidate the config and only add either TCP or SSL ports to it, not both (if both are available). That would make it easier and also prevent double connections to same electrum server (just different port). |
I've modified it to now generate:
Script now also outputs a summary after completion like
|
utils/coins_config_tcp.json contains both http and https for BEP20 tokens like this (should not contain duplicates)
some electrum servers are duplicated, like for BTX
BTX can't be enabled, shows error
|
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.
duplicate electrums are gone, all coins can be enabled
the duplicate ERC20 and BEP20 entries are fixed here: #824
To avoid SSL warnings / errors in browser, I've tweaked the script to exclude any nodes, electrums or lightwallets which are not using SSL, and add these to a new file called
coins_config_ssl.json
. Web based apps can use this file instead of thecoins_config.json
file which remains complete (excluding non responsive electrums)