Type: Network
This type represents a network.
export type MarketNetwork = {
name: string;
network: string;
withdrawFee?: string;
withdrawMax?: string;
withdrawMin?: string;
withdrawalEnabled: boolean;
depositEnabled: boolean;
iconUrl: string; // /!\ URL might not exist if icon is not available
chainId?: number; // chain id in decimal format
};