Mo ShakeG
Mo ShakeG
@kuzdogan sure the contracts are on avalanche c-chain(chainId 43114). I've verified them on the https://snowtrace.io/ explorer. ICHIVaultFactory: 0xDD2346e0dA9540792C2F2E86016bc44Ba39DC72d UV3Math: 0x921aCCA39e8D3519A503EE4A11b56d6eEACbb2Aa ICHIVaultDeployer: 0xf3145E8Cd87E94B65cF5Ba336292d557aD380e5B
Hey @kuzdogan I just wanted to follow up on the progress of this issue. Sourcify is basically not functional at least whenever I try to use it.
@kuzdogan thanks, it seems to be much better now.
This [tx](https://explorer.zksync.io/tx/0x423cb497f52f5fa40b850f3b83d0c04c184cd92b55a44d84c1bd22aca31096ea) is a more extreme example of the `Panic` issue, the tx failed despite having way more than the required gas. ```shell curl https://mainnet.era.zksync.io \ -X POST \ -H...
@cl3pl4t3 can you elaborate? what do you mean by `add an input`?
Hi @perekopskiy > Why do you think that there was enough gas for execution? gas_used < gas_limit is not a strong evidence as some gas is refunded. On all other...
@perekopskiy I see, what is the max gas refund percentage, on Ethereum mainnet it's 50%.
@perekopskiy does gas estimation work internally? i.e. if I'm estimating gas for calls using a static `eth_call` to [multicall](https://github.com/Uniswap/v3-periphery/blob/697c2474757ea89fec12a4e6db16a574fe259610/contracts/lens/UniswapInterfaceMulticall.sol#L27), will that return the same gas estimation for `eth_estimateGas`, or does...
@perekopskiy so to estimate gas instead of using `eth_estimateGas` I'm using an static call(i.e. `eth_call`) to the [multicall](https://github.com/Uniswap/v3-periphery/blob/697c2474757ea89fec12a4e6db16a574fe259610/contracts/lens/UniswapInterfaceMulticall.sol#L27), and for each `Call` I am specifying a high `gasLimit` say `10m`...
@perekopskiy hmm, could you please elaborate on the cases where they will differ much?