Open barryz opened 2 years ago
This is expected. If you start the guardian node from a snapshot, blocks/transactions before the snapshot height won't be available. Thanks.
This is expected. If you start the guardian node from a snapshot, blocks/transactions before the snapshot height won't be available. Thanks.
The only way I can do was to sync from scratch. And the sync process seems too slow. How can I speed up the sync?
Got it, thanks. May I ask what are your use cases that require syncing from the genesis?
Got it, thanks. May I ask what are your use cases that require syncing from the genesis?
We would like to integrate with the theta EVM chain so that users can get access to the historical state of the contract (or price of token).
Our website is https://debank.com
I see. Syncing from genesis could take a while. We can look into improve the syncing speed in the future. But if you are OK just going back to a certain height, you can download the latest snapshot before that height from the following link:
http://mainnet-data.thetatoken.org/snapshot?height=HEIGHT
For example: http://mainnet-data.thetatoken.org/snapshot?height=14230301
BTW, if you switch to anther snapshot, you wound need to delete the db
folder under your config folder before restarting the Theta node.
Hello, how can i sync theta node from genesis? Everytime i start the service it looks for snapshot file. I need to have full transactions and log history on my node. Thanks in advance
After the guardian node and RPC-adaptor are deployed. I tried to call
eth_getBlockByNumber
via RPC-adaptor. When I call the latest block number, it's fine:When I call the very first block number
0x1
. It looks like something is wrong:PS: I followed this doc to build and deploy rpc-adaptor and Theta guardian node.