Hey there,
I am currently signing a trnsaction using eth_sign. It works with eth_sign but I wanna use personal_sign instead. When I do that it doesnt work.
Old that works:
await web3.eth.sign(rawHash, walletAddress)
New that doesnt work
await web3.eth.personal.sign(rawHash, walletAddress)
Error when using personal sign:
MetaMask - RPC Error: insufficient funds for gas * price + value
Why is that ?