> ## Documentation Index
> Fetch the complete documentation index at: https://align.tolbel.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Developer Fees

> Configure your developer fee percentage

## Method Signature

```typescript theme={null}
align.developers.updateFees(
  data: UpdateDeveloperFeesRequest
): Promise<DeveloperFeesResponse>
```

## Parameters

<ParamField body="developer_receivable_fees" type="object" required>
  <Expandable title="Fee Properties">
    <ParamField body="onramp" type="number">
      Fee for onramp transactions
    </ParamField>

    <ParamField body="offramp" type="number">
      Fee for offramp transactions
    </ParamField>

    <ParamField body="cross_chain_transfer" type="number">
      Fee for cross-chain transfers
    </ParamField>
  </Expandable>
</ParamField>

## Example

```typescript theme={null}
const response = await align.developers.updateFees({
  developer_receivable_fees: {
    onramp: 1.0,
    offramp: 0.5,
    cross_chain_transfer: 0.5,
  },
});

console.log("Fees updated!");
```

<Info>
  Developer fees are automatically included in quotes and collected when
  transfers complete.
</Info>

## Related Methods

<CardGroup cols={2}>
  <Card title="Get Fees" icon="percent" href="/docs/api/developers/get-fees">
    View current fees
  </Card>
</CardGroup>
