> For the complete documentation index, see [llms.txt](https://docs.cheesecakelabs.com/stellar-plus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheesecakelabs.com/stellar-plus/reference/core/pipelines/fee-bump.md).

# Fee Bump

<figure><img src="https://1878311582-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrN5WLmmo14XNSVjsb16D%2Fuploads%2Faj08QjKxHjHWU7ShCuRh%2Fimage.png?alt=media&amp;token=58f546ef-8944-4941-8e07-4fc00d2740ac" alt="" width="563"><figcaption></figcaption></figure>

## Input

```typescript
type FeeBumpPipelineInput = {
  innerTransaction: Transaction
  feeBumpHeader: FeeBumpHeader
}
```

* **innerTransaction**: A stellar transaction object to be wrapped into a fee bump.
* **feeBumpHeader**: A header containing information about the source account, fee, and signers for the fee bump.

## Output

```typescript
type FeeBumpPipelineOutput = FeeBumpTransaction
```

The output provides the wrapped fee bump transaction.
