UNPKG

743 BTypeScriptView Raw
1export interface AccountInfo {
2 relation: 'parent' | 'peer' | 'child';
3 plugin: string;
4 assetCode: string;
5 assetScale: number;
6 balance?: {
7 minimum: string;
8 maximum: string;
9 settleThreshold?: string;
10 settleTo: string;
11 };
12 deduplicate?: {
13 cleanupInterval: number;
14 packetLifetime: number;
15 };
16 maxPacketAmount?: string;
17 throughput?: {
18 refillPeriod?: number;
19 incomingAmount?: string;
20 outgoingAmount?: string;
21 };
22 rateLimit?: {
23 refillPeriod?: number;
24 refillCount?: number;
25 capacity?: number;
26 };
27 options?: object;
28 sendRoutes?: boolean;
29 receiveRoutes?: boolean;
30 ilpAddressSegment?: string;
31}