Closed ohblue closed 1 month ago
Hello, Your configuration is correct if you want to use a public tron fullnode You should check the tron-shkeeper pod logs
Hi @yukonet , I have same issue for BNB configuration with following yaml.
storageClassName: local-path
#
# BTC and forks
#
btc:
enabled: false
ltc:
enabled: false
doge:
enabled: false
bnb_fullnode:
enabled: false
bnb:
enabled: true
bnb_usdt:
enabled: true
bnb_usdc:
enabled: true
I checked the bnb-shkeeper
pod logs, and it seems like http connection to fullnode is unreachable.
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='bnb', port=8545): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8b102aab80>: Failed to establish a new connection: [Errno -2] Name or service not known'))
I can see bnb url in here
bnb_fullnode:
enabled: false
url: http://bnb:8545
mainnet: true
nodeSelector: {}
tolerations: []
Urls in values.yaml has updated or not working?
Hello,
If you want to use a public node instead of your own fullnode, please check the following link: https://shkeeper.io/kb/use-cases/how-to-use-bnb-with-shkeeper-public-fullnode
Thank you for your reply @yukonet! Above url works for BNB test network too? I used following as values.yaml
#
# BNB
#
bnb_shkeeper:
extraEnv:
LAST_BLOCK_LOCKED: "FALSE"
bnb_fullnode:
enabled: false
mainnet: false
url: https://data-seed-prebsc-1-s3.binance.org:8545/
bnb:
enabled: true
bnb_usdt:
enabled: true
bnb_usdc:
enabled: true
But as time go by, Server
gets Sync In Progress (99 blocks behind)
I tried every test nodes here, but its same.
Your values.yaml looks correct You can check the bnb-shkeeper logs to find the cause of the problem
Hello, Your configuration is correct if you want to use a public tron fullnode You should check the tron-shkeeper pod logs
I have the same problem and I get on the log this exception app.exceptions.NoServerSet: Current server is not set.
.
This is my yaml config
#
# TRON
#
tron_fullnode:
enabled: false
url: http://fullnode.tron.shkeeper.io
trx:
enabled: true
usdt:
enabled: true
usdc:
enabled: true
@yukonet
I solved it by adding mainnet: true
like below
#
# TRON
#
tron_fullnode:
enabled: false
mainnet: true
url: http://fullnode.tron.shkeeper.io
trx:
enabled: true
usdt:
enabled: true
usdc:
enabled: true
I am experiencing an issue where the server status for TRON shows as offline. Below are the contents of my configuration file:
As shown, the tron_fullnode is currently set to enabled: false, which I suspect might be related to why the server appears offline. Could this setting be causing the issue, or should I be looking at other potential causes? Any guidance on how to resolve this problem would be greatly appreciated. Thank you for your assistance.