@keepkey/device-protocol 7.10.1 → 7.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/messages-binance_pb.d.ts +428 -0
- package/lib/messages-binance_pb.js +1 -7
- package/lib/messages-cosmos_pb.d.ts +466 -0
- package/lib/messages-cosmos_pb.js +1 -7
- package/lib/messages-eos_pb.d.ts +1057 -0
- package/lib/messages-eos_pb.js +1 -7
- package/lib/messages-ethereum_pb.d.ts +530 -0
- package/lib/messages-ethereum_pb.js +1 -7
- package/lib/messages-nano_pb.d.ts +207 -0
- package/lib/messages-nano_pb.js +1 -7
- package/lib/messages-osmosis_pb.d.ts +774 -0
- package/lib/messages-osmosis_pb.js +1 -7
- package/lib/messages-ripple_pb.d.ts +173 -0
- package/lib/messages-ripple_pb.js +1 -7
- package/lib/messages-tendermint_pb.d.ts +526 -0
- package/lib/messages-tendermint_pb.js +1 -7
- package/lib/messages-thorchain_pb.d.ts +288 -0
- package/lib/messages-thorchain_pb.js +1 -7
- package/lib/messages_pb.d.ts +2357 -0
- package/lib/messages_pb.js +1 -7
- package/lib/types_pb.d.ts +843 -0
- package/lib/types_pb.js +1 -7
- package/package.json +2 -2
@@ -13,13 +13,7 @@
|
|
13
13
|
|
14
14
|
var jspb = require('google-protobuf');
|
15
15
|
var goog = jspb;
|
16
|
-
var global = (function() {
|
17
|
-
if (this) { return this; }
|
18
|
-
if (typeof window !== 'undefined') { return window; }
|
19
|
-
if (typeof global !== 'undefined') { return global; }
|
20
|
-
if (typeof self !== 'undefined') { return self; }
|
21
|
-
return Function('return this')();
|
22
|
-
}.call(null));
|
16
|
+
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
|
23
17
|
|
24
18
|
var types_pb = require('./types_pb.js');
|
25
19
|
goog.object.extend(proto, types_pb);
|
@@ -0,0 +1,173 @@
|
|
1
|
+
// package:
|
2
|
+
// file: messages-ripple.proto
|
3
|
+
|
4
|
+
import * as jspb from "google-protobuf";
|
5
|
+
|
6
|
+
export class RippleGetAddress extends jspb.Message {
|
7
|
+
clearAddressNList(): void;
|
8
|
+
getAddressNList(): Array<number>;
|
9
|
+
setAddressNList(value: Array<number>): void;
|
10
|
+
addAddressN(value: number, index?: number): number;
|
11
|
+
|
12
|
+
hasShowDisplay(): boolean;
|
13
|
+
clearShowDisplay(): void;
|
14
|
+
getShowDisplay(): boolean | undefined;
|
15
|
+
setShowDisplay(value: boolean): void;
|
16
|
+
|
17
|
+
serializeBinary(): Uint8Array;
|
18
|
+
toObject(includeInstance?: boolean): RippleGetAddress.AsObject;
|
19
|
+
static toObject(includeInstance: boolean, msg: RippleGetAddress): RippleGetAddress.AsObject;
|
20
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
21
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
22
|
+
static serializeBinaryToWriter(message: RippleGetAddress, writer: jspb.BinaryWriter): void;
|
23
|
+
static deserializeBinary(bytes: Uint8Array): RippleGetAddress;
|
24
|
+
static deserializeBinaryFromReader(message: RippleGetAddress, reader: jspb.BinaryReader): RippleGetAddress;
|
25
|
+
}
|
26
|
+
|
27
|
+
export namespace RippleGetAddress {
|
28
|
+
export type AsObject = {
|
29
|
+
addressNList: Array<number>,
|
30
|
+
showDisplay?: boolean,
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
export class RippleAddress extends jspb.Message {
|
35
|
+
hasAddress(): boolean;
|
36
|
+
clearAddress(): void;
|
37
|
+
getAddress(): string | undefined;
|
38
|
+
setAddress(value: string): void;
|
39
|
+
|
40
|
+
serializeBinary(): Uint8Array;
|
41
|
+
toObject(includeInstance?: boolean): RippleAddress.AsObject;
|
42
|
+
static toObject(includeInstance: boolean, msg: RippleAddress): RippleAddress.AsObject;
|
43
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
44
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
45
|
+
static serializeBinaryToWriter(message: RippleAddress, writer: jspb.BinaryWriter): void;
|
46
|
+
static deserializeBinary(bytes: Uint8Array): RippleAddress;
|
47
|
+
static deserializeBinaryFromReader(message: RippleAddress, reader: jspb.BinaryReader): RippleAddress;
|
48
|
+
}
|
49
|
+
|
50
|
+
export namespace RippleAddress {
|
51
|
+
export type AsObject = {
|
52
|
+
address?: string,
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
export class RippleSignTx extends jspb.Message {
|
57
|
+
clearAddressNList(): void;
|
58
|
+
getAddressNList(): Array<number>;
|
59
|
+
setAddressNList(value: Array<number>): void;
|
60
|
+
addAddressN(value: number, index?: number): number;
|
61
|
+
|
62
|
+
hasFee(): boolean;
|
63
|
+
clearFee(): void;
|
64
|
+
getFee(): number | undefined;
|
65
|
+
setFee(value: number): void;
|
66
|
+
|
67
|
+
hasFlags(): boolean;
|
68
|
+
clearFlags(): void;
|
69
|
+
getFlags(): number | undefined;
|
70
|
+
setFlags(value: number): void;
|
71
|
+
|
72
|
+
hasSequence(): boolean;
|
73
|
+
clearSequence(): void;
|
74
|
+
getSequence(): number | undefined;
|
75
|
+
setSequence(value: number): void;
|
76
|
+
|
77
|
+
hasLastLedgerSequence(): boolean;
|
78
|
+
clearLastLedgerSequence(): void;
|
79
|
+
getLastLedgerSequence(): number | undefined;
|
80
|
+
setLastLedgerSequence(value: number): void;
|
81
|
+
|
82
|
+
hasPayment(): boolean;
|
83
|
+
clearPayment(): void;
|
84
|
+
getPayment(): RipplePayment | undefined;
|
85
|
+
setPayment(value?: RipplePayment): void;
|
86
|
+
|
87
|
+
serializeBinary(): Uint8Array;
|
88
|
+
toObject(includeInstance?: boolean): RippleSignTx.AsObject;
|
89
|
+
static toObject(includeInstance: boolean, msg: RippleSignTx): RippleSignTx.AsObject;
|
90
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
91
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
92
|
+
static serializeBinaryToWriter(message: RippleSignTx, writer: jspb.BinaryWriter): void;
|
93
|
+
static deserializeBinary(bytes: Uint8Array): RippleSignTx;
|
94
|
+
static deserializeBinaryFromReader(message: RippleSignTx, reader: jspb.BinaryReader): RippleSignTx;
|
95
|
+
}
|
96
|
+
|
97
|
+
export namespace RippleSignTx {
|
98
|
+
export type AsObject = {
|
99
|
+
addressNList: Array<number>,
|
100
|
+
fee?: number,
|
101
|
+
flags?: number,
|
102
|
+
sequence?: number,
|
103
|
+
lastLedgerSequence?: number,
|
104
|
+
payment?: RipplePayment.AsObject,
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
export class RipplePayment extends jspb.Message {
|
109
|
+
hasAmount(): boolean;
|
110
|
+
clearAmount(): void;
|
111
|
+
getAmount(): number | undefined;
|
112
|
+
setAmount(value: number): void;
|
113
|
+
|
114
|
+
hasDestination(): boolean;
|
115
|
+
clearDestination(): void;
|
116
|
+
getDestination(): string | undefined;
|
117
|
+
setDestination(value: string): void;
|
118
|
+
|
119
|
+
hasDestinationTag(): boolean;
|
120
|
+
clearDestinationTag(): void;
|
121
|
+
getDestinationTag(): number | undefined;
|
122
|
+
setDestinationTag(value: number): void;
|
123
|
+
|
124
|
+
serializeBinary(): Uint8Array;
|
125
|
+
toObject(includeInstance?: boolean): RipplePayment.AsObject;
|
126
|
+
static toObject(includeInstance: boolean, msg: RipplePayment): RipplePayment.AsObject;
|
127
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
128
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
129
|
+
static serializeBinaryToWriter(message: RipplePayment, writer: jspb.BinaryWriter): void;
|
130
|
+
static deserializeBinary(bytes: Uint8Array): RipplePayment;
|
131
|
+
static deserializeBinaryFromReader(message: RipplePayment, reader: jspb.BinaryReader): RipplePayment;
|
132
|
+
}
|
133
|
+
|
134
|
+
export namespace RipplePayment {
|
135
|
+
export type AsObject = {
|
136
|
+
amount?: number,
|
137
|
+
destination?: string,
|
138
|
+
destinationTag?: number,
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
export class RippleSignedTx extends jspb.Message {
|
143
|
+
hasSignature(): boolean;
|
144
|
+
clearSignature(): void;
|
145
|
+
getSignature(): Uint8Array | string;
|
146
|
+
getSignature_asU8(): Uint8Array;
|
147
|
+
getSignature_asB64(): string;
|
148
|
+
setSignature(value: Uint8Array | string): void;
|
149
|
+
|
150
|
+
hasSerializedTx(): boolean;
|
151
|
+
clearSerializedTx(): void;
|
152
|
+
getSerializedTx(): Uint8Array | string;
|
153
|
+
getSerializedTx_asU8(): Uint8Array;
|
154
|
+
getSerializedTx_asB64(): string;
|
155
|
+
setSerializedTx(value: Uint8Array | string): void;
|
156
|
+
|
157
|
+
serializeBinary(): Uint8Array;
|
158
|
+
toObject(includeInstance?: boolean): RippleSignedTx.AsObject;
|
159
|
+
static toObject(includeInstance: boolean, msg: RippleSignedTx): RippleSignedTx.AsObject;
|
160
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
161
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
162
|
+
static serializeBinaryToWriter(message: RippleSignedTx, writer: jspb.BinaryWriter): void;
|
163
|
+
static deserializeBinary(bytes: Uint8Array): RippleSignedTx;
|
164
|
+
static deserializeBinaryFromReader(message: RippleSignedTx, reader: jspb.BinaryReader): RippleSignedTx;
|
165
|
+
}
|
166
|
+
|
167
|
+
export namespace RippleSignedTx {
|
168
|
+
export type AsObject = {
|
169
|
+
signature: Uint8Array | string,
|
170
|
+
serializedTx: Uint8Array | string,
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
@@ -13,13 +13,7 @@
|
|
13
13
|
|
14
14
|
var jspb = require('google-protobuf');
|
15
15
|
var goog = jspb;
|
16
|
-
var global = (function() {
|
17
|
-
if (this) { return this; }
|
18
|
-
if (typeof window !== 'undefined') { return window; }
|
19
|
-
if (typeof global !== 'undefined') { return global; }
|
20
|
-
if (typeof self !== 'undefined') { return self; }
|
21
|
-
return Function('return this')();
|
22
|
-
}.call(null));
|
16
|
+
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
|
23
17
|
|
24
18
|
goog.exportSymbol('proto.RippleAddress', null, global);
|
25
19
|
goog.exportSymbol('proto.RippleGetAddress', null, global);
|