Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions mintlify/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 16 additions & 5 deletions openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 21 additions & 7 deletions openapi/components/schemas/config/FeeConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,27 @@ properties:
Variable fee in basis points (1 bps = 0.01%) to apply to a transaction's source-currency amount.
example: 30
fixedFee:
type: integer
format: int64
minimum: 0
description: >-
Fixed fee charged per transaction, denominated in the smallest unit of
the fee config's `sourceCurrency` (e.g., cents for USD).
example: 100
type: object
Comment thread
jacklatourette marked this conversation as resolved.
description: Fixed fee charged per transaction.
properties:
amount:
type: integer
format: int64
minimum: 0
description: >-
Fee amount in the smallest unit of the fixed fee's `currency`
(e.g., cents for USD).
example: 100
currency:
type: string
description: >-
Three-letter currency code (ISO 4217) the fixed fee is denominated
in. Some cryptocurrencies may use their own ticker symbols (e.g.
"BTC" for Bitcoin, "USDC" for USDC, etc.)
example: USD
required:
- amount
- currency
required:
- feeType
- sourceCurrency
Expand Down
Loading