notbank
Version:
The Notbank for Node.js
17 lines (15 loc) • 320 B
text/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[]
}