API reference v1
This section describes different op codes of AMM smart contracts
Overview
The section contains separate documents for each smart contract used in AMM:
Source code of all smart contracts can be found in this Github repo
Definitions of terminology used can be found in Glossary
Referral Fees
DEX v1 pays the referrer share of a swap fee directly inside the swap
transaction. The rate is fixed at 0.1 % and the amount is transferred to the
provided referrer_address
automatically. See the Omniston referral fees guide (note: although the guide is Omniston-centric, the referenced paragraph specifically covers DEX V1 referral fees).
You can monitor referral payouts using the Stats & Vaults REST API:
GET /v1/stats/fee_accruals
– shows all operations that led to fee accrual for the referrer, filterable by periodGET /v1/stats/fee_withdrawals
– lists all fee withdrawals from the referrer's vaults by periodGET /v1/stats/fees
– returns aggregated referral fee information, such as total accrued USD value, for the selected time frame
The full specification is available in the Swagger UI.
Last updated