Results 84 comments of Tanmay

@lumtis I don't think this is still relevant , should we close it ? ``` gasLimit := event.CallOptions.GasLimit.Uint64() if gasLimit == 0 { gasLimit = gasLimitQueried.Uint64() } ``` the gasLimitQueried...

The distributions module might be the most impacted since we create new allocations every block. But I don't think there is anything we can do since it's an external module....

The PR for enabling is ready to be merged, but I think we should consider enabling the contracts one by one , in the order of Prototype -> Bank ->...

We don't have an on-chain parameter to toggle individual contracts. The contracts are in the state when starting the `node` application, so we need to upgrade to add new contracts....

Is this still needed , I belive we have most of the data neeed to monitor status of valdiators during upgrade @lumtis @CharlieMc0 , if ther3 are any specific metrics...

THe voting power can be fetched in two ways - Lastblock: fetch who voted in the last block and add metrics for that. I don't think this is useful for...

@CharlieMc0 @morde08 , I am marking this as closed , the comet bft metrics would be the best place to monitor block production which we are already doing

Presently , the full-node is 27 gb where as the archive is 3.5 tb Posting the analysis for the full node here ![image](https://github.com/user-attachments/assets/1c769efc-9cdc-4e29-9c01-d8e2d9976fc3) I have not been able to run...

The parts of this data that we can consider cleaning up are Observer : Ballots We can clean up matured ballots easily : https://github.com/zeta-chain/node/issues/942 Crosschain : CCTX We should be...

> at is the difference between average and total value size? The avg is just total /divided by the count, the 0 is just because of using integer and the...