Thomas Jay Rush
Thomas Jay Rush
We are very close to finishing the multi-chain-11 branch. When that’s finished it will merge into develop and then master. Once that happens, we’re going to call ourselves beta. I...
Can you run through this migration? https://github.com/TrueBlocks/trueblocks-core/blob/multi-chain-11/src/other/migrations/README-v0.25.0.md > On Feb 19, 2022, at 7:23 PM, Chase ***@***.***> wrote: > > > I think in the multi-chain-11 it's even more messed...
This is fixed in the latest "official" docker version
Copy of a conversation on Discord: **_And a second question, if I'm querying a large number of addresses, would the query execute faster if I use 1 instance of chifra...
I have a question: Does the speed of the system once cached improve? I would think it's very significantly faster. This is a direct result of us wanting to build...
First thing: `--unripe` will not produce any results -- it's currently not implemented. Second, I assume you're running the scraper: `chifra scrape run`. Are you adding any other command line...
@dszlachta This one is pretty simple, I think. The basic idea is that our `pkg` folder can be pushed to the GoLang documentation site every time we merge into master....
Help me better understand. Do you think this is true? 1) For the ETH statements, the "counterparty" is always the 'from' to the 'to' or the 'to' to the 'from'?...
If a user is running against Geth, we can't get the information we need. This is because we need 'parity tracing' which Geth does not provide. If you see this...
**ethers.js code:** ``` const pairCreatedAbi = ["event PairCreated(address indexed token0, address indexed token1, address pair, uint)"]; const provider = new JsonRpcProvider(process.env.ETH_RPC_URL); const factory = new Contract(UNISWAP_V2_FACTORY_ADDRESS, pairCreatedAbi, provider); const pairCreatedFilter...