# Parameters

The fees module contains the following parameters:

| Key                        | Type    | Default Value |
| -------------------------- | ------- | ------------- |
| `EnableFeeSplit`           | bool    | `true`        |
| `DeveloperShares`          | sdk.Dec | `50%`         |
| `AddrDerivationCostCreate` | uint64  | `50`          |

### Enable Feesplit Module <a href="#enable-feesplit-module" id="enable-feesplit-module"></a>

The `EnableFeeSplit` parameter toggles all state transitions in the module. When the parameter is disabled, it will prevent any transaction fees from being distributed to contract deployers and it will disallow contract registrations, updates or cancellations.

#### Developer Shares Amount <a href="#developer-shares-amount" id="developer-shares-amount"></a>

The `DeveloperShares` parameter is the percentage of transaction fees that is sent to the contract deployers.

#### Address Derivation Cost with CREATE opcode <a href="#address-derivation-cost-with-create-opcode" id="address-derivation-cost-with-create-opcode"></a>

The `AddrDerivationCostCreate` parameter is the gas value charged for performing an address derivation in the contract registration process. A flat gas fee is charged for each address derivation iteration. We allow a maximum number of 20 iterations, and therefore a maximum number of 20 nonces can be given for deriving the smart contract address from the deployer's address.


---

# 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.metanovaverse.com/protocol-developers/modules/feesplit/parameters.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.
