# Subsidy Transactions

### Overview <a href="#overview" id="overview"></a>

The subsidy transactions feature enables bundled transactions with an added subsidy to improve transaction inclusion and protect users from malicious MEV behaviors. When this feature is enabled, Kolibrio automatically adds a supplementary transaction with an extra Jito tip, increasing priority, and submits both the original and subsidy transactions as a bundle to Jito. This setup benefits applications seeking enhanced transaction performance without needing to modify individual user transactions or add tip instructions.

To support this, Kolibrio will assign a dedicated tip address linked to your Auth header. This address will be used to handle the subsidy transaction within your flow, allowing for optimized transaction bundling without manual setup.

### Requirements <a href="#requirements" id="requirements"></a>

To use subsidy transactions, the following requirements must be met:

* **Authorization Header**: An authorization GUID is required to enable this premium feature. To receive an Auth header, contact the Kolibrio team. This authorization is linked to your dedicated tip address, which Kolibrio uses to handle the subsidy transaction.
* **tx\_broadcast\_mode**: Set this parameter to `subsidy` in your requests to activate subsidy transaction bundling<br>

### Example Usage

```url
curl https://sol-rpc.kolibr.io/?tx_broadcast_mode=subsidy \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_GUID_HERE" \
  -d '
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "sendTransaction",
    "params": [
      "YOUR_SIGNED_TRANSACTION_HERE"
    ]
  }
'

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kolibrio.xyz/kolibrio-orderflow-service/solana/advanced/subsidy-transactions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
