-
Notifications
You must be signed in to change notification settings - Fork 34
/
interfaces.d.ts
79 lines (61 loc) · 1.59 KB
/
interfaces.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export type TPrecision = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
export type TBuffer = Uint8Array | number[];
export type TTransactionType = 'issue' | 'transfer' | 'reissue' | 'burn' | 'exchange' | 'lease' | 'cancelLeasing' | 'createAlias';
export interface IHash<T> {
[key: string]: T;
}
export interface IAssetObject {
readonly id: string;
readonly name: string;
readonly precision: TPrecision;
description?: string;
}
export interface IKeyPair {
readonly privateKey: string;
readonly publicKey: string;
}
export interface IKeyPairBytes {
readonly privateKey: Uint8Array;
readonly publicKey: Uint8Array;
}
export interface IWavesBasicConfig {
minimumSeedLength: number;
requestOffset: number;
requestLimit: number;
}
export interface IWavesConfig extends IWavesBasicConfig {
networkByte: number;
nodeAddress: string;
matcherAddress: string;
}
// API interfaces
export interface IAPIListOptions {
offset?: number;
limit?: number;
}
export interface IAPIBalanceOptions extends IAPIListOptions {
assets?: string[];
}
export interface IAPITransactionsOptions extends IAPIListOptions {
type?: TTransactionType;
sender?: string;
recipient?: string;
}
// Missing interfaces
declare global {
interface Window {
msCrypto?: any;
Response?: any;
Promise: PromiseConstructor;
}
interface ErrorConstructor {
captureStackTrace(thisArg: any, func: any): void;
}
}
// Replacement for --allowJs
declare module '*.js' {
const content: {
[key: string]: any;
};
export = content;
}