Currency
export type Currency = {
currencyId: string;
currencyCode: string;
name?: string;
currencyIcon?: string;
};
export type CurrencySummary = {
currencyId: string;
currencyCode: string;
name?: string;
currencyIcon?: string;
totalIssued: number;
owners: number;
};
export type CurrencyWithBalance = {
currencyId: string;
currencyCode: string;
name?: string;
currencyIcon?: string;
balance: number;
};
Last updated