mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
Feather-ws rewrite;
- Move recurring tasks into their own class; inherits from `FeatherTask` - CCS proposals: Don't use API, it's broken - webcrawl instead until it is fixed. - Switch to hypercorn as the ASGI server, *with* support for multiple workers. You can now run feather-ws with, for example, `--workers 6`. See `Dockerfile`. - Introduce support for various coins under `BlockheightTask` - Introduce support for various Reddit communities under `RedditTask` - Introduced weightvoting whilst validating third-party RPC blockheights - where nodes are filtered based on what other nodes are commonly reporting. - Current blockheights are fetched from various block explorers and weightvoting is done to eliminate outliers under `BlockheightTask`. - Don't filter/remove bad nodes from the rpc_nodes list; correctly label them as disabled/bad nodes. - Multiple Feather instances (each for it's own coin) can now run on one machine, using only one Redis instance, as each coins has it's own Redis database index. - Configuration options inside `settings.py` can now be controlled via environment variables. - Better logging through custom log formatting and correct usage of `app.logger.*` - Fixed a bug where one task could overlap with itself if the previous one did not finish yet. This was particularly noticable inside the `RPCNodeCheckTask` where the high timeout (for Tor nodes) could cause the task to run *longer* than the recurring task interval. - Introduced a `docker-compose.yml` to combine the Feather container with Redis and Tor containers. - Blocking IO operations are now done via `aiofiles`
This commit is contained in:
parent
cb4087dd25
commit
42bb0c832e
24 changed files with 1250 additions and 671 deletions
|
@ -1,43 +1,63 @@
|
|||
{
|
||||
"mainnet": {
|
||||
"tor": [
|
||||
"fdlnlt5mr5o7lmhg.onion:18081",
|
||||
"xmkwypann4ly64gh.onion:18081",
|
||||
"xmrtolujkxnlinre.onion:18081",
|
||||
"xmrag4hf5xlabmob.onion:18081",
|
||||
"monero26mmldsallmxok2kwamne4ve3mybvvn2yijsvss7ey63hc4yyd.onion:18081",
|
||||
"nrw57zxw5zyevn3i.onion:18081",
|
||||
"monero5sjoz5xmjn.onion:18081",
|
||||
"mxcd4577fldb3ppzy7obmmhnu3tf57gbcbd4qhwr2kxyjj2qi3dnbfqd.onion:18081",
|
||||
"moneroxmrxw44lku6qniyarpwgznpcwml4drq7vb24ppatlcg4kmxpqd.onion:18089",
|
||||
"moneroptqodufzxj.onion:18081",
|
||||
"3hvpnd4xejtzcuowvru2wfjum5wjf7synigm44rrizr3k4v5vzam2bad.onion:18081",
|
||||
"6dsdenp6vjkvqzy4wzsnzn6wixkdzihx3khiumyzieauxuxslmcaeiad.onion:18081",
|
||||
"3t7v5zpcfxq2tocdofdcwxgrldco3elotz3iis4jtbbnscy5alezw7yd.onion:18081"
|
||||
],
|
||||
"clearnet": [
|
||||
"eu-west.node.xmr.pm:18089",
|
||||
"eu-west-2.node.xmr.pm:18089",
|
||||
"usa-east-va.node.xmr.pm:18089",
|
||||
"canada.node.xmr.pm:18089",
|
||||
"singapore.node.xmr.pm:18089",
|
||||
"192.110.160.146:18089",
|
||||
"nodes.hashvault.pro:18081",
|
||||
"node.supportxmr.com:18081",
|
||||
"node.imonero.org:18081",
|
||||
"xmr-node-eu.cakewallet.com:18081",
|
||||
"xmr-node-usa-east.cakewallet.com:18081",
|
||||
"node.xmr.pt:18081",
|
||||
"node.xmr.ru:18081",
|
||||
"xmr-peer-070.cypherpunklabs.com:18081",
|
||||
"xmr.fail:18081"
|
||||
]
|
||||
"xmr": {
|
||||
"mainnet": {
|
||||
"tor": [
|
||||
"fdlnlt5mr5o7lmhg.onion:18081",
|
||||
"xmkwypann4ly64gh.onion:18081",
|
||||
"xmrtolujkxnlinre.onion:18081",
|
||||
"xmrag4hf5xlabmob.onion:18081",
|
||||
"monero26mmldsallmxok2kwamne4ve3mybvvn2yijsvss7ey63hc4yyd.onion:18081",
|
||||
"nrw57zxw5zyevn3i.onion:18081",
|
||||
"monero5sjoz5xmjn.onion:18081",
|
||||
"mxcd4577fldb3ppzy7obmmhnu3tf57gbcbd4qhwr2kxyjj2qi3dnbfqd.onion:18081",
|
||||
"moneroxmrxw44lku6qniyarpwgznpcwml4drq7vb24ppatlcg4kmxpqd.onion:18089",
|
||||
"moneroptqodufzxj.onion:18081",
|
||||
"3hvpnd4xejtzcuowvru2wfjum5wjf7synigm44rrizr3k4v5vzam2bad.onion:18081",
|
||||
"6dsdenp6vjkvqzy4wzsnzn6wixkdzihx3khiumyzieauxuxslmcaeiad.onion:18081",
|
||||
"3t7v5zpcfxq2tocdofdcwxgrldco3elotz3iis4jtbbnscy5alezw7yd.onion:18081"
|
||||
],
|
||||
"clearnet": [
|
||||
"eu-west.node.xmr.pm:18089",
|
||||
"eu-west-2.node.xmr.pm:18089",
|
||||
"usa-east-va.node.xmr.pm:18089",
|
||||
"canada.node.xmr.pm:18089",
|
||||
"singapore.node.xmr.pm:18089",
|
||||
"192.110.160.146:18089",
|
||||
"nodes.hashvault.pro:18081",
|
||||
"node.supportxmr.com:18081",
|
||||
"node.imonero.org:18081",
|
||||
"xmr-node-eu.cakewallet.com:18081",
|
||||
"xmr-node-usa-east.cakewallet.com:18081",
|
||||
"node.xmr.pt:18081",
|
||||
"node.xmr.ru:18081",
|
||||
"xmr-peer-070.cypherpunklabs.com:18081",
|
||||
"xmr.fail:18081"
|
||||
]
|
||||
},
|
||||
"stagenet": {
|
||||
"tor": [],
|
||||
"clearnet": [
|
||||
"run.your.own.node.xmr.pm:38089",
|
||||
"super.fast.node.xmr.pm:38089"
|
||||
]
|
||||
}
|
||||
},
|
||||
"stagenet": {
|
||||
"tor": [],
|
||||
"clearnet": [
|
||||
"run.your.own.node.xmr.pm:38089",
|
||||
"super.fast.node.xmr.pm:38089"
|
||||
]
|
||||
"wow": {
|
||||
"mainnet": {
|
||||
"tor": [
|
||||
"wowbuxx535x4exuexja2xfezpwcyznxkofui4ndjiectj4yuh2xheiid.onion:34568"
|
||||
],
|
||||
"clearnet": [
|
||||
"wow.pwned.systems:34568",
|
||||
"global.wownodes.com:34568",
|
||||
"node.suchwow.xyz:34568",
|
||||
"super.fast.node.xmr.pm:34568",
|
||||
"wowbux.org:34568"
|
||||
]
|
||||
},
|
||||
"stagenet": {
|
||||
"tor": [],
|
||||
"clearnet": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue