export interface Fee {
  fee: string;
  currency: string;
  amount: string;
  networkFee?: string;
}
