Skip to main content
POST
/
batch_transactions
cURL
curl --request POST \
  --url https://beta.rocketfi.io/batch_transactions \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "data": {
      "instruction": {
        "Mint": {
          "amount": "<string>",
          "asset_id": 1,
          "to": "<string>"
        }
      },
      "nonce": 1,
      "sender": "<string>"
    },
    "serializationFormat": "JSON",
    "signature": "<string>",
    "signatureScheme": "EIP191"
  }
]
'
"<string>"

Body

application/json
data
object
required
serializationFormat
enum<string>
required
Available options:
JSON,
MessagePack
signature
string<hex>
required
signatureScheme
enum<string>

Signature scheme used for this transaction (defaults to EIP-191 for compatibility).

Available options:
EIP191,
EIP712

Response

200 - text/plain

Batch submitted

The response is of type string.