/* ================ Props ================ */ export interface ExchangeRate { name: string symbol: string price: string priceBNB: string } export interface GetExchangeRateProps { symbol: string } export interface GetExchangeRateResponse { exchangeRate: ExchangeRate } /* ================ State ================ */ export interface GlobalState { loading: { loadingGetExchangeRate: boolean } exchangeRate: ExchangeRate }