Open skyline9981 opened 7 months ago
The README command is correct, but some nodes require EIP-155 which means the transaction must be signed over chain ID for replay protection. The readme's transaction is intentionally not signed over chain ID because we want it to be replayable across chains, but I will more clearly document this and what the error means
Thank you for responding, but I'm wondering how I can deploy the contract on chains that require me to sign over the chain ID by myself. (Just for learning)
You can either run your own node for that chain that does not enforce EIP-155 (AllowUnprotectedTxs flag in geth), or someone with the private key (e.g. me for multicall3) needs to sign and send a new transaction that does sign over chain ID
@mds1 Hi, we are trying to deploy multicall3 on Xterio Chain which is an op gaming rollup. Since the chain is based on the standard OP Stack, which does not provide any configuration to not enforce EIP-155, so we cannot go the first route.
Could you please sign the deployment transaction with gas price of 10 Gwei and these following chain IDs? Testnet Chain ID: 1637450 Mainnet Chain ID: 112358
Thank you!
Issue: only replay-protected (EIP-155) transactions allowed over RPC
When I tried to deploy the contract on zircuit testnet (chian id: 48899) by myself, I use this command in readme.
But I got this error:
I am not sure whether the command in readme is still working.