curl --request POST \
--url https://rpc.etherspot.io/v1/137/ \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_estimateUserOperationGas",
"params": [
{
"sender": "<string>",
"nonce": "<string>",
"initCode": "<string>",
"callData": "<string>",
"paymasterAndData": "<string>",
"callGasLimit": "<string>",
"verificationGasLimit": "<string>",
"preVerificationGas": "<string>",
"maxPriorityFeePerGas": "<string>",
"maxFeePerGas": "<string>",
"signature": "<string>"
}
],
"id": 123
}
'