Thomas Jay Rush
Thomas Jay Rush
This should be very simple -- just don't download for chunks prior to what the user specified. The index would just be incomplete - - but that's what the user...
See the abi generated by foundry here: https://github.com/TrueBlocks/trueblocks-unchained/blob/main/out/unchained.sol/UnchainedIndex.json. This format is probably pretty standard. If you copy that file to a local folder, and rename it to the same as...
See this now closed issue: https://github.com/TrueBlocks/trueblocks-core/issues/1997#issuecomment-1141296314. We can add something to the docs.
It should do two things it doesn't do: 1) reconcile tokens 2) cache the results to `./cache//recons`
Do this: ``` cd ../src/apps/chifra go run --race main.go abis --find 0x12345677 ``` shows a data race.
Should also clear the cache of any transactions, logs, traces, reconciliations, or otherwise in the cache.
Go here: https://quickblocks.io/ Should re-direct to here: https://trueblocks.io
Run this command from the `./build` folder: ``` grep "^var" ../src/**/*.go | grep -v unchained | grep -v _test | grep -v cobra | grep -v options ``` This shows...
One user (thanks Matt!) pointed to a very common use case: Give me all the events with topic emitted by address He uses ethers.js and it returns the query very...
In order to add or edit names I use this terrible shell script: ``` #!/usr/bin/env bash # addName - adds a name to the names database defSource="Etherscan" defDecimals="" ADDRESS=$1 echo...