cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 397 B
TypeScript
import { EGlobalSettingsExchange, SpreadAmountMode } from '../enums';
export interface IGlobalSettingBlockchain {
address: string;
description: string;
id: string;
seed: string;
spreads: IGlobalSettingBlockchainSpread[];
}
export interface IGlobalSettingBlockchainSpread {
exchange: EGlobalSettingsExchange;
id: string;
mode: SpreadAmountMode;
value: number;
}