the problem is this regex that is used:
|
pattern: "^0x(0|[a-fA-F1-9]+[a-fA-F0-9]*)$" |
so for valid 1559 transactions it fails with:
{"id":1,"error":{"code":-32602,"message":"eth_sendRawTransaction : params[0] should match pattern \"^0x(0|[a-fA-F1-9]+[a-fA-F0-9]*)$\""},"jsonrpc":"2.0"}
the problem is this regex that is used:
in3-server/src/types/rpc.yaml
Line 279 in b9b1f24
so for valid 1559 transactions it fails with:
{"id":1,"error":{"code":-32602,"message":"eth_sendRawTransaction : params[0] should match pattern \"^0x(0|[a-fA-F1-9]+[a-fA-F0-9]*)$\""},"jsonrpc":"2.0"}