# Administration

### Roles

* [`ADMIN_ROLE`](/access-controls.md): Configure system parameters and blacklist tokens
* [`DEVOPS_ROLE`](/access-controls.md): Handle contract upgrades

### Configurable Parameters

* Discount rate markup (capped at 2%)
* Minimum listing amounts per token
* RepoToken blacklist status
* DiscountRateAdapter address

### Events and Monitoring

The system uses a dedicated event emitter contract (`RepoTokenLinkedListEventEmitter`) to track all system activity:

#### Core Events

* `NewListing(uint256 listingId, address seller, address repoToken, uint256 amount)`
* `Purchase(uint256 listingId, address buyer, address seller, address repoToken, uint256 amount, address purchaseToken, uint256 cost)`
* `ListingCancelled(uint256 listingId, address seller, uint256 amount)`

#### System Events

* `DiscountRateAdapterUpdated(address oldAdapter, address newAdapter)`
* `RepoTokenBlacklistUpdated(address repoToken, bool blacklisted)`
* `MinListingAmountUpdated(uint256 oldAmount, uint256 newAmount)`
* `Paused()` / `Unpaused()`


---

# 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://developers.term.finance/periphery-contracts/blue-sheets/administration.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.
