export interface SettingsMenuProps {
    network: string;
    currentCurrency: string;
    currencyList: string[];
    currenctTheme?: string;
    transactions?: transaction[];
}
export interface transaction {
    timestamp: string;
    blockNumber: string;
    to: string;
    from: string;
    hash: string;
    value: number;
}
