Skip to main content

Parameters

chainId
string
default:"43113"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"platform.issueTx"
required
JSON-RPC method name.
params
object
required
Parameters for platform.issueTx:
  • params.tx: The serialized transaction bytes, typically hex-encoded and prefixed with 0x.
  • params.encoding: The encoding format of the transaction. Can only be “hex” when provided.

Returns

result
object
The JSON-RPC result.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=43113 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "platform.issueTx",
    "params": {}
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {}
}