notbank
Version:
The Notbank for Node.js
16 lines (15 loc) • 352 B
TypeScript
export interface NetworkTemplates {
name: string;
type: string;
required: boolean;
maxLength?: number;
minLength?: number;
decimalPlaces?: number;
}
export interface CurrencyNetworkTemplates {
currency: string;
network: string;
network_name: string;
network_protocol: string;
template: NetworkTemplates[];
}