forked from trezor/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lisk.js
142 lines (113 loc) · 2.56 KB
/
lisk.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* @flow */
// Lisk types
// https://lisk.io/documentation/lisk-elements/user-guide/transactions
import type { $Path, $Common } from './params';
import type { Unsuccessful$ } from './response';
import type {
Success,
LiskSignedTx,
} from './trezor';
export type VoteAsset = {
votes: Array<string>,
}
export type SignatureAsset = {
signature: {
publicKey: string,
},
}
export type DelegateAsset = {
delegate: {
username: string,
},
}
export type MultisignatureAsset = {
multisignature: {
min: number,
lifetime: number,
keysgroup: Array<string>,
},
}
export type DataAsset = {
data: string,
}
export type Asset = SignatureAsset | MultisignatureAsset | DelegateAsset | VoteAsset | DataAsset;
export type Transaction = {
type: number,
fee: string,
amount: string,
timestamp: number,
recipientId?: string,
senderPublicKey?: string,
requesterPublicKey?: string,
signature?: string,
asset?: Asset,
}
// methods parameters
// get address
export type $LiskGetAddress = $Common & {
path: $Path,
showOnTrezor?: boolean,
}
export type LiskAddress = {
path: Array<number>,
serializedPath: string,
address: string,
}
export type LiskGetAddress$ = {
success: true,
payload: LiskAddress,
} | Unsuccessful$;
export type LiskGetAddress$$ = {
success: true,
payload: Array<LiskAddress>,
} | Unsuccessful$;
// get public key
export type $LiskGetPublicKey = $Common & {
path: $Path,
showOnTrezor?: boolean,
}
export type LiskPublicKey = {
path: Array<number>,
serializedPath: string,
publicKey: string,
}
export type LiskGetPublicKey$ = {
success: true,
payload: LiskPublicKey,
} | Unsuccessful$;
export type LiskGetPublicKey$$ = {
success: true,
payload: Array<LiskPublicKey>,
} | Unsuccessful$;
// sign message
export type LiskMessageSignature = {
publicKey: string,
signature: string,
}
export type $LiskSignMessage = $Common & {
path: $Path,
message: string,
}
export type LiskSignMessage$ = {
success: true,
payload: LiskMessageSignature,
} | Unsuccessful$;
// sign transaction
export type $LiskSignTransaction = $Common & {
path: $Path,
transaction: Transaction,
}
export type LiskSignTransaction$ = {
success: true,
payload: LiskSignedTx,
} | Unsuccessful$
// verify message
export type $LiskVerifyMessage = $Common & {
publicKey: string,
message: string,
signature: string,
}
export type LiskVerifyMessage$ = {
success: true,
payload: Success,
} | Unsuccessful$;