Jito Labs · JSON Structure

Jito Bundle Structure

JSON Structure representation of an atomic Jito bundle with required transactions array (max 5), encoding choice, tip account, and tip amount.

Type: object Properties: 4 Required: 1
SolanaMEVBlock EngineBundlesLiquid StakingJitoSOLRestakingJTODAOValidatorSearcherShredStreamCryptoDeFi

Jito Bundle Structure is a JSON Structure definition published by Jito Labs, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/structure meta-schema.

Properties

transactions encoding tipAccount tipLamports

Meta-schema: https://json-structure.org/structure

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/structure",
  "title": "Jito Bundle Structure",
  "description": "JSON Structure representation of an atomic Jito bundle with required transactions array (max 5), encoding choice, tip account, and tip amount.",
  "type": "object",
  "properties": {
    "transactions": {
      "type": "array",
      "minItems": 1,
      "maxItems": 5,
      "items": {"type": "string"}
    },
    "encoding": {"type": "string", "enum": ["base58", "base64"]},
    "tipAccount": {"type": "string"},
    "tipLamports": {"type": "integer"}
  },
  "required": ["transactions"]
}