2026-02-24 22:28:29 +03:00
|
|
|
package entities
|
|
|
|
|
|
2026-02-25 22:33:52 +03:00
|
|
|
type InstrumentID string
|
|
|
|
|
|
|
|
|
|
type Instrument struct {
|
|
|
|
|
ID InstrumentID
|
2026-02-24 22:28:29 +03:00
|
|
|
BaseCurrency string // base currency of the pair. e.g. BTC.
|
|
|
|
|
QuoteCurrency string // quote currency of the pair. e.g. USDT.
|
2026-04-28 11:42:07 +03:00
|
|
|
IsGlobal bool // true for pre-seeded pairs visible to all users.
|
2026-02-24 22:28:29 +03:00
|
|
|
}
|