cgewecke
cgewecke
Thanks for this suggestion @k06a! Unfortunately there are performance drawbacks to `debug_traceTransaction` since there's so much data and no way to filter it as part of the request. In some...
> what do you think about Parity Trace Module I've never used it tbh ... do you know of an example output with subtraces? It's hard to see exactly what's...
@k06a Oh wow, that's really cool... I wonder if this might be easiest to use as it's own utility, for cases where a detailed analysis is helpful. ``` truffle run...
Yes, good idea! Coinmarketcap's [free tier][3] is 10K requests a month... are you burning through these? If so, another possibility could be to fall back on coinpaprika, an [apparently un-gated,...
Hi @adlerjohn, thanks for suggesting. Could you explain this idea a bit more? How would excluding the 21000 make analysis more meaningful?
Hi @cruzdanilo, thanks for opening. Recently merged work to support asynchronous data collection for BuidlerEVM in #222 and I think it should be pretty straightforward to extend that for ganache-core....
Hi @andreafspeziale, thanks very kind of you. Yes I think this is a limitation of the way the reporter works. As the tests run it fetches the executed transactions from...
@Freydal Sweet, great idea. Very interested in moving in this direction and there's been recent work here to generalize compilation artifact handling and make the tool truffle-neutral. Couple questions... +...
Thanks for the profiler review. Just found 0x's [metacoin](https://github.com/0xProject/0x-monorepo/tree/development/packages/metacoin) example project and think that should suffice. I will try to get this working, publish it in the next patch and...
Just leaving some notes here... ### Artifact format ```javascript // In lib/artifactor.js have something like... _0xArtifactor(contractName){ const contract = {}; const artifact = require(`./artifacts/${contractName}.json`); contract.abi = artifact.compilerOutput.abi; contract.bytecode = artifact.compilerOutput.evm.bytecode.object;...