@unielon/wallet-connect-react
Version:
unielon wallet js sdk rom react provider、swap pools base action, base use for React
14 lines (13 loc) • 337 B
TypeScript
export interface DogePriceType {
initPriceFee: () => void;
price: number;
fee: DogeFeeType;
getFee: () => void;
getPrice: (c?: string) => void;
}
export interface DogeFeeType {
low: string | number;
hight: string | number;
medium: string | number;
}
export declare function useDogePrice(): DogePriceType;