export interface FundCreateData {
    name: string;
    description: string;
    decimals: number;
    symbol: string;
    category: string;
}
