Versions in this module Expand all Collapse all v0 v0.0.1 Dec 13, 2023 Changes in this version + type APIQuote struct + CreatedAt time.Time + DeletedAt gorm.DeletedAt + DestAmount string + DestAmountNorm float64 + DestChainID uint + DestDecimals uint8 + DestToken string + OriginAmount string + OriginAmountNorm float64 + OriginChainID uint + OriginDecimals uint8 + OriginToken string + Price float64 + Relayer string + UpdatedAt time.Time + type Client interface + CreateQuote func(q *APIQuote) error + UpdateQuote func(quoteID string, q *APIQuote) error + func NewClient(rfqURL string, reqSigner signer.Signer) (Client, error)