Versions in this module Expand all Collapse all v0 v0.1.0 Jun 14, 2026 Changes in this version + const BaseURL + const DefaultUserAgent + const Host + type Candle struct + BaseVol string + Close string + High string + Low string + QuoteVol string + Time string + type Client struct + func NewClient() *Client + func (c *Client) Candles(ctx context.Context, pair, interval string, limit int) ([]*Candle, error) + func (c *Client) Orderbook(ctx context.Context, pair string, depth int) ([]*Order, error) + func (c *Client) Pairs(ctx context.Context, quote string, limit int) ([]*Pair, error) + func (c *Client) Ticker(ctx context.Context, pair string) (*Ticker, error) + type Config struct + BaseURL string + Rate time.Duration + Retries int + Timeout time.Duration + UserAgent string + func DefaultConfig() Config + type Domain struct + func (Domain) Info() kit.DomainInfo + func (Domain) Register(app *kit.App) + type Order struct + Price string + Side string + Size string + type Pair struct + Base string + Fee string + ID string + Quote string + Status string + type Ticker struct + Ask string + BaseVol string + Bid string + ChangePercent string + High24h string + Last string + Low24h string + Pair string + QuoteVol string