Filip Pajic
Filip Pajic
try setting the chainId when instantiating the JsonRpcProvider, `new ethers.providers.JsonRpcProvider("https://api.avax.network/ext/bc/C/rpc", 43114)`
Have you tried setting it on the ethers-multicall provider instance instead? `_multiCallProvider = new Provider(yourJsonRpcProviderInstance, chainId);`
I guess gas estimation should be done explicitly, for me it's failing with `Method eth_maxPriorityFeePerGas not supported`. 1.17.0 works fine, but we should probably make a PR overriding this and...