> For the complete documentation index, see [llms.txt](https://seacows.gitbook.io/seacows-amm-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seacows.gitbook.io/seacows-amm-docs/technical-reference/core/seacowspositionmanager/feemanagement.md).

# FeeManagement

## Functions

### royaltyRegistry

```solidity
function royaltyRegistry() external view returns (address)
```

Returns the address of the Royalty Registry. See [Royalty Registry](https://royaltyregistry.xyz/).

### feeManager

```solidity
function feeManager() external view returns (address)
```

Returns the address of the Fee Manager.

### royaltyFeeManager

```solidity
function royaltyFeeManager() external view returns (address)
```

Returns the address of the Royalty Fee Manager.

### feeTo

```solidity
function feeTo() external view returns (address)
```

Returns the address that receive the Protocol Fee.

### setFeeManager

```solidity
function setFeeManager(address _to) external
```

To configure the Fee Manager address.

### setRoyaltyFeeManager

```solidity
function setRoyaltyFeeManager(address _to) external
```

To configure the Royalty Fee Manager address.

### setRoyaltyRegistry

```solidity
function setRoyaltyRegistry(address _to) external
```

To configure the Royalty Registry address.

### setFeeTo

```solidity
function setFeeTo(address _to) external
```

To configure the address to receive Protocol Fee.
