# 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&#x26;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.
