> For the complete documentation index, see [llms.txt](https://docs.protocolink.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.protocolink.com/protocolink-sdk/common-sdk-interfaces/constants.md).

# Constants

Constants are values that remain fixed throughout the execution of a program, and they are usually declared at the beginning of the code. In this SDK, we have defined several constants that can be used in different parts of the code.

* A basis point is a unit of measure used in finance to describe the percentage change in a financial instrument. It is equal to 0.01%. We use a basis points base of `10,000`, which means that 1 basis point is equivalent to 0.01%. This constant can be used, for example, to calculate the interest rate or the fee percentage of a financial transaction.

```typescript
const BPS_BASE = 10000;
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.protocolink.com/protocolink-sdk/common-sdk-interfaces/constants.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.
