`eth_estimateGas` rpc method should work even if only `data` parameter provided. For instance, ``` const callData = { data: "0xblablabla", } let gas = web3.eth.estimateGas(callData); ```