@ocap/types 1.28.8 → 1.29.0
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/index.d.ts +23 -1
- package/interfaces/base.ts +38 -0
- package/interfaces/config.ts +166 -0
- package/interfaces/index.ts +254 -0
- package/interfaces/indexdb.ts +444 -0
- package/interfaces/pipeline.ts +525 -0
- package/interfaces/resolver.ts +503 -0
- package/interfaces/state.ts +327 -0
- package/interfaces/statedb.ts +193 -0
- package/interfaces/testing.ts +122 -0
- package/lib/enum_pb.d.ts +0 -3
- package/lib/rpc_pb.d.ts +0 -1591
- package/lib/service_pb.d.ts +0 -2
- package/lib/state_pb.d.ts +0 -840
- package/lib/trace-type_pb.d.ts +0 -1304
- package/lib/tx_pb.d.ts +0 -1687
- package/lib/type_pb.d.ts +0 -1781
- package/lib/vendor_pb.d.ts +0 -406
- package/package.json +10 -4
- package/tests/interfaces-reexport.spec.ts +76 -0
- package/tests/interfaces.spec.ts +265 -0
- package/tests/pipeline.spec.ts +249 -0
package/lib/tx_pb.d.ts
CHANGED
|
@@ -1,40 +1,10 @@
|
|
|
1
1
|
// package: ocap
|
|
2
2
|
// file: tx.proto
|
|
3
3
|
|
|
4
|
-
import * as jspb from "google-protobuf";
|
|
5
4
|
import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
|
|
6
5
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
7
6
|
import * as type_pb from "./type_pb";
|
|
8
7
|
|
|
9
|
-
export class AccountMigrateTx extends jspb.Message {
|
|
10
|
-
getPk(): Uint8Array | string;
|
|
11
|
-
getPk_asU8(): Uint8Array;
|
|
12
|
-
getPk_asB64(): string;
|
|
13
|
-
setPk(value: Uint8Array | string): void;
|
|
14
|
-
|
|
15
|
-
hasType(): boolean;
|
|
16
|
-
clearType(): void;
|
|
17
|
-
getType(): type_pb.TWalletType | undefined;
|
|
18
|
-
setType(value?: type_pb.TWalletType): void;
|
|
19
|
-
|
|
20
|
-
getAddress(): string;
|
|
21
|
-
setAddress(value: string): void;
|
|
22
|
-
|
|
23
|
-
hasData(): boolean;
|
|
24
|
-
clearData(): void;
|
|
25
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
26
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
27
|
-
|
|
28
|
-
serializeBinary(): Uint8Array;
|
|
29
|
-
toObject(includeInstance?: boolean): TAccountMigrateTx;
|
|
30
|
-
static toObject(includeInstance: boolean, msg: AccountMigrateTx): TAccountMigrateTx;
|
|
31
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
32
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
33
|
-
static serializeBinaryToWriter(message: AccountMigrateTx, writer: jspb.BinaryWriter): void;
|
|
34
|
-
static deserializeBinary(bytes: Uint8Array): AccountMigrateTx;
|
|
35
|
-
static deserializeBinaryFromReader(message: AccountMigrateTx, reader: jspb.BinaryReader): AccountMigrateTx;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
8
|
export type TAccountMigrateTx = {
|
|
39
9
|
pk: Uint8Array | string,
|
|
40
10
|
type?: type_pb.TWalletType,
|
|
@@ -42,91 +12,18 @@ export type TAccountMigrateTx = {
|
|
|
42
12
|
data?: google_protobuf_any_pb.Any,
|
|
43
13
|
}
|
|
44
14
|
|
|
45
|
-
export class DeclareTx extends jspb.Message {
|
|
46
|
-
getMoniker(): string;
|
|
47
|
-
setMoniker(value: string): void;
|
|
48
|
-
|
|
49
|
-
getIssuer(): string;
|
|
50
|
-
setIssuer(value: string): void;
|
|
51
|
-
|
|
52
|
-
hasData(): boolean;
|
|
53
|
-
clearData(): void;
|
|
54
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
55
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
56
|
-
|
|
57
|
-
serializeBinary(): Uint8Array;
|
|
58
|
-
toObject(includeInstance?: boolean): TDeclareTx;
|
|
59
|
-
static toObject(includeInstance: boolean, msg: DeclareTx): TDeclareTx;
|
|
60
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
61
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
62
|
-
static serializeBinaryToWriter(message: DeclareTx, writer: jspb.BinaryWriter): void;
|
|
63
|
-
static deserializeBinary(bytes: Uint8Array): DeclareTx;
|
|
64
|
-
static deserializeBinaryFromReader(message: DeclareTx, reader: jspb.BinaryReader): DeclareTx;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
15
|
export type TDeclareTx = {
|
|
68
16
|
moniker: string,
|
|
69
17
|
issuer: string,
|
|
70
18
|
data?: google_protobuf_any_pb.Any,
|
|
71
19
|
}
|
|
72
20
|
|
|
73
|
-
export class DelegateOp extends jspb.Message {
|
|
74
|
-
getTypeUrl(): string;
|
|
75
|
-
setTypeUrl(value: string): void;
|
|
76
|
-
|
|
77
|
-
clearRulesList(): void;
|
|
78
|
-
getRulesList(): Array<string>;
|
|
79
|
-
setRulesList(value: Array<string>): void;
|
|
80
|
-
addRules(value: string, index?: number): string;
|
|
81
|
-
|
|
82
|
-
hasLimit(): boolean;
|
|
83
|
-
clearLimit(): void;
|
|
84
|
-
getLimit(): type_pb.TDelegateLimit | undefined;
|
|
85
|
-
setLimit(value?: type_pb.TDelegateLimit): void;
|
|
86
|
-
|
|
87
|
-
serializeBinary(): Uint8Array;
|
|
88
|
-
toObject(includeInstance?: boolean): TDelegateOp;
|
|
89
|
-
static toObject(includeInstance: boolean, msg: DelegateOp): TDelegateOp;
|
|
90
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
91
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
92
|
-
static serializeBinaryToWriter(message: DelegateOp, writer: jspb.BinaryWriter): void;
|
|
93
|
-
static deserializeBinary(bytes: Uint8Array): DelegateOp;
|
|
94
|
-
static deserializeBinaryFromReader(message: DelegateOp, reader: jspb.BinaryReader): DelegateOp;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
21
|
export type TDelegateOp = {
|
|
98
22
|
typeUrl: string,
|
|
99
23
|
rules: Array<string>,
|
|
100
24
|
limit?: type_pb.TDelegateLimit,
|
|
101
25
|
}
|
|
102
26
|
|
|
103
|
-
export class DelegateTx extends jspb.Message {
|
|
104
|
-
getAddress(): string;
|
|
105
|
-
setAddress(value: string): void;
|
|
106
|
-
|
|
107
|
-
getTo(): string;
|
|
108
|
-
setTo(value: string): void;
|
|
109
|
-
|
|
110
|
-
clearOpsList(): void;
|
|
111
|
-
getOpsList(): Array<TDelegateOp>;
|
|
112
|
-
setOpsList(value: Array<TDelegateOp>): void;
|
|
113
|
-
addOps(value?: DelegateOp, index?: number): DelegateOp;
|
|
114
|
-
|
|
115
|
-
hasData(): boolean;
|
|
116
|
-
clearData(): void;
|
|
117
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
118
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
119
|
-
|
|
120
|
-
serializeBinary(): Uint8Array;
|
|
121
|
-
toObject(includeInstance?: boolean): TDelegateTx;
|
|
122
|
-
static toObject(includeInstance: boolean, msg: DelegateTx): TDelegateTx;
|
|
123
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
124
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
125
|
-
static serializeBinaryToWriter(message: DelegateTx, writer: jspb.BinaryWriter): void;
|
|
126
|
-
static deserializeBinary(bytes: Uint8Array): DelegateTx;
|
|
127
|
-
static deserializeBinaryFromReader(message: DelegateTx, reader: jspb.BinaryReader): DelegateTx;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
27
|
export type TDelegateTx = {
|
|
131
28
|
address: string,
|
|
132
29
|
to: string,
|
|
@@ -134,33 +31,6 @@ export type TDelegateTx = {
|
|
|
134
31
|
data?: google_protobuf_any_pb.Any,
|
|
135
32
|
}
|
|
136
33
|
|
|
137
|
-
export class RevokeDelegateTx extends jspb.Message {
|
|
138
|
-
getAddress(): string;
|
|
139
|
-
setAddress(value: string): void;
|
|
140
|
-
|
|
141
|
-
getTo(): string;
|
|
142
|
-
setTo(value: string): void;
|
|
143
|
-
|
|
144
|
-
clearTypeUrlsList(): void;
|
|
145
|
-
getTypeUrlsList(): Array<string>;
|
|
146
|
-
setTypeUrlsList(value: Array<string>): void;
|
|
147
|
-
addTypeUrls(value: string, index?: number): string;
|
|
148
|
-
|
|
149
|
-
hasData(): boolean;
|
|
150
|
-
clearData(): void;
|
|
151
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
152
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
153
|
-
|
|
154
|
-
serializeBinary(): Uint8Array;
|
|
155
|
-
toObject(includeInstance?: boolean): TRevokeDelegateTx;
|
|
156
|
-
static toObject(includeInstance: boolean, msg: RevokeDelegateTx): TRevokeDelegateTx;
|
|
157
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
158
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
159
|
-
static serializeBinaryToWriter(message: RevokeDelegateTx, writer: jspb.BinaryWriter): void;
|
|
160
|
-
static deserializeBinary(bytes: Uint8Array): RevokeDelegateTx;
|
|
161
|
-
static deserializeBinaryFromReader(message: RevokeDelegateTx, reader: jspb.BinaryReader): RevokeDelegateTx;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
34
|
export type TRevokeDelegateTx = {
|
|
165
35
|
address: string,
|
|
166
36
|
to: string,
|
|
@@ -168,124 +38,23 @@ export type TRevokeDelegateTx = {
|
|
|
168
38
|
data?: google_protobuf_any_pb.Any,
|
|
169
39
|
}
|
|
170
40
|
|
|
171
|
-
export class UpgradeNodeTx extends jspb.Message {
|
|
172
|
-
getHeight(): number;
|
|
173
|
-
setHeight(value: number): void;
|
|
174
|
-
|
|
175
|
-
getVersion(): string;
|
|
176
|
-
setVersion(value: string): void;
|
|
177
|
-
|
|
178
|
-
getOverride(): boolean;
|
|
179
|
-
setOverride(value: boolean): void;
|
|
180
|
-
|
|
181
|
-
serializeBinary(): Uint8Array;
|
|
182
|
-
toObject(includeInstance?: boolean): TUpgradeNodeTx;
|
|
183
|
-
static toObject(includeInstance: boolean, msg: UpgradeNodeTx): TUpgradeNodeTx;
|
|
184
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
185
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
186
|
-
static serializeBinaryToWriter(message: UpgradeNodeTx, writer: jspb.BinaryWriter): void;
|
|
187
|
-
static deserializeBinary(bytes: Uint8Array): UpgradeNodeTx;
|
|
188
|
-
static deserializeBinaryFromReader(message: UpgradeNodeTx, reader: jspb.BinaryReader): UpgradeNodeTx;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
41
|
export type TUpgradeNodeTx = {
|
|
192
42
|
height: number,
|
|
193
43
|
version: string,
|
|
194
44
|
override: boolean,
|
|
195
45
|
}
|
|
196
46
|
|
|
197
|
-
export class ExchangeInfo extends jspb.Message {
|
|
198
|
-
hasValue(): boolean;
|
|
199
|
-
clearValue(): void;
|
|
200
|
-
getValue(): type_pb.TBigUint | undefined;
|
|
201
|
-
setValue(value?: type_pb.TBigUint): void;
|
|
202
|
-
|
|
203
|
-
clearAssetsList(): void;
|
|
204
|
-
getAssetsList(): Array<string>;
|
|
205
|
-
setAssetsList(value: Array<string>): void;
|
|
206
|
-
addAssets(value: string, index?: number): string;
|
|
207
|
-
|
|
208
|
-
serializeBinary(): Uint8Array;
|
|
209
|
-
toObject(includeInstance?: boolean): TExchangeInfo;
|
|
210
|
-
static toObject(includeInstance: boolean, msg: ExchangeInfo): TExchangeInfo;
|
|
211
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
212
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
213
|
-
static serializeBinaryToWriter(message: ExchangeInfo, writer: jspb.BinaryWriter): void;
|
|
214
|
-
static deserializeBinary(bytes: Uint8Array): ExchangeInfo;
|
|
215
|
-
static deserializeBinaryFromReader(message: ExchangeInfo, reader: jspb.BinaryReader): ExchangeInfo;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
47
|
export type TExchangeInfo = {
|
|
219
48
|
value?: type_pb.TBigUint,
|
|
220
49
|
assets: Array<string>,
|
|
221
50
|
}
|
|
222
51
|
|
|
223
|
-
export class ExchangeInfoV2 extends jspb.Message {
|
|
224
|
-
hasValue(): boolean;
|
|
225
|
-
clearValue(): void;
|
|
226
|
-
getValue(): type_pb.TBigUint | undefined;
|
|
227
|
-
setValue(value?: type_pb.TBigUint): void;
|
|
228
|
-
|
|
229
|
-
clearAssetsList(): void;
|
|
230
|
-
getAssetsList(): Array<string>;
|
|
231
|
-
setAssetsList(value: Array<string>): void;
|
|
232
|
-
addAssets(value: string, index?: number): string;
|
|
233
|
-
|
|
234
|
-
clearTokensList(): void;
|
|
235
|
-
getTokensList(): Array<type_pb.TTokenInput>;
|
|
236
|
-
setTokensList(value: Array<type_pb.TTokenInput>): void;
|
|
237
|
-
addTokens(value?: type_pb.TokenInput, index?: number): type_pb.TokenInput;
|
|
238
|
-
|
|
239
|
-
serializeBinary(): Uint8Array;
|
|
240
|
-
toObject(includeInstance?: boolean): TExchangeInfoV2;
|
|
241
|
-
static toObject(includeInstance: boolean, msg: ExchangeInfoV2): TExchangeInfoV2;
|
|
242
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
243
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
244
|
-
static serializeBinaryToWriter(message: ExchangeInfoV2, writer: jspb.BinaryWriter): void;
|
|
245
|
-
static deserializeBinary(bytes: Uint8Array): ExchangeInfoV2;
|
|
246
|
-
static deserializeBinaryFromReader(message: ExchangeInfoV2, reader: jspb.BinaryReader): ExchangeInfoV2;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
52
|
export type TExchangeInfoV2 = {
|
|
250
53
|
value?: type_pb.TBigUint,
|
|
251
54
|
assets: Array<string>,
|
|
252
55
|
tokens: Array<type_pb.TTokenInput>,
|
|
253
56
|
}
|
|
254
57
|
|
|
255
|
-
export class ExchangeTx extends jspb.Message {
|
|
256
|
-
getTo(): string;
|
|
257
|
-
setTo(value: string): void;
|
|
258
|
-
|
|
259
|
-
hasSender(): boolean;
|
|
260
|
-
clearSender(): void;
|
|
261
|
-
getSender(): TExchangeInfo | undefined;
|
|
262
|
-
setSender(value?: TExchangeInfo): void;
|
|
263
|
-
|
|
264
|
-
hasReceiver(): boolean;
|
|
265
|
-
clearReceiver(): void;
|
|
266
|
-
getReceiver(): TExchangeInfo | undefined;
|
|
267
|
-
setReceiver(value?: TExchangeInfo): void;
|
|
268
|
-
|
|
269
|
-
hasExpiredAt(): boolean;
|
|
270
|
-
clearExpiredAt(): void;
|
|
271
|
-
getExpiredAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
272
|
-
setExpiredAt(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
273
|
-
|
|
274
|
-
hasData(): boolean;
|
|
275
|
-
clearData(): void;
|
|
276
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
277
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
278
|
-
|
|
279
|
-
serializeBinary(): Uint8Array;
|
|
280
|
-
toObject(includeInstance?: boolean): TExchangeTx;
|
|
281
|
-
static toObject(includeInstance: boolean, msg: ExchangeTx): TExchangeTx;
|
|
282
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
283
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
284
|
-
static serializeBinaryToWriter(message: ExchangeTx, writer: jspb.BinaryWriter): void;
|
|
285
|
-
static deserializeBinary(bytes: Uint8Array): ExchangeTx;
|
|
286
|
-
static deserializeBinaryFromReader(message: ExchangeTx, reader: jspb.BinaryReader): ExchangeTx;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
58
|
export type TExchangeTx = {
|
|
290
59
|
to: string,
|
|
291
60
|
sender?: TExchangeInfo,
|
|
@@ -294,40 +63,6 @@ export type TExchangeTx = {
|
|
|
294
63
|
data?: google_protobuf_any_pb.Any,
|
|
295
64
|
}
|
|
296
65
|
|
|
297
|
-
export class ExchangeV2Tx extends jspb.Message {
|
|
298
|
-
getTo(): string;
|
|
299
|
-
setTo(value: string): void;
|
|
300
|
-
|
|
301
|
-
hasSender(): boolean;
|
|
302
|
-
clearSender(): void;
|
|
303
|
-
getSender(): TExchangeInfoV2 | undefined;
|
|
304
|
-
setSender(value?: TExchangeInfoV2): void;
|
|
305
|
-
|
|
306
|
-
hasReceiver(): boolean;
|
|
307
|
-
clearReceiver(): void;
|
|
308
|
-
getReceiver(): TExchangeInfoV2 | undefined;
|
|
309
|
-
setReceiver(value?: TExchangeInfoV2): void;
|
|
310
|
-
|
|
311
|
-
hasExpiredAt(): boolean;
|
|
312
|
-
clearExpiredAt(): void;
|
|
313
|
-
getExpiredAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
314
|
-
setExpiredAt(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
315
|
-
|
|
316
|
-
hasData(): boolean;
|
|
317
|
-
clearData(): void;
|
|
318
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
319
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
320
|
-
|
|
321
|
-
serializeBinary(): Uint8Array;
|
|
322
|
-
toObject(includeInstance?: boolean): TExchangeV2Tx;
|
|
323
|
-
static toObject(includeInstance: boolean, msg: ExchangeV2Tx): TExchangeV2Tx;
|
|
324
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
325
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
326
|
-
static serializeBinaryToWriter(message: ExchangeV2Tx, writer: jspb.BinaryWriter): void;
|
|
327
|
-
static deserializeBinary(bytes: Uint8Array): ExchangeV2Tx;
|
|
328
|
-
static deserializeBinaryFromReader(message: ExchangeV2Tx, reader: jspb.BinaryReader): ExchangeV2Tx;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
66
|
export type TExchangeV2Tx = {
|
|
332
67
|
to: string,
|
|
333
68
|
sender?: TExchangeInfoV2,
|
|
@@ -336,35 +71,6 @@ export type TExchangeV2Tx = {
|
|
|
336
71
|
data?: google_protobuf_any_pb.Any,
|
|
337
72
|
}
|
|
338
73
|
|
|
339
|
-
export class TransferTx extends jspb.Message {
|
|
340
|
-
getTo(): string;
|
|
341
|
-
setTo(value: string): void;
|
|
342
|
-
|
|
343
|
-
hasValue(): boolean;
|
|
344
|
-
clearValue(): void;
|
|
345
|
-
getValue(): type_pb.TBigUint | undefined;
|
|
346
|
-
setValue(value?: type_pb.TBigUint): void;
|
|
347
|
-
|
|
348
|
-
clearAssetsList(): void;
|
|
349
|
-
getAssetsList(): Array<string>;
|
|
350
|
-
setAssetsList(value: Array<string>): void;
|
|
351
|
-
addAssets(value: string, index?: number): string;
|
|
352
|
-
|
|
353
|
-
hasData(): boolean;
|
|
354
|
-
clearData(): void;
|
|
355
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
356
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
357
|
-
|
|
358
|
-
serializeBinary(): Uint8Array;
|
|
359
|
-
toObject(includeInstance?: boolean): TTransferTx;
|
|
360
|
-
static toObject(includeInstance: boolean, msg: TransferTx): TTransferTx;
|
|
361
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
362
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
363
|
-
static serializeBinaryToWriter(message: TransferTx, writer: jspb.BinaryWriter): void;
|
|
364
|
-
static deserializeBinary(bytes: Uint8Array): TransferTx;
|
|
365
|
-
static deserializeBinaryFromReader(message: TransferTx, reader: jspb.BinaryReader): TransferTx;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
74
|
export type TTransferTx = {
|
|
369
75
|
to: string,
|
|
370
76
|
value?: type_pb.TBigUint,
|
|
@@ -372,40 +78,6 @@ export type TTransferTx = {
|
|
|
372
78
|
data?: google_protobuf_any_pb.Any,
|
|
373
79
|
}
|
|
374
80
|
|
|
375
|
-
export class TransferV2Tx extends jspb.Message {
|
|
376
|
-
getTo(): string;
|
|
377
|
-
setTo(value: string): void;
|
|
378
|
-
|
|
379
|
-
hasValue(): boolean;
|
|
380
|
-
clearValue(): void;
|
|
381
|
-
getValue(): type_pb.TBigUint | undefined;
|
|
382
|
-
setValue(value?: type_pb.TBigUint): void;
|
|
383
|
-
|
|
384
|
-
clearAssetsList(): void;
|
|
385
|
-
getAssetsList(): Array<string>;
|
|
386
|
-
setAssetsList(value: Array<string>): void;
|
|
387
|
-
addAssets(value: string, index?: number): string;
|
|
388
|
-
|
|
389
|
-
clearTokensList(): void;
|
|
390
|
-
getTokensList(): Array<type_pb.TTokenInput>;
|
|
391
|
-
setTokensList(value: Array<type_pb.TTokenInput>): void;
|
|
392
|
-
addTokens(value?: type_pb.TokenInput, index?: number): type_pb.TokenInput;
|
|
393
|
-
|
|
394
|
-
hasData(): boolean;
|
|
395
|
-
clearData(): void;
|
|
396
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
397
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
398
|
-
|
|
399
|
-
serializeBinary(): Uint8Array;
|
|
400
|
-
toObject(includeInstance?: boolean): TTransferV2Tx;
|
|
401
|
-
static toObject(includeInstance: boolean, msg: TransferV2Tx): TTransferV2Tx;
|
|
402
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
403
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
404
|
-
static serializeBinaryToWriter(message: TransferV2Tx, writer: jspb.BinaryWriter): void;
|
|
405
|
-
static deserializeBinary(bytes: Uint8Array): TransferV2Tx;
|
|
406
|
-
static deserializeBinaryFromReader(message: TransferV2Tx, reader: jspb.BinaryReader): TransferV2Tx;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
81
|
export type TTransferV2Tx = {
|
|
410
82
|
to: string,
|
|
411
83
|
value?: type_pb.TBigUint,
|
|
@@ -414,94 +86,12 @@ export type TTransferV2Tx = {
|
|
|
414
86
|
data?: google_protobuf_any_pb.Any,
|
|
415
87
|
}
|
|
416
88
|
|
|
417
|
-
export class TransferV3Tx extends jspb.Message {
|
|
418
|
-
clearInputsList(): void;
|
|
419
|
-
getInputsList(): Array<type_pb.TTransactionInput>;
|
|
420
|
-
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
421
|
-
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
422
|
-
|
|
423
|
-
clearOutputsList(): void;
|
|
424
|
-
getOutputsList(): Array<type_pb.TTransactionInput>;
|
|
425
|
-
setOutputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
426
|
-
addOutputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
427
|
-
|
|
428
|
-
hasData(): boolean;
|
|
429
|
-
clearData(): void;
|
|
430
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
431
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
432
|
-
|
|
433
|
-
serializeBinary(): Uint8Array;
|
|
434
|
-
toObject(includeInstance?: boolean): TTransferV3Tx;
|
|
435
|
-
static toObject(includeInstance: boolean, msg: TransferV3Tx): TTransferV3Tx;
|
|
436
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
437
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
438
|
-
static serializeBinaryToWriter(message: TransferV3Tx, writer: jspb.BinaryWriter): void;
|
|
439
|
-
static deserializeBinary(bytes: Uint8Array): TransferV3Tx;
|
|
440
|
-
static deserializeBinaryFromReader(message: TransferV3Tx, reader: jspb.BinaryReader): TransferV3Tx;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
89
|
export type TTransferV3Tx = {
|
|
444
90
|
inputs: Array<type_pb.TTransactionInput>,
|
|
445
91
|
outputs: Array<type_pb.TTransactionInput>,
|
|
446
92
|
data?: google_protobuf_any_pb.Any,
|
|
447
93
|
}
|
|
448
94
|
|
|
449
|
-
export class CreateTokenTx extends jspb.Message {
|
|
450
|
-
getName(): string;
|
|
451
|
-
setName(value: string): void;
|
|
452
|
-
|
|
453
|
-
getDescription(): string;
|
|
454
|
-
setDescription(value: string): void;
|
|
455
|
-
|
|
456
|
-
getSymbol(): string;
|
|
457
|
-
setSymbol(value: string): void;
|
|
458
|
-
|
|
459
|
-
getUnit(): string;
|
|
460
|
-
setUnit(value: string): void;
|
|
461
|
-
|
|
462
|
-
getDecimal(): number;
|
|
463
|
-
setDecimal(value: number): void;
|
|
464
|
-
|
|
465
|
-
getIcon(): string;
|
|
466
|
-
setIcon(value: string): void;
|
|
467
|
-
|
|
468
|
-
getTotalSupply(): string;
|
|
469
|
-
setTotalSupply(value: string): void;
|
|
470
|
-
|
|
471
|
-
getAddress(): string;
|
|
472
|
-
setAddress(value: string): void;
|
|
473
|
-
|
|
474
|
-
getInitialSupply(): string;
|
|
475
|
-
setInitialSupply(value: string): void;
|
|
476
|
-
|
|
477
|
-
getMaxTotalSupply(): string;
|
|
478
|
-
setMaxTotalSupply(value: string): void;
|
|
479
|
-
|
|
480
|
-
hasForeignToken(): boolean;
|
|
481
|
-
clearForeignToken(): void;
|
|
482
|
-
getForeignToken(): type_pb.TForeignToken | undefined;
|
|
483
|
-
setForeignToken(value?: type_pb.TForeignToken): void;
|
|
484
|
-
|
|
485
|
-
clearSpendersList(): void;
|
|
486
|
-
getSpendersList(): Array<string>;
|
|
487
|
-
setSpendersList(value: Array<string>): void;
|
|
488
|
-
addSpenders(value: string, index?: number): string;
|
|
489
|
-
|
|
490
|
-
hasData(): boolean;
|
|
491
|
-
clearData(): void;
|
|
492
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
493
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
494
|
-
|
|
495
|
-
serializeBinary(): Uint8Array;
|
|
496
|
-
toObject(includeInstance?: boolean): TCreateTokenTx;
|
|
497
|
-
static toObject(includeInstance: boolean, msg: CreateTokenTx): TCreateTokenTx;
|
|
498
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
499
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
500
|
-
static serializeBinaryToWriter(message: CreateTokenTx, writer: jspb.BinaryWriter): void;
|
|
501
|
-
static deserializeBinary(bytes: Uint8Array): CreateTokenTx;
|
|
502
|
-
static deserializeBinaryFromReader(message: CreateTokenTx, reader: jspb.BinaryReader): CreateTokenTx;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
95
|
export type TCreateTokenTx = {
|
|
506
96
|
name: string,
|
|
507
97
|
description: string,
|
|
@@ -518,35 +108,6 @@ export type TCreateTokenTx = {
|
|
|
518
108
|
data?: google_protobuf_any_pb.Any,
|
|
519
109
|
}
|
|
520
110
|
|
|
521
|
-
export class AssetFactoryInput extends jspb.Message {
|
|
522
|
-
getValue(): string;
|
|
523
|
-
setValue(value: string): void;
|
|
524
|
-
|
|
525
|
-
clearTokensList(): void;
|
|
526
|
-
getTokensList(): Array<type_pb.TTokenInput>;
|
|
527
|
-
setTokensList(value: Array<type_pb.TTokenInput>): void;
|
|
528
|
-
addTokens(value?: type_pb.TokenInput, index?: number): type_pb.TokenInput;
|
|
529
|
-
|
|
530
|
-
clearAssetsList(): void;
|
|
531
|
-
getAssetsList(): Array<string>;
|
|
532
|
-
setAssetsList(value: Array<string>): void;
|
|
533
|
-
addAssets(value: string, index?: number): string;
|
|
534
|
-
|
|
535
|
-
clearVariablesList(): void;
|
|
536
|
-
getVariablesList(): Array<type_pb.TVariableInput>;
|
|
537
|
-
setVariablesList(value: Array<type_pb.TVariableInput>): void;
|
|
538
|
-
addVariables(value?: type_pb.VariableInput, index?: number): type_pb.VariableInput;
|
|
539
|
-
|
|
540
|
-
serializeBinary(): Uint8Array;
|
|
541
|
-
toObject(includeInstance?: boolean): TAssetFactoryInput;
|
|
542
|
-
static toObject(includeInstance: boolean, msg: AssetFactoryInput): TAssetFactoryInput;
|
|
543
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
544
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
545
|
-
static serializeBinaryToWriter(message: AssetFactoryInput, writer: jspb.BinaryWriter): void;
|
|
546
|
-
static deserializeBinary(bytes: Uint8Array): AssetFactoryInput;
|
|
547
|
-
static deserializeBinaryFromReader(message: AssetFactoryInput, reader: jspb.BinaryReader): AssetFactoryInput;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
111
|
export type TAssetFactoryInput = {
|
|
551
112
|
value: string,
|
|
552
113
|
tokens: Array<type_pb.TTokenInput>,
|
|
@@ -554,43 +115,6 @@ export type TAssetFactoryInput = {
|
|
|
554
115
|
variables: Array<type_pb.TVariableInput>,
|
|
555
116
|
}
|
|
556
117
|
|
|
557
|
-
export class AcquireAssetV2Tx extends jspb.Message {
|
|
558
|
-
getFactory(): string;
|
|
559
|
-
setFactory(value: string): void;
|
|
560
|
-
|
|
561
|
-
getAddress(): string;
|
|
562
|
-
setAddress(value: string): void;
|
|
563
|
-
|
|
564
|
-
clearAssetsList(): void;
|
|
565
|
-
getAssetsList(): Array<string>;
|
|
566
|
-
setAssetsList(value: Array<string>): void;
|
|
567
|
-
addAssets(value: string, index?: number): string;
|
|
568
|
-
|
|
569
|
-
clearVariablesList(): void;
|
|
570
|
-
getVariablesList(): Array<type_pb.TVariableInput>;
|
|
571
|
-
setVariablesList(value: Array<type_pb.TVariableInput>): void;
|
|
572
|
-
addVariables(value?: type_pb.VariableInput, index?: number): type_pb.VariableInput;
|
|
573
|
-
|
|
574
|
-
hasIssuer(): boolean;
|
|
575
|
-
clearIssuer(): void;
|
|
576
|
-
getIssuer(): type_pb.TNFTIssuer | undefined;
|
|
577
|
-
setIssuer(value?: type_pb.TNFTIssuer): void;
|
|
578
|
-
|
|
579
|
-
hasData(): boolean;
|
|
580
|
-
clearData(): void;
|
|
581
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
582
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
583
|
-
|
|
584
|
-
serializeBinary(): Uint8Array;
|
|
585
|
-
toObject(includeInstance?: boolean): TAcquireAssetV2Tx;
|
|
586
|
-
static toObject(includeInstance: boolean, msg: AcquireAssetV2Tx): TAcquireAssetV2Tx;
|
|
587
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
588
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
589
|
-
static serializeBinaryToWriter(message: AcquireAssetV2Tx, writer: jspb.BinaryWriter): void;
|
|
590
|
-
static deserializeBinary(bytes: Uint8Array): AcquireAssetV2Tx;
|
|
591
|
-
static deserializeBinaryFromReader(message: AcquireAssetV2Tx, reader: jspb.BinaryReader): AcquireAssetV2Tx;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
118
|
export type TAcquireAssetV2Tx = {
|
|
595
119
|
factory: string,
|
|
596
120
|
address: string,
|
|
@@ -600,46 +124,6 @@ export type TAcquireAssetV2Tx = {
|
|
|
600
124
|
data?: google_protobuf_any_pb.Any,
|
|
601
125
|
}
|
|
602
126
|
|
|
603
|
-
export class AcquireAssetV3Tx extends jspb.Message {
|
|
604
|
-
getFactory(): string;
|
|
605
|
-
setFactory(value: string): void;
|
|
606
|
-
|
|
607
|
-
getAddress(): string;
|
|
608
|
-
setAddress(value: string): void;
|
|
609
|
-
|
|
610
|
-
clearInputsList(): void;
|
|
611
|
-
getInputsList(): Array<type_pb.TTransactionInput>;
|
|
612
|
-
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
613
|
-
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
614
|
-
|
|
615
|
-
getOwner(): string;
|
|
616
|
-
setOwner(value: string): void;
|
|
617
|
-
|
|
618
|
-
clearVariablesList(): void;
|
|
619
|
-
getVariablesList(): Array<type_pb.TVariableInput>;
|
|
620
|
-
setVariablesList(value: Array<type_pb.TVariableInput>): void;
|
|
621
|
-
addVariables(value?: type_pb.VariableInput, index?: number): type_pb.VariableInput;
|
|
622
|
-
|
|
623
|
-
hasIssuer(): boolean;
|
|
624
|
-
clearIssuer(): void;
|
|
625
|
-
getIssuer(): type_pb.TNFTIssuer | undefined;
|
|
626
|
-
setIssuer(value?: type_pb.TNFTIssuer): void;
|
|
627
|
-
|
|
628
|
-
hasData(): boolean;
|
|
629
|
-
clearData(): void;
|
|
630
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
631
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
632
|
-
|
|
633
|
-
serializeBinary(): Uint8Array;
|
|
634
|
-
toObject(includeInstance?: boolean): TAcquireAssetV3Tx;
|
|
635
|
-
static toObject(includeInstance: boolean, msg: AcquireAssetV3Tx): TAcquireAssetV3Tx;
|
|
636
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
637
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
638
|
-
static serializeBinaryToWriter(message: AcquireAssetV3Tx, writer: jspb.BinaryWriter): void;
|
|
639
|
-
static deserializeBinary(bytes: Uint8Array): AcquireAssetV3Tx;
|
|
640
|
-
static deserializeBinaryFromReader(message: AcquireAssetV3Tx, reader: jspb.BinaryReader): AcquireAssetV3Tx;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
127
|
export type TAcquireAssetV3Tx = {
|
|
644
128
|
factory: string,
|
|
645
129
|
address: string,
|
|
@@ -650,41 +134,6 @@ export type TAcquireAssetV3Tx = {
|
|
|
650
134
|
data?: google_protobuf_any_pb.Any,
|
|
651
135
|
}
|
|
652
136
|
|
|
653
|
-
export class MintAssetTx extends jspb.Message {
|
|
654
|
-
getFactory(): string;
|
|
655
|
-
setFactory(value: string): void;
|
|
656
|
-
|
|
657
|
-
getAddress(): string;
|
|
658
|
-
setAddress(value: string): void;
|
|
659
|
-
|
|
660
|
-
clearAssetsList(): void;
|
|
661
|
-
getAssetsList(): Array<string>;
|
|
662
|
-
setAssetsList(value: Array<string>): void;
|
|
663
|
-
addAssets(value: string, index?: number): string;
|
|
664
|
-
|
|
665
|
-
clearVariablesList(): void;
|
|
666
|
-
getVariablesList(): Array<type_pb.TVariableInput>;
|
|
667
|
-
setVariablesList(value: Array<type_pb.TVariableInput>): void;
|
|
668
|
-
addVariables(value?: type_pb.VariableInput, index?: number): type_pb.VariableInput;
|
|
669
|
-
|
|
670
|
-
getOwner(): string;
|
|
671
|
-
setOwner(value: string): void;
|
|
672
|
-
|
|
673
|
-
hasData(): boolean;
|
|
674
|
-
clearData(): void;
|
|
675
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
676
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
677
|
-
|
|
678
|
-
serializeBinary(): Uint8Array;
|
|
679
|
-
toObject(includeInstance?: boolean): TMintAssetTx;
|
|
680
|
-
static toObject(includeInstance: boolean, msg: MintAssetTx): TMintAssetTx;
|
|
681
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
682
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
683
|
-
static serializeBinaryToWriter(message: MintAssetTx, writer: jspb.BinaryWriter): void;
|
|
684
|
-
static deserializeBinary(bytes: Uint8Array): MintAssetTx;
|
|
685
|
-
static deserializeBinaryFromReader(message: MintAssetTx, reader: jspb.BinaryReader): MintAssetTx;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
137
|
export type TMintAssetTx = {
|
|
689
138
|
factory: string,
|
|
690
139
|
address: string,
|
|
@@ -694,58 +143,6 @@ export type TMintAssetTx = {
|
|
|
694
143
|
data?: google_protobuf_any_pb.Any,
|
|
695
144
|
}
|
|
696
145
|
|
|
697
|
-
export class CreateAssetTx extends jspb.Message {
|
|
698
|
-
getMoniker(): string;
|
|
699
|
-
setMoniker(value: string): void;
|
|
700
|
-
|
|
701
|
-
hasData(): boolean;
|
|
702
|
-
clearData(): void;
|
|
703
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
704
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
705
|
-
|
|
706
|
-
getReadonly(): boolean;
|
|
707
|
-
setReadonly(value: boolean): void;
|
|
708
|
-
|
|
709
|
-
getTransferrable(): boolean;
|
|
710
|
-
setTransferrable(value: boolean): void;
|
|
711
|
-
|
|
712
|
-
getTtl(): number;
|
|
713
|
-
setTtl(value: number): void;
|
|
714
|
-
|
|
715
|
-
getParent(): string;
|
|
716
|
-
setParent(value: string): void;
|
|
717
|
-
|
|
718
|
-
getAddress(): string;
|
|
719
|
-
setAddress(value: string): void;
|
|
720
|
-
|
|
721
|
-
getIssuer(): string;
|
|
722
|
-
setIssuer(value: string): void;
|
|
723
|
-
|
|
724
|
-
hasEndpoint(): boolean;
|
|
725
|
-
clearEndpoint(): void;
|
|
726
|
-
getEndpoint(): type_pb.TNFTEndpoint | undefined;
|
|
727
|
-
setEndpoint(value?: type_pb.TNFTEndpoint): void;
|
|
728
|
-
|
|
729
|
-
hasDisplay(): boolean;
|
|
730
|
-
clearDisplay(): void;
|
|
731
|
-
getDisplay(): type_pb.TNFTDisplay | undefined;
|
|
732
|
-
setDisplay(value?: type_pb.TNFTDisplay): void;
|
|
733
|
-
|
|
734
|
-
clearTagsList(): void;
|
|
735
|
-
getTagsList(): Array<string>;
|
|
736
|
-
setTagsList(value: Array<string>): void;
|
|
737
|
-
addTags(value: string, index?: number): string;
|
|
738
|
-
|
|
739
|
-
serializeBinary(): Uint8Array;
|
|
740
|
-
toObject(includeInstance?: boolean): TCreateAssetTx;
|
|
741
|
-
static toObject(includeInstance: boolean, msg: CreateAssetTx): TCreateAssetTx;
|
|
742
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
743
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
744
|
-
static serializeBinaryToWriter(message: CreateAssetTx, writer: jspb.BinaryWriter): void;
|
|
745
|
-
static deserializeBinary(bytes: Uint8Array): CreateAssetTx;
|
|
746
|
-
static deserializeBinaryFromReader(message: CreateAssetTx, reader: jspb.BinaryReader): CreateAssetTx;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
146
|
export type TCreateAssetTx = {
|
|
750
147
|
moniker: string,
|
|
751
148
|
data?: google_protobuf_any_pb.Any,
|
|
@@ -760,31 +157,6 @@ export type TCreateAssetTx = {
|
|
|
760
157
|
tags: Array<string>,
|
|
761
158
|
}
|
|
762
159
|
|
|
763
|
-
export class UpdateAssetTx extends jspb.Message {
|
|
764
|
-
getAddress(): string;
|
|
765
|
-
setAddress(value: string): void;
|
|
766
|
-
|
|
767
|
-
getMoniker(): string;
|
|
768
|
-
setMoniker(value: string): void;
|
|
769
|
-
|
|
770
|
-
getConsumed(): boolean;
|
|
771
|
-
setConsumed(value: boolean): void;
|
|
772
|
-
|
|
773
|
-
hasData(): boolean;
|
|
774
|
-
clearData(): void;
|
|
775
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
776
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
777
|
-
|
|
778
|
-
serializeBinary(): Uint8Array;
|
|
779
|
-
toObject(includeInstance?: boolean): TUpdateAssetTx;
|
|
780
|
-
static toObject(includeInstance: boolean, msg: UpdateAssetTx): TUpdateAssetTx;
|
|
781
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
782
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
783
|
-
static serializeBinaryToWriter(message: UpdateAssetTx, writer: jspb.BinaryWriter): void;
|
|
784
|
-
static deserializeBinary(bytes: Uint8Array): UpdateAssetTx;
|
|
785
|
-
static deserializeBinaryFromReader(message: UpdateAssetTx, reader: jspb.BinaryReader): UpdateAssetTx;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
160
|
export type TUpdateAssetTx = {
|
|
789
161
|
address: string,
|
|
790
162
|
moniker: string,
|
|
@@ -792,86 +164,11 @@ export type TUpdateAssetTx = {
|
|
|
792
164
|
data?: google_protobuf_any_pb.Any,
|
|
793
165
|
}
|
|
794
166
|
|
|
795
|
-
export class ConsumeAssetTx extends jspb.Message {
|
|
796
|
-
getAddress(): string;
|
|
797
|
-
setAddress(value: string): void;
|
|
798
|
-
|
|
799
|
-
hasData(): boolean;
|
|
800
|
-
clearData(): void;
|
|
801
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
802
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
803
|
-
|
|
804
|
-
serializeBinary(): Uint8Array;
|
|
805
|
-
toObject(includeInstance?: boolean): TConsumeAssetTx;
|
|
806
|
-
static toObject(includeInstance: boolean, msg: ConsumeAssetTx): TConsumeAssetTx;
|
|
807
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
808
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
809
|
-
static serializeBinaryToWriter(message: ConsumeAssetTx, writer: jspb.BinaryWriter): void;
|
|
810
|
-
static deserializeBinary(bytes: Uint8Array): ConsumeAssetTx;
|
|
811
|
-
static deserializeBinaryFromReader(message: ConsumeAssetTx, reader: jspb.BinaryReader): ConsumeAssetTx;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
167
|
export type TConsumeAssetTx = {
|
|
815
168
|
address: string,
|
|
816
169
|
data?: google_protobuf_any_pb.Any,
|
|
817
170
|
}
|
|
818
171
|
|
|
819
|
-
export class CreateFactoryTx extends jspb.Message {
|
|
820
|
-
getName(): string;
|
|
821
|
-
setName(value: string): void;
|
|
822
|
-
|
|
823
|
-
getDescription(): string;
|
|
824
|
-
setDescription(value: string): void;
|
|
825
|
-
|
|
826
|
-
getSettlement(): string;
|
|
827
|
-
setSettlement(value: string): void;
|
|
828
|
-
|
|
829
|
-
getLimit(): number;
|
|
830
|
-
setLimit(value: number): void;
|
|
831
|
-
|
|
832
|
-
clearTrustedIssuersList(): void;
|
|
833
|
-
getTrustedIssuersList(): Array<string>;
|
|
834
|
-
setTrustedIssuersList(value: Array<string>): void;
|
|
835
|
-
addTrustedIssuers(value: string, index?: number): string;
|
|
836
|
-
|
|
837
|
-
hasInput(): boolean;
|
|
838
|
-
clearInput(): void;
|
|
839
|
-
getInput(): TAssetFactoryInput | undefined;
|
|
840
|
-
setInput(value?: TAssetFactoryInput): void;
|
|
841
|
-
|
|
842
|
-
hasOutput(): boolean;
|
|
843
|
-
clearOutput(): void;
|
|
844
|
-
getOutput(): TCreateAssetTx | undefined;
|
|
845
|
-
setOutput(value?: TCreateAssetTx): void;
|
|
846
|
-
|
|
847
|
-
clearHooksList(): void;
|
|
848
|
-
getHooksList(): Array<type_pb.TAssetFactoryHook>;
|
|
849
|
-
setHooksList(value: Array<type_pb.TAssetFactoryHook>): void;
|
|
850
|
-
addHooks(value?: type_pb.AssetFactoryHook, index?: number): type_pb.AssetFactoryHook;
|
|
851
|
-
|
|
852
|
-
getAddress(): string;
|
|
853
|
-
setAddress(value: string): void;
|
|
854
|
-
|
|
855
|
-
hasDisplay(): boolean;
|
|
856
|
-
clearDisplay(): void;
|
|
857
|
-
getDisplay(): type_pb.TNFTDisplay | undefined;
|
|
858
|
-
setDisplay(value?: type_pb.TNFTDisplay): void;
|
|
859
|
-
|
|
860
|
-
hasData(): boolean;
|
|
861
|
-
clearData(): void;
|
|
862
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
863
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
864
|
-
|
|
865
|
-
serializeBinary(): Uint8Array;
|
|
866
|
-
toObject(includeInstance?: boolean): TCreateFactoryTx;
|
|
867
|
-
static toObject(includeInstance: boolean, msg: CreateFactoryTx): TCreateFactoryTx;
|
|
868
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
869
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
870
|
-
static serializeBinaryToWriter(message: CreateFactoryTx, writer: jspb.BinaryWriter): void;
|
|
871
|
-
static deserializeBinary(bytes: Uint8Array): CreateFactoryTx;
|
|
872
|
-
static deserializeBinaryFromReader(message: CreateFactoryTx, reader: jspb.BinaryReader): CreateFactoryTx;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
172
|
export type TCreateFactoryTx = {
|
|
876
173
|
name: string,
|
|
877
174
|
description: string,
|
|
@@ -886,50 +183,6 @@ export type TCreateFactoryTx = {
|
|
|
886
183
|
data?: google_protobuf_any_pb.Any,
|
|
887
184
|
}
|
|
888
185
|
|
|
889
|
-
export class StakeTx extends jspb.Message {
|
|
890
|
-
getAddress(): string;
|
|
891
|
-
setAddress(value: string): void;
|
|
892
|
-
|
|
893
|
-
getReceiver(): string;
|
|
894
|
-
setReceiver(value: string): void;
|
|
895
|
-
|
|
896
|
-
clearInputsList(): void;
|
|
897
|
-
getInputsList(): Array<type_pb.TTransactionInput>;
|
|
898
|
-
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
899
|
-
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
900
|
-
|
|
901
|
-
getLocked(): boolean;
|
|
902
|
-
setLocked(value: boolean): void;
|
|
903
|
-
|
|
904
|
-
getMessage(): string;
|
|
905
|
-
setMessage(value: string): void;
|
|
906
|
-
|
|
907
|
-
getRevokeWaitingPeriod(): number;
|
|
908
|
-
setRevokeWaitingPeriod(value: number): void;
|
|
909
|
-
|
|
910
|
-
clearSlashersList(): void;
|
|
911
|
-
getSlashersList(): Array<string>;
|
|
912
|
-
setSlashersList(value: Array<string>): void;
|
|
913
|
-
addSlashers(value: string, index?: number): string;
|
|
914
|
-
|
|
915
|
-
getNonce(): string;
|
|
916
|
-
setNonce(value: string): void;
|
|
917
|
-
|
|
918
|
-
hasData(): boolean;
|
|
919
|
-
clearData(): void;
|
|
920
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
921
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
922
|
-
|
|
923
|
-
serializeBinary(): Uint8Array;
|
|
924
|
-
toObject(includeInstance?: boolean): TStakeTx;
|
|
925
|
-
static toObject(includeInstance: boolean, msg: StakeTx): TStakeTx;
|
|
926
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
927
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
928
|
-
static serializeBinaryToWriter(message: StakeTx, writer: jspb.BinaryWriter): void;
|
|
929
|
-
static deserializeBinary(bytes: Uint8Array): StakeTx;
|
|
930
|
-
static deserializeBinaryFromReader(message: StakeTx, reader: jspb.BinaryReader): StakeTx;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
186
|
export type TStakeTx = {
|
|
934
187
|
address: string,
|
|
935
188
|
receiver: string,
|
|
@@ -942,93 +195,18 @@ export type TStakeTx = {
|
|
|
942
195
|
data?: google_protobuf_any_pb.Any,
|
|
943
196
|
}
|
|
944
197
|
|
|
945
|
-
export class RevokeStakeTx extends jspb.Message {
|
|
946
|
-
getAddress(): string;
|
|
947
|
-
setAddress(value: string): void;
|
|
948
|
-
|
|
949
|
-
clearOutputsList(): void;
|
|
950
|
-
getOutputsList(): Array<type_pb.TTransactionInput>;
|
|
951
|
-
setOutputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
952
|
-
addOutputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
953
|
-
|
|
954
|
-
hasData(): boolean;
|
|
955
|
-
clearData(): void;
|
|
956
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
957
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
958
|
-
|
|
959
|
-
serializeBinary(): Uint8Array;
|
|
960
|
-
toObject(includeInstance?: boolean): TRevokeStakeTx;
|
|
961
|
-
static toObject(includeInstance: boolean, msg: RevokeStakeTx): TRevokeStakeTx;
|
|
962
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
963
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
964
|
-
static serializeBinaryToWriter(message: RevokeStakeTx, writer: jspb.BinaryWriter): void;
|
|
965
|
-
static deserializeBinary(bytes: Uint8Array): RevokeStakeTx;
|
|
966
|
-
static deserializeBinaryFromReader(message: RevokeStakeTx, reader: jspb.BinaryReader): RevokeStakeTx;
|
|
967
|
-
}
|
|
968
|
-
|
|
969
198
|
export type TRevokeStakeTx = {
|
|
970
199
|
address: string,
|
|
971
200
|
outputs: Array<type_pb.TTransactionInput>,
|
|
972
201
|
data?: google_protobuf_any_pb.Any,
|
|
973
202
|
}
|
|
974
203
|
|
|
975
|
-
export class ClaimStakeTx extends jspb.Message {
|
|
976
|
-
getAddress(): string;
|
|
977
|
-
setAddress(value: string): void;
|
|
978
|
-
|
|
979
|
-
hasEvidence(): boolean;
|
|
980
|
-
clearEvidence(): void;
|
|
981
|
-
getEvidence(): type_pb.TEvidence | undefined;
|
|
982
|
-
setEvidence(value?: type_pb.TEvidence): void;
|
|
983
|
-
|
|
984
|
-
hasData(): boolean;
|
|
985
|
-
clearData(): void;
|
|
986
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
987
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
988
|
-
|
|
989
|
-
serializeBinary(): Uint8Array;
|
|
990
|
-
toObject(includeInstance?: boolean): TClaimStakeTx;
|
|
991
|
-
static toObject(includeInstance: boolean, msg: ClaimStakeTx): TClaimStakeTx;
|
|
992
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
993
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
994
|
-
static serializeBinaryToWriter(message: ClaimStakeTx, writer: jspb.BinaryWriter): void;
|
|
995
|
-
static deserializeBinary(bytes: Uint8Array): ClaimStakeTx;
|
|
996
|
-
static deserializeBinaryFromReader(message: ClaimStakeTx, reader: jspb.BinaryReader): ClaimStakeTx;
|
|
997
|
-
}
|
|
998
|
-
|
|
999
204
|
export type TClaimStakeTx = {
|
|
1000
205
|
address: string,
|
|
1001
206
|
evidence?: type_pb.TEvidence,
|
|
1002
207
|
data?: google_protobuf_any_pb.Any,
|
|
1003
208
|
}
|
|
1004
209
|
|
|
1005
|
-
export class SlashStakeTx extends jspb.Message {
|
|
1006
|
-
getAddress(): string;
|
|
1007
|
-
setAddress(value: string): void;
|
|
1008
|
-
|
|
1009
|
-
clearOutputsList(): void;
|
|
1010
|
-
getOutputsList(): Array<type_pb.TTransactionInput>;
|
|
1011
|
-
setOutputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
1012
|
-
addOutputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
1013
|
-
|
|
1014
|
-
getMessage(): string;
|
|
1015
|
-
setMessage(value: string): void;
|
|
1016
|
-
|
|
1017
|
-
hasData(): boolean;
|
|
1018
|
-
clearData(): void;
|
|
1019
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1020
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1021
|
-
|
|
1022
|
-
serializeBinary(): Uint8Array;
|
|
1023
|
-
toObject(includeInstance?: boolean): TSlashStakeTx;
|
|
1024
|
-
static toObject(includeInstance: boolean, msg: SlashStakeTx): TSlashStakeTx;
|
|
1025
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1026
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1027
|
-
static serializeBinaryToWriter(message: SlashStakeTx, writer: jspb.BinaryWriter): void;
|
|
1028
|
-
static deserializeBinary(bytes: Uint8Array): SlashStakeTx;
|
|
1029
|
-
static deserializeBinaryFromReader(message: SlashStakeTx, reader: jspb.BinaryReader): SlashStakeTx;
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
210
|
export type TSlashStakeTx = {
|
|
1033
211
|
address: string,
|
|
1034
212
|
outputs: Array<type_pb.TTransactionInput>,
|
|
@@ -1036,33 +214,6 @@ export type TSlashStakeTx = {
|
|
|
1036
214
|
data?: google_protobuf_any_pb.Any,
|
|
1037
215
|
}
|
|
1038
216
|
|
|
1039
|
-
export class ReturnStakeTx extends jspb.Message {
|
|
1040
|
-
getAddress(): string;
|
|
1041
|
-
setAddress(value: string): void;
|
|
1042
|
-
|
|
1043
|
-
clearOutputsList(): void;
|
|
1044
|
-
getOutputsList(): Array<type_pb.TTransactionInput>;
|
|
1045
|
-
setOutputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
1046
|
-
addOutputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
1047
|
-
|
|
1048
|
-
getMessage(): string;
|
|
1049
|
-
setMessage(value: string): void;
|
|
1050
|
-
|
|
1051
|
-
hasData(): boolean;
|
|
1052
|
-
clearData(): void;
|
|
1053
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1054
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1055
|
-
|
|
1056
|
-
serializeBinary(): Uint8Array;
|
|
1057
|
-
toObject(includeInstance?: boolean): TReturnStakeTx;
|
|
1058
|
-
static toObject(includeInstance: boolean, msg: ReturnStakeTx): TReturnStakeTx;
|
|
1059
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1060
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1061
|
-
static serializeBinaryToWriter(message: ReturnStakeTx, writer: jspb.BinaryWriter): void;
|
|
1062
|
-
static deserializeBinary(bytes: Uint8Array): ReturnStakeTx;
|
|
1063
|
-
static deserializeBinaryFromReader(message: ReturnStakeTx, reader: jspb.BinaryReader): ReturnStakeTx;
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
217
|
export type TReturnStakeTx = {
|
|
1067
218
|
address: string,
|
|
1068
219
|
outputs: Array<type_pb.TTransactionInput>,
|
|
@@ -1070,117 +221,6 @@ export type TReturnStakeTx = {
|
|
|
1070
221
|
data?: google_protobuf_any_pb.Any,
|
|
1071
222
|
}
|
|
1072
223
|
|
|
1073
|
-
export class CreateRollupTx extends jspb.Message {
|
|
1074
|
-
getAddress(): string;
|
|
1075
|
-
setAddress(value: string): void;
|
|
1076
|
-
|
|
1077
|
-
getTokenAddress(): string;
|
|
1078
|
-
setTokenAddress(value: string): void;
|
|
1079
|
-
|
|
1080
|
-
getVaultAddress(): string;
|
|
1081
|
-
setVaultAddress(value: string): void;
|
|
1082
|
-
|
|
1083
|
-
getContractAddress(): string;
|
|
1084
|
-
setContractAddress(value: string): void;
|
|
1085
|
-
|
|
1086
|
-
clearSeedValidatorsList(): void;
|
|
1087
|
-
getSeedValidatorsList(): Array<type_pb.TRollupValidator>;
|
|
1088
|
-
setSeedValidatorsList(value: Array<type_pb.TRollupValidator>): void;
|
|
1089
|
-
addSeedValidators(value?: type_pb.RollupValidator, index?: number): type_pb.RollupValidator;
|
|
1090
|
-
|
|
1091
|
-
getMinStakeAmount(): string;
|
|
1092
|
-
setMinStakeAmount(value: string): void;
|
|
1093
|
-
|
|
1094
|
-
getMaxStakeAmount(): string;
|
|
1095
|
-
setMaxStakeAmount(value: string): void;
|
|
1096
|
-
|
|
1097
|
-
getMinSignerCount(): number;
|
|
1098
|
-
setMinSignerCount(value: number): void;
|
|
1099
|
-
|
|
1100
|
-
getMaxSignerCount(): number;
|
|
1101
|
-
setMaxSignerCount(value: number): void;
|
|
1102
|
-
|
|
1103
|
-
getMinBlockSize(): number;
|
|
1104
|
-
setMinBlockSize(value: number): void;
|
|
1105
|
-
|
|
1106
|
-
getMaxBlockSize(): number;
|
|
1107
|
-
setMaxBlockSize(value: number): void;
|
|
1108
|
-
|
|
1109
|
-
getMinBlockInterval(): number;
|
|
1110
|
-
setMinBlockInterval(value: number): void;
|
|
1111
|
-
|
|
1112
|
-
getMinBlockConfirmation(): number;
|
|
1113
|
-
setMinBlockConfirmation(value: number): void;
|
|
1114
|
-
|
|
1115
|
-
getForeignChainType(): string;
|
|
1116
|
-
setForeignChainType(value: string): void;
|
|
1117
|
-
|
|
1118
|
-
getForeignChainId(): string;
|
|
1119
|
-
setForeignChainId(value: string): void;
|
|
1120
|
-
|
|
1121
|
-
getDepositFeeRate(): number;
|
|
1122
|
-
setDepositFeeRate(value: number): void;
|
|
1123
|
-
|
|
1124
|
-
getWithdrawFeeRate(): number;
|
|
1125
|
-
setWithdrawFeeRate(value: number): void;
|
|
1126
|
-
|
|
1127
|
-
getProposerFeeShare(): number;
|
|
1128
|
-
setProposerFeeShare(value: number): void;
|
|
1129
|
-
|
|
1130
|
-
getMinDepositAmount(): string;
|
|
1131
|
-
setMinDepositAmount(value: string): void;
|
|
1132
|
-
|
|
1133
|
-
getMinWithdrawAmount(): string;
|
|
1134
|
-
setMinWithdrawAmount(value: string): void;
|
|
1135
|
-
|
|
1136
|
-
getMaxDepositAmount(): string;
|
|
1137
|
-
setMaxDepositAmount(value: string): void;
|
|
1138
|
-
|
|
1139
|
-
getMaxWithdrawAmount(): string;
|
|
1140
|
-
setMaxWithdrawAmount(value: string): void;
|
|
1141
|
-
|
|
1142
|
-
getMinDepositFee(): string;
|
|
1143
|
-
setMinDepositFee(value: string): void;
|
|
1144
|
-
|
|
1145
|
-
getMaxDepositFee(): string;
|
|
1146
|
-
setMaxDepositFee(value: string): void;
|
|
1147
|
-
|
|
1148
|
-
getMinWithdrawFee(): string;
|
|
1149
|
-
setMinWithdrawFee(value: string): void;
|
|
1150
|
-
|
|
1151
|
-
getMaxWithdrawFee(): string;
|
|
1152
|
-
setMaxWithdrawFee(value: string): void;
|
|
1153
|
-
|
|
1154
|
-
getPaused(): boolean;
|
|
1155
|
-
setPaused(value: boolean): void;
|
|
1156
|
-
|
|
1157
|
-
getLeaveWaitingPeriod(): number;
|
|
1158
|
-
setLeaveWaitingPeriod(value: number): void;
|
|
1159
|
-
|
|
1160
|
-
getPublisherFeeShare(): number;
|
|
1161
|
-
setPublisherFeeShare(value: number): void;
|
|
1162
|
-
|
|
1163
|
-
getPublishWaitingPeriod(): number;
|
|
1164
|
-
setPublishWaitingPeriod(value: number): void;
|
|
1165
|
-
|
|
1166
|
-
getPublishSlashRate(): number;
|
|
1167
|
-
setPublishSlashRate(value: number): void;
|
|
1168
|
-
|
|
1169
|
-
hasData(): boolean;
|
|
1170
|
-
clearData(): void;
|
|
1171
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1172
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1173
|
-
|
|
1174
|
-
serializeBinary(): Uint8Array;
|
|
1175
|
-
toObject(includeInstance?: boolean): TCreateRollupTx;
|
|
1176
|
-
static toObject(includeInstance: boolean, msg: CreateRollupTx): TCreateRollupTx;
|
|
1177
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1178
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1179
|
-
static serializeBinaryToWriter(message: CreateRollupTx, writer: jspb.BinaryWriter): void;
|
|
1180
|
-
static deserializeBinary(bytes: Uint8Array): CreateRollupTx;
|
|
1181
|
-
static deserializeBinaryFromReader(message: CreateRollupTx, reader: jspb.BinaryReader): CreateRollupTx;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
224
|
export type TCreateRollupTx = {
|
|
1185
225
|
address: string,
|
|
1186
226
|
tokenAddress: string,
|
|
@@ -1216,94 +256,6 @@ export type TCreateRollupTx = {
|
|
|
1216
256
|
data?: google_protobuf_any_pb.Any,
|
|
1217
257
|
}
|
|
1218
258
|
|
|
1219
|
-
export class UpdateRollupTx extends jspb.Message {
|
|
1220
|
-
getMinStakeAmount(): string;
|
|
1221
|
-
setMinStakeAmount(value: string): void;
|
|
1222
|
-
|
|
1223
|
-
getMaxStakeAmount(): string;
|
|
1224
|
-
setMaxStakeAmount(value: string): void;
|
|
1225
|
-
|
|
1226
|
-
getMinSignerCount(): number;
|
|
1227
|
-
setMinSignerCount(value: number): void;
|
|
1228
|
-
|
|
1229
|
-
getMaxSignerCount(): number;
|
|
1230
|
-
setMaxSignerCount(value: number): void;
|
|
1231
|
-
|
|
1232
|
-
getMinBlockSize(): number;
|
|
1233
|
-
setMinBlockSize(value: number): void;
|
|
1234
|
-
|
|
1235
|
-
getMaxBlockSize(): number;
|
|
1236
|
-
setMaxBlockSize(value: number): void;
|
|
1237
|
-
|
|
1238
|
-
getMinBlockInterval(): number;
|
|
1239
|
-
setMinBlockInterval(value: number): void;
|
|
1240
|
-
|
|
1241
|
-
getMinBlockConfirmation(): number;
|
|
1242
|
-
setMinBlockConfirmation(value: number): void;
|
|
1243
|
-
|
|
1244
|
-
getDepositFeeRate(): number;
|
|
1245
|
-
setDepositFeeRate(value: number): void;
|
|
1246
|
-
|
|
1247
|
-
getWithdrawFeeRate(): number;
|
|
1248
|
-
setWithdrawFeeRate(value: number): void;
|
|
1249
|
-
|
|
1250
|
-
getProposerFeeShare(): number;
|
|
1251
|
-
setProposerFeeShare(value: number): void;
|
|
1252
|
-
|
|
1253
|
-
getMinDepositAmount(): string;
|
|
1254
|
-
setMinDepositAmount(value: string): void;
|
|
1255
|
-
|
|
1256
|
-
getMinWithdrawAmount(): string;
|
|
1257
|
-
setMinWithdrawAmount(value: string): void;
|
|
1258
|
-
|
|
1259
|
-
getMaxDepositAmount(): string;
|
|
1260
|
-
setMaxDepositAmount(value: string): void;
|
|
1261
|
-
|
|
1262
|
-
getMaxWithdrawAmount(): string;
|
|
1263
|
-
setMaxWithdrawAmount(value: string): void;
|
|
1264
|
-
|
|
1265
|
-
getMinDepositFee(): string;
|
|
1266
|
-
setMinDepositFee(value: string): void;
|
|
1267
|
-
|
|
1268
|
-
getMaxDepositFee(): string;
|
|
1269
|
-
setMaxDepositFee(value: string): void;
|
|
1270
|
-
|
|
1271
|
-
getMinWithdrawFee(): string;
|
|
1272
|
-
setMinWithdrawFee(value: string): void;
|
|
1273
|
-
|
|
1274
|
-
getMaxWithdrawFee(): string;
|
|
1275
|
-
setMaxWithdrawFee(value: string): void;
|
|
1276
|
-
|
|
1277
|
-
getPublisherFeeShare(): number;
|
|
1278
|
-
setPublisherFeeShare(value: number): void;
|
|
1279
|
-
|
|
1280
|
-
getLeaveWaitingPeriod(): number;
|
|
1281
|
-
setLeaveWaitingPeriod(value: number): void;
|
|
1282
|
-
|
|
1283
|
-
getPublishWaitingPeriod(): number;
|
|
1284
|
-
setPublishWaitingPeriod(value: number): void;
|
|
1285
|
-
|
|
1286
|
-
getPublishSlashRate(): number;
|
|
1287
|
-
setPublishSlashRate(value: number): void;
|
|
1288
|
-
|
|
1289
|
-
getRollup(): string;
|
|
1290
|
-
setRollup(value: string): void;
|
|
1291
|
-
|
|
1292
|
-
hasData(): boolean;
|
|
1293
|
-
clearData(): void;
|
|
1294
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1295
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1296
|
-
|
|
1297
|
-
serializeBinary(): Uint8Array;
|
|
1298
|
-
toObject(includeInstance?: boolean): TUpdateRollupTx;
|
|
1299
|
-
static toObject(includeInstance: boolean, msg: UpdateRollupTx): TUpdateRollupTx;
|
|
1300
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1301
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1302
|
-
static serializeBinaryToWriter(message: UpdateRollupTx, writer: jspb.BinaryWriter): void;
|
|
1303
|
-
static deserializeBinary(bytes: Uint8Array): UpdateRollupTx;
|
|
1304
|
-
static deserializeBinaryFromReader(message: UpdateRollupTx, reader: jspb.BinaryReader): UpdateRollupTx;
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
259
|
export type TUpdateRollupTx = {
|
|
1308
260
|
minStakeAmount: string,
|
|
1309
261
|
maxStakeAmount: string,
|
|
@@ -1332,38 +284,6 @@ export type TUpdateRollupTx = {
|
|
|
1332
284
|
data?: google_protobuf_any_pb.Any,
|
|
1333
285
|
}
|
|
1334
286
|
|
|
1335
|
-
export class JoinRollupTx extends jspb.Message {
|
|
1336
|
-
getRollup(): string;
|
|
1337
|
-
setRollup(value: string): void;
|
|
1338
|
-
|
|
1339
|
-
getEndpoint(): string;
|
|
1340
|
-
setEndpoint(value: string): void;
|
|
1341
|
-
|
|
1342
|
-
hasEvidence(): boolean;
|
|
1343
|
-
clearEvidence(): void;
|
|
1344
|
-
getEvidence(): type_pb.TEvidence | undefined;
|
|
1345
|
-
setEvidence(value?: type_pb.TEvidence): void;
|
|
1346
|
-
|
|
1347
|
-
clearSignaturesList(): void;
|
|
1348
|
-
getSignaturesList(): Array<type_pb.TMultisig>;
|
|
1349
|
-
setSignaturesList(value: Array<type_pb.TMultisig>): void;
|
|
1350
|
-
addSignatures(value?: type_pb.Multisig, index?: number): type_pb.Multisig;
|
|
1351
|
-
|
|
1352
|
-
hasData(): boolean;
|
|
1353
|
-
clearData(): void;
|
|
1354
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1355
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1356
|
-
|
|
1357
|
-
serializeBinary(): Uint8Array;
|
|
1358
|
-
toObject(includeInstance?: boolean): TJoinRollupTx;
|
|
1359
|
-
static toObject(includeInstance: boolean, msg: JoinRollupTx): TJoinRollupTx;
|
|
1360
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1361
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1362
|
-
static serializeBinaryToWriter(message: JoinRollupTx, writer: jspb.BinaryWriter): void;
|
|
1363
|
-
static deserializeBinary(bytes: Uint8Array): JoinRollupTx;
|
|
1364
|
-
static deserializeBinaryFromReader(message: JoinRollupTx, reader: jspb.BinaryReader): JoinRollupTx;
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1367
287
|
export type TJoinRollupTx = {
|
|
1368
288
|
rollup: string,
|
|
1369
289
|
endpoint: string,
|
|
@@ -1372,35 +292,6 @@ export type TJoinRollupTx = {
|
|
|
1372
292
|
data?: google_protobuf_any_pb.Any,
|
|
1373
293
|
}
|
|
1374
294
|
|
|
1375
|
-
export class LeaveRollupTx extends jspb.Message {
|
|
1376
|
-
getRollup(): string;
|
|
1377
|
-
setRollup(value: string): void;
|
|
1378
|
-
|
|
1379
|
-
hasEvidence(): boolean;
|
|
1380
|
-
clearEvidence(): void;
|
|
1381
|
-
getEvidence(): type_pb.TEvidence | undefined;
|
|
1382
|
-
setEvidence(value?: type_pb.TEvidence): void;
|
|
1383
|
-
|
|
1384
|
-
clearSignaturesList(): void;
|
|
1385
|
-
getSignaturesList(): Array<type_pb.TMultisig>;
|
|
1386
|
-
setSignaturesList(value: Array<type_pb.TMultisig>): void;
|
|
1387
|
-
addSignatures(value?: type_pb.Multisig, index?: number): type_pb.Multisig;
|
|
1388
|
-
|
|
1389
|
-
hasData(): boolean;
|
|
1390
|
-
clearData(): void;
|
|
1391
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1392
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1393
|
-
|
|
1394
|
-
serializeBinary(): Uint8Array;
|
|
1395
|
-
toObject(includeInstance?: boolean): TLeaveRollupTx;
|
|
1396
|
-
static toObject(includeInstance: boolean, msg: LeaveRollupTx): TLeaveRollupTx;
|
|
1397
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1398
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1399
|
-
static serializeBinaryToWriter(message: LeaveRollupTx, writer: jspb.BinaryWriter): void;
|
|
1400
|
-
static deserializeBinary(bytes: Uint8Array): LeaveRollupTx;
|
|
1401
|
-
static deserializeBinaryFromReader(message: LeaveRollupTx, reader: jspb.BinaryReader): LeaveRollupTx;
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
295
|
export type TLeaveRollupTx = {
|
|
1405
296
|
rollup: string,
|
|
1406
297
|
evidence?: type_pb.TEvidence,
|
|
@@ -1408,59 +299,6 @@ export type TLeaveRollupTx = {
|
|
|
1408
299
|
data?: google_protobuf_any_pb.Any,
|
|
1409
300
|
}
|
|
1410
301
|
|
|
1411
|
-
export class CreateRollupBlockTx extends jspb.Message {
|
|
1412
|
-
getHash(): string;
|
|
1413
|
-
setHash(value: string): void;
|
|
1414
|
-
|
|
1415
|
-
getHeight(): number;
|
|
1416
|
-
setHeight(value: number): void;
|
|
1417
|
-
|
|
1418
|
-
getMerkleRoot(): string;
|
|
1419
|
-
setMerkleRoot(value: string): void;
|
|
1420
|
-
|
|
1421
|
-
getPreviousHash(): string;
|
|
1422
|
-
setPreviousHash(value: string): void;
|
|
1423
|
-
|
|
1424
|
-
getTxsHash(): string;
|
|
1425
|
-
setTxsHash(value: string): void;
|
|
1426
|
-
|
|
1427
|
-
clearTxsList(): void;
|
|
1428
|
-
getTxsList(): Array<string>;
|
|
1429
|
-
setTxsList(value: Array<string>): void;
|
|
1430
|
-
addTxs(value: string, index?: number): string;
|
|
1431
|
-
|
|
1432
|
-
getProposer(): string;
|
|
1433
|
-
setProposer(value: string): void;
|
|
1434
|
-
|
|
1435
|
-
clearSignaturesList(): void;
|
|
1436
|
-
getSignaturesList(): Array<type_pb.TMultisig>;
|
|
1437
|
-
setSignaturesList(value: Array<type_pb.TMultisig>): void;
|
|
1438
|
-
addSignatures(value?: type_pb.Multisig, index?: number): type_pb.Multisig;
|
|
1439
|
-
|
|
1440
|
-
getRollup(): string;
|
|
1441
|
-
setRollup(value: string): void;
|
|
1442
|
-
|
|
1443
|
-
getMinReward(): string;
|
|
1444
|
-
setMinReward(value: string): void;
|
|
1445
|
-
|
|
1446
|
-
getGovernance(): boolean;
|
|
1447
|
-
setGovernance(value: boolean): void;
|
|
1448
|
-
|
|
1449
|
-
hasData(): boolean;
|
|
1450
|
-
clearData(): void;
|
|
1451
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1452
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1453
|
-
|
|
1454
|
-
serializeBinary(): Uint8Array;
|
|
1455
|
-
toObject(includeInstance?: boolean): TCreateRollupBlockTx;
|
|
1456
|
-
static toObject(includeInstance: boolean, msg: CreateRollupBlockTx): TCreateRollupBlockTx;
|
|
1457
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1458
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1459
|
-
static serializeBinaryToWriter(message: CreateRollupBlockTx, writer: jspb.BinaryWriter): void;
|
|
1460
|
-
static deserializeBinary(bytes: Uint8Array): CreateRollupBlockTx;
|
|
1461
|
-
static deserializeBinaryFromReader(message: CreateRollupBlockTx, reader: jspb.BinaryReader): CreateRollupBlockTx;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
302
|
export type TCreateRollupBlockTx = {
|
|
1465
303
|
hash: string,
|
|
1466
304
|
height: number,
|
|
@@ -1476,39 +314,6 @@ export type TCreateRollupBlockTx = {
|
|
|
1476
314
|
data?: google_protobuf_any_pb.Any,
|
|
1477
315
|
}
|
|
1478
316
|
|
|
1479
|
-
export class ClaimBlockRewardTx extends jspb.Message {
|
|
1480
|
-
getRollup(): string;
|
|
1481
|
-
setRollup(value: string): void;
|
|
1482
|
-
|
|
1483
|
-
getBlockHeight(): number;
|
|
1484
|
-
setBlockHeight(value: number): void;
|
|
1485
|
-
|
|
1486
|
-
getBlockHash(): string;
|
|
1487
|
-
setBlockHash(value: string): void;
|
|
1488
|
-
|
|
1489
|
-
hasEvidence(): boolean;
|
|
1490
|
-
clearEvidence(): void;
|
|
1491
|
-
getEvidence(): type_pb.TEvidence | undefined;
|
|
1492
|
-
setEvidence(value?: type_pb.TEvidence): void;
|
|
1493
|
-
|
|
1494
|
-
getPublisher(): string;
|
|
1495
|
-
setPublisher(value: string): void;
|
|
1496
|
-
|
|
1497
|
-
hasData(): boolean;
|
|
1498
|
-
clearData(): void;
|
|
1499
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1500
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1501
|
-
|
|
1502
|
-
serializeBinary(): Uint8Array;
|
|
1503
|
-
toObject(includeInstance?: boolean): TClaimBlockRewardTx;
|
|
1504
|
-
static toObject(includeInstance: boolean, msg: ClaimBlockRewardTx): TClaimBlockRewardTx;
|
|
1505
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1506
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1507
|
-
static serializeBinaryToWriter(message: ClaimBlockRewardTx, writer: jspb.BinaryWriter): void;
|
|
1508
|
-
static deserializeBinary(bytes: Uint8Array): ClaimBlockRewardTx;
|
|
1509
|
-
static deserializeBinaryFromReader(message: ClaimBlockRewardTx, reader: jspb.BinaryReader): ClaimBlockRewardTx;
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
317
|
export type TClaimBlockRewardTx = {
|
|
1513
318
|
rollup: string,
|
|
1514
319
|
blockHeight: number,
|
|
@@ -1518,110 +323,22 @@ export type TClaimBlockRewardTx = {
|
|
|
1518
323
|
data?: google_protobuf_any_pb.Any,
|
|
1519
324
|
}
|
|
1520
325
|
|
|
1521
|
-
export class PauseRollupTx extends jspb.Message {
|
|
1522
|
-
getRollup(): string;
|
|
1523
|
-
setRollup(value: string): void;
|
|
1524
|
-
|
|
1525
|
-
hasData(): boolean;
|
|
1526
|
-
clearData(): void;
|
|
1527
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1528
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1529
|
-
|
|
1530
|
-
serializeBinary(): Uint8Array;
|
|
1531
|
-
toObject(includeInstance?: boolean): TPauseRollupTx;
|
|
1532
|
-
static toObject(includeInstance: boolean, msg: PauseRollupTx): TPauseRollupTx;
|
|
1533
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1534
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1535
|
-
static serializeBinaryToWriter(message: PauseRollupTx, writer: jspb.BinaryWriter): void;
|
|
1536
|
-
static deserializeBinary(bytes: Uint8Array): PauseRollupTx;
|
|
1537
|
-
static deserializeBinaryFromReader(message: PauseRollupTx, reader: jspb.BinaryReader): PauseRollupTx;
|
|
1538
|
-
}
|
|
1539
|
-
|
|
1540
326
|
export type TPauseRollupTx = {
|
|
1541
327
|
rollup: string,
|
|
1542
328
|
data?: google_protobuf_any_pb.Any,
|
|
1543
329
|
}
|
|
1544
330
|
|
|
1545
|
-
export class ResumeRollupTx extends jspb.Message {
|
|
1546
|
-
getRollup(): string;
|
|
1547
|
-
setRollup(value: string): void;
|
|
1548
|
-
|
|
1549
|
-
hasData(): boolean;
|
|
1550
|
-
clearData(): void;
|
|
1551
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1552
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1553
|
-
|
|
1554
|
-
serializeBinary(): Uint8Array;
|
|
1555
|
-
toObject(includeInstance?: boolean): TResumeRollupTx;
|
|
1556
|
-
static toObject(includeInstance: boolean, msg: ResumeRollupTx): TResumeRollupTx;
|
|
1557
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1558
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1559
|
-
static serializeBinaryToWriter(message: ResumeRollupTx, writer: jspb.BinaryWriter): void;
|
|
1560
|
-
static deserializeBinary(bytes: Uint8Array): ResumeRollupTx;
|
|
1561
|
-
static deserializeBinaryFromReader(message: ResumeRollupTx, reader: jspb.BinaryReader): ResumeRollupTx;
|
|
1562
|
-
}
|
|
1563
|
-
|
|
1564
331
|
export type TResumeRollupTx = {
|
|
1565
332
|
rollup: string,
|
|
1566
333
|
data?: google_protobuf_any_pb.Any,
|
|
1567
334
|
}
|
|
1568
335
|
|
|
1569
|
-
export class CloseRollupTx extends jspb.Message {
|
|
1570
|
-
getRollup(): string;
|
|
1571
|
-
setRollup(value: string): void;
|
|
1572
|
-
|
|
1573
|
-
getMessage(): string;
|
|
1574
|
-
setMessage(value: string): void;
|
|
1575
|
-
|
|
1576
|
-
hasData(): boolean;
|
|
1577
|
-
clearData(): void;
|
|
1578
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1579
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1580
|
-
|
|
1581
|
-
serializeBinary(): Uint8Array;
|
|
1582
|
-
toObject(includeInstance?: boolean): TCloseRollupTx;
|
|
1583
|
-
static toObject(includeInstance: boolean, msg: CloseRollupTx): TCloseRollupTx;
|
|
1584
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1585
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1586
|
-
static serializeBinaryToWriter(message: CloseRollupTx, writer: jspb.BinaryWriter): void;
|
|
1587
|
-
static deserializeBinary(bytes: Uint8Array): CloseRollupTx;
|
|
1588
|
-
static deserializeBinaryFromReader(message: CloseRollupTx, reader: jspb.BinaryReader): CloseRollupTx;
|
|
1589
|
-
}
|
|
1590
|
-
|
|
1591
336
|
export type TCloseRollupTx = {
|
|
1592
337
|
rollup: string,
|
|
1593
338
|
message: string,
|
|
1594
339
|
data?: google_protobuf_any_pb.Any,
|
|
1595
340
|
}
|
|
1596
341
|
|
|
1597
|
-
export class MigrateRollupTx extends jspb.Message {
|
|
1598
|
-
getRollup(): string;
|
|
1599
|
-
setRollup(value: string): void;
|
|
1600
|
-
|
|
1601
|
-
getTo(): string;
|
|
1602
|
-
setTo(value: string): void;
|
|
1603
|
-
|
|
1604
|
-
getType(): string;
|
|
1605
|
-
setType(value: string): void;
|
|
1606
|
-
|
|
1607
|
-
getMessage(): string;
|
|
1608
|
-
setMessage(value: string): void;
|
|
1609
|
-
|
|
1610
|
-
hasData(): boolean;
|
|
1611
|
-
clearData(): void;
|
|
1612
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1613
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1614
|
-
|
|
1615
|
-
serializeBinary(): Uint8Array;
|
|
1616
|
-
toObject(includeInstance?: boolean): TMigrateRollupTx;
|
|
1617
|
-
static toObject(includeInstance: boolean, msg: MigrateRollupTx): TMigrateRollupTx;
|
|
1618
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1619
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1620
|
-
static serializeBinaryToWriter(message: MigrateRollupTx, writer: jspb.BinaryWriter): void;
|
|
1621
|
-
static deserializeBinary(bytes: Uint8Array): MigrateRollupTx;
|
|
1622
|
-
static deserializeBinaryFromReader(message: MigrateRollupTx, reader: jspb.BinaryReader): MigrateRollupTx;
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
342
|
export type TMigrateRollupTx = {
|
|
1626
343
|
rollup: string,
|
|
1627
344
|
to: string,
|
|
@@ -1630,44 +347,6 @@ export type TMigrateRollupTx = {
|
|
|
1630
347
|
data?: google_protobuf_any_pb.Any,
|
|
1631
348
|
}
|
|
1632
349
|
|
|
1633
|
-
export class DepositTokenV2Tx extends jspb.Message {
|
|
1634
|
-
hasToken(): boolean;
|
|
1635
|
-
clearToken(): void;
|
|
1636
|
-
getToken(): type_pb.TTokenInput | undefined;
|
|
1637
|
-
setToken(value?: type_pb.TTokenInput): void;
|
|
1638
|
-
|
|
1639
|
-
getTo(): string;
|
|
1640
|
-
setTo(value: string): void;
|
|
1641
|
-
|
|
1642
|
-
getProposer(): string;
|
|
1643
|
-
setProposer(value: string): void;
|
|
1644
|
-
|
|
1645
|
-
hasEvidence(): boolean;
|
|
1646
|
-
clearEvidence(): void;
|
|
1647
|
-
getEvidence(): type_pb.TEvidence | undefined;
|
|
1648
|
-
setEvidence(value?: type_pb.TEvidence): void;
|
|
1649
|
-
|
|
1650
|
-
getRollup(): string;
|
|
1651
|
-
setRollup(value: string): void;
|
|
1652
|
-
|
|
1653
|
-
getActualFee(): string;
|
|
1654
|
-
setActualFee(value: string): void;
|
|
1655
|
-
|
|
1656
|
-
hasData(): boolean;
|
|
1657
|
-
clearData(): void;
|
|
1658
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1659
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1660
|
-
|
|
1661
|
-
serializeBinary(): Uint8Array;
|
|
1662
|
-
toObject(includeInstance?: boolean): TDepositTokenV2Tx;
|
|
1663
|
-
static toObject(includeInstance: boolean, msg: DepositTokenV2Tx): TDepositTokenV2Tx;
|
|
1664
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1665
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1666
|
-
static serializeBinaryToWriter(message: DepositTokenV2Tx, writer: jspb.BinaryWriter): void;
|
|
1667
|
-
static deserializeBinary(bytes: Uint8Array): DepositTokenV2Tx;
|
|
1668
|
-
static deserializeBinaryFromReader(message: DepositTokenV2Tx, reader: jspb.BinaryReader): DepositTokenV2Tx;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
350
|
export type TDepositTokenV2Tx = {
|
|
1672
351
|
token?: type_pb.TTokenInput,
|
|
1673
352
|
to: string,
|
|
@@ -1678,42 +357,6 @@ export type TDepositTokenV2Tx = {
|
|
|
1678
357
|
data?: google_protobuf_any_pb.Any,
|
|
1679
358
|
}
|
|
1680
359
|
|
|
1681
|
-
export class WithdrawTokenV2Tx extends jspb.Message {
|
|
1682
|
-
hasToken(): boolean;
|
|
1683
|
-
clearToken(): void;
|
|
1684
|
-
getToken(): type_pb.TTokenInput | undefined;
|
|
1685
|
-
setToken(value?: type_pb.TTokenInput): void;
|
|
1686
|
-
|
|
1687
|
-
getTo(): string;
|
|
1688
|
-
setTo(value: string): void;
|
|
1689
|
-
|
|
1690
|
-
getRollup(): string;
|
|
1691
|
-
setRollup(value: string): void;
|
|
1692
|
-
|
|
1693
|
-
getProposer(): string;
|
|
1694
|
-
setProposer(value: string): void;
|
|
1695
|
-
|
|
1696
|
-
getMaxFee(): string;
|
|
1697
|
-
setMaxFee(value: string): void;
|
|
1698
|
-
|
|
1699
|
-
getActualFee(): string;
|
|
1700
|
-
setActualFee(value: string): void;
|
|
1701
|
-
|
|
1702
|
-
hasData(): boolean;
|
|
1703
|
-
clearData(): void;
|
|
1704
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1705
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1706
|
-
|
|
1707
|
-
serializeBinary(): Uint8Array;
|
|
1708
|
-
toObject(includeInstance?: boolean): TWithdrawTokenV2Tx;
|
|
1709
|
-
static toObject(includeInstance: boolean, msg: WithdrawTokenV2Tx): TWithdrawTokenV2Tx;
|
|
1710
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1711
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1712
|
-
static serializeBinaryToWriter(message: WithdrawTokenV2Tx, writer: jspb.BinaryWriter): void;
|
|
1713
|
-
static deserializeBinary(bytes: Uint8Array): WithdrawTokenV2Tx;
|
|
1714
|
-
static deserializeBinaryFromReader(message: WithdrawTokenV2Tx, reader: jspb.BinaryReader): WithdrawTokenV2Tx;
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
360
|
export type TWithdrawTokenV2Tx = {
|
|
1718
361
|
token?: type_pb.TTokenInput,
|
|
1719
362
|
to: string,
|
|
@@ -1724,41 +367,6 @@ export type TWithdrawTokenV2Tx = {
|
|
|
1724
367
|
data?: google_protobuf_any_pb.Any,
|
|
1725
368
|
}
|
|
1726
369
|
|
|
1727
|
-
export class CreateTokenFactoryTx extends jspb.Message {
|
|
1728
|
-
getAddress(): string;
|
|
1729
|
-
setAddress(value: string): void;
|
|
1730
|
-
|
|
1731
|
-
getFeeRate(): number;
|
|
1732
|
-
setFeeRate(value: number): void;
|
|
1733
|
-
|
|
1734
|
-
hasToken(): boolean;
|
|
1735
|
-
clearToken(): void;
|
|
1736
|
-
getToken(): type_pb.TTokenInfo | undefined;
|
|
1737
|
-
setToken(value?: type_pb.TTokenInfo): void;
|
|
1738
|
-
|
|
1739
|
-
getReserveAddress(): string;
|
|
1740
|
-
setReserveAddress(value: string): void;
|
|
1741
|
-
|
|
1742
|
-
hasCurve(): boolean;
|
|
1743
|
-
clearCurve(): void;
|
|
1744
|
-
getCurve(): type_pb.TCurveConfig | undefined;
|
|
1745
|
-
setCurve(value?: type_pb.TCurveConfig): void;
|
|
1746
|
-
|
|
1747
|
-
hasData(): boolean;
|
|
1748
|
-
clearData(): void;
|
|
1749
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1750
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1751
|
-
|
|
1752
|
-
serializeBinary(): Uint8Array;
|
|
1753
|
-
toObject(includeInstance?: boolean): TCreateTokenFactoryTx;
|
|
1754
|
-
static toObject(includeInstance: boolean, msg: CreateTokenFactoryTx): TCreateTokenFactoryTx;
|
|
1755
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1756
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1757
|
-
static serializeBinaryToWriter(message: CreateTokenFactoryTx, writer: jspb.BinaryWriter): void;
|
|
1758
|
-
static deserializeBinary(bytes: Uint8Array): CreateTokenFactoryTx;
|
|
1759
|
-
static deserializeBinaryFromReader(message: CreateTokenFactoryTx, reader: jspb.BinaryReader): CreateTokenFactoryTx;
|
|
1760
|
-
}
|
|
1761
|
-
|
|
1762
370
|
export type TCreateTokenFactoryTx = {
|
|
1763
371
|
address: string,
|
|
1764
372
|
feeRate: number,
|
|
@@ -1768,33 +376,6 @@ export type TCreateTokenFactoryTx = {
|
|
|
1768
376
|
data?: google_protobuf_any_pb.Any,
|
|
1769
377
|
}
|
|
1770
378
|
|
|
1771
|
-
export class UpdateTokenFactoryTx extends jspb.Message {
|
|
1772
|
-
getAddress(): string;
|
|
1773
|
-
setAddress(value: string): void;
|
|
1774
|
-
|
|
1775
|
-
getFeeRate(): number;
|
|
1776
|
-
setFeeRate(value: number): void;
|
|
1777
|
-
|
|
1778
|
-
hasToken(): boolean;
|
|
1779
|
-
clearToken(): void;
|
|
1780
|
-
getToken(): type_pb.TTokenInfo | undefined;
|
|
1781
|
-
setToken(value?: type_pb.TTokenInfo): void;
|
|
1782
|
-
|
|
1783
|
-
hasData(): boolean;
|
|
1784
|
-
clearData(): void;
|
|
1785
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1786
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1787
|
-
|
|
1788
|
-
serializeBinary(): Uint8Array;
|
|
1789
|
-
toObject(includeInstance?: boolean): TUpdateTokenFactoryTx;
|
|
1790
|
-
static toObject(includeInstance: boolean, msg: UpdateTokenFactoryTx): TUpdateTokenFactoryTx;
|
|
1791
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1792
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1793
|
-
static serializeBinaryToWriter(message: UpdateTokenFactoryTx, writer: jspb.BinaryWriter): void;
|
|
1794
|
-
static deserializeBinary(bytes: Uint8Array): UpdateTokenFactoryTx;
|
|
1795
|
-
static deserializeBinaryFromReader(message: UpdateTokenFactoryTx, reader: jspb.BinaryReader): UpdateTokenFactoryTx;
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
379
|
export type TUpdateTokenFactoryTx = {
|
|
1799
380
|
address: string,
|
|
1800
381
|
feeRate: number,
|
|
@@ -1802,36 +383,6 @@ export type TUpdateTokenFactoryTx = {
|
|
|
1802
383
|
data?: google_protobuf_any_pb.Any,
|
|
1803
384
|
}
|
|
1804
385
|
|
|
1805
|
-
export class MintTokenTx extends jspb.Message {
|
|
1806
|
-
getTokenFactory(): string;
|
|
1807
|
-
setTokenFactory(value: string): void;
|
|
1808
|
-
|
|
1809
|
-
getAmount(): string;
|
|
1810
|
-
setAmount(value: string): void;
|
|
1811
|
-
|
|
1812
|
-
clearInputsList(): void;
|
|
1813
|
-
getInputsList(): Array<type_pb.TTransactionInput>;
|
|
1814
|
-
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
1815
|
-
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
1816
|
-
|
|
1817
|
-
getReceiver(): string;
|
|
1818
|
-
setReceiver(value: string): void;
|
|
1819
|
-
|
|
1820
|
-
hasData(): boolean;
|
|
1821
|
-
clearData(): void;
|
|
1822
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1823
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1824
|
-
|
|
1825
|
-
serializeBinary(): Uint8Array;
|
|
1826
|
-
toObject(includeInstance?: boolean): TMintTokenTx;
|
|
1827
|
-
static toObject(includeInstance: boolean, msg: MintTokenTx): TMintTokenTx;
|
|
1828
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1829
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1830
|
-
static serializeBinaryToWriter(message: MintTokenTx, writer: jspb.BinaryWriter): void;
|
|
1831
|
-
static deserializeBinary(bytes: Uint8Array): MintTokenTx;
|
|
1832
|
-
static deserializeBinaryFromReader(message: MintTokenTx, reader: jspb.BinaryReader): MintTokenTx;
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
386
|
export type TMintTokenTx = {
|
|
1836
387
|
tokenFactory: string,
|
|
1837
388
|
amount: string,
|
|
@@ -1840,36 +391,6 @@ export type TMintTokenTx = {
|
|
|
1840
391
|
data?: google_protobuf_any_pb.Any,
|
|
1841
392
|
}
|
|
1842
393
|
|
|
1843
|
-
export class BurnTokenTx extends jspb.Message {
|
|
1844
|
-
getTokenFactory(): string;
|
|
1845
|
-
setTokenFactory(value: string): void;
|
|
1846
|
-
|
|
1847
|
-
clearInputsList(): void;
|
|
1848
|
-
getInputsList(): Array<type_pb.TTransactionInput>;
|
|
1849
|
-
setInputsList(value: Array<type_pb.TTransactionInput>): void;
|
|
1850
|
-
addInputs(value?: type_pb.TransactionInput, index?: number): type_pb.TransactionInput;
|
|
1851
|
-
|
|
1852
|
-
getMinReserve(): string;
|
|
1853
|
-
setMinReserve(value: string): void;
|
|
1854
|
-
|
|
1855
|
-
getReceiver(): string;
|
|
1856
|
-
setReceiver(value: string): void;
|
|
1857
|
-
|
|
1858
|
-
hasData(): boolean;
|
|
1859
|
-
clearData(): void;
|
|
1860
|
-
getData(): google_protobuf_any_pb.Any | undefined;
|
|
1861
|
-
setData(value?: google_protobuf_any_pb.Any): void;
|
|
1862
|
-
|
|
1863
|
-
serializeBinary(): Uint8Array;
|
|
1864
|
-
toObject(includeInstance?: boolean): TBurnTokenTx;
|
|
1865
|
-
static toObject(includeInstance: boolean, msg: BurnTokenTx): TBurnTokenTx;
|
|
1866
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1867
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1868
|
-
static serializeBinaryToWriter(message: BurnTokenTx, writer: jspb.BinaryWriter): void;
|
|
1869
|
-
static deserializeBinary(bytes: Uint8Array): BurnTokenTx;
|
|
1870
|
-
static deserializeBinaryFromReader(message: BurnTokenTx, reader: jspb.BinaryReader): BurnTokenTx;
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
394
|
export type TBurnTokenTx = {
|
|
1874
395
|
tokenFactory: string,
|
|
1875
396
|
inputs: Array<type_pb.TTransactionInput>,
|
|
@@ -1878,213 +399,6 @@ export type TBurnTokenTx = {
|
|
|
1878
399
|
data?: google_protobuf_any_pb.Any,
|
|
1879
400
|
}
|
|
1880
401
|
|
|
1881
|
-
export class ItxStub extends jspb.Message {
|
|
1882
|
-
hasDeclare(): boolean;
|
|
1883
|
-
clearDeclare(): void;
|
|
1884
|
-
getDeclare(): TDeclareTx | undefined;
|
|
1885
|
-
setDeclare(value?: TDeclareTx): void;
|
|
1886
|
-
|
|
1887
|
-
hasDelegate(): boolean;
|
|
1888
|
-
clearDelegate(): void;
|
|
1889
|
-
getDelegate(): TDelegateTx | undefined;
|
|
1890
|
-
setDelegate(value?: TDelegateTx): void;
|
|
1891
|
-
|
|
1892
|
-
hasRevokeDelegate(): boolean;
|
|
1893
|
-
clearRevokeDelegate(): void;
|
|
1894
|
-
getRevokeDelegate(): TRevokeDelegateTx | undefined;
|
|
1895
|
-
setRevokeDelegate(value?: TRevokeDelegateTx): void;
|
|
1896
|
-
|
|
1897
|
-
hasAccountMigrate(): boolean;
|
|
1898
|
-
clearAccountMigrate(): void;
|
|
1899
|
-
getAccountMigrate(): TAccountMigrateTx | undefined;
|
|
1900
|
-
setAccountMigrate(value?: TAccountMigrateTx): void;
|
|
1901
|
-
|
|
1902
|
-
hasCreateAsset(): boolean;
|
|
1903
|
-
clearCreateAsset(): void;
|
|
1904
|
-
getCreateAsset(): TCreateAssetTx | undefined;
|
|
1905
|
-
setCreateAsset(value?: TCreateAssetTx): void;
|
|
1906
|
-
|
|
1907
|
-
hasUpdateAsset(): boolean;
|
|
1908
|
-
clearUpdateAsset(): void;
|
|
1909
|
-
getUpdateAsset(): TUpdateAssetTx | undefined;
|
|
1910
|
-
setUpdateAsset(value?: TUpdateAssetTx): void;
|
|
1911
|
-
|
|
1912
|
-
hasConsumeAsset(): boolean;
|
|
1913
|
-
clearConsumeAsset(): void;
|
|
1914
|
-
getConsumeAsset(): TConsumeAssetTx | undefined;
|
|
1915
|
-
setConsumeAsset(value?: TConsumeAssetTx): void;
|
|
1916
|
-
|
|
1917
|
-
hasExchange(): boolean;
|
|
1918
|
-
clearExchange(): void;
|
|
1919
|
-
getExchange(): TExchangeTx | undefined;
|
|
1920
|
-
setExchange(value?: TExchangeTx): void;
|
|
1921
|
-
|
|
1922
|
-
hasExchangeV2(): boolean;
|
|
1923
|
-
clearExchangeV2(): void;
|
|
1924
|
-
getExchangeV2(): TExchangeV2Tx | undefined;
|
|
1925
|
-
setExchangeV2(value?: TExchangeV2Tx): void;
|
|
1926
|
-
|
|
1927
|
-
hasTransfer(): boolean;
|
|
1928
|
-
clearTransfer(): void;
|
|
1929
|
-
getTransfer(): TTransferTx | undefined;
|
|
1930
|
-
setTransfer(value?: TTransferTx): void;
|
|
1931
|
-
|
|
1932
|
-
hasTransferV2(): boolean;
|
|
1933
|
-
clearTransferV2(): void;
|
|
1934
|
-
getTransferV2(): TTransferV2Tx | undefined;
|
|
1935
|
-
setTransferV2(value?: TTransferV2Tx): void;
|
|
1936
|
-
|
|
1937
|
-
hasTransferV3(): boolean;
|
|
1938
|
-
clearTransferV3(): void;
|
|
1939
|
-
getTransferV3(): TTransferV3Tx | undefined;
|
|
1940
|
-
setTransferV3(value?: TTransferV3Tx): void;
|
|
1941
|
-
|
|
1942
|
-
hasCreateToken(): boolean;
|
|
1943
|
-
clearCreateToken(): void;
|
|
1944
|
-
getCreateToken(): TCreateTokenTx | undefined;
|
|
1945
|
-
setCreateToken(value?: TCreateTokenTx): void;
|
|
1946
|
-
|
|
1947
|
-
hasDepositToken(): boolean;
|
|
1948
|
-
clearDepositToken(): void;
|
|
1949
|
-
getDepositToken(): TDepositTokenV2Tx | undefined;
|
|
1950
|
-
setDepositToken(value?: TDepositTokenV2Tx): void;
|
|
1951
|
-
|
|
1952
|
-
hasWithdrawToken(): boolean;
|
|
1953
|
-
clearWithdrawToken(): void;
|
|
1954
|
-
getWithdrawToken(): TWithdrawTokenV2Tx | undefined;
|
|
1955
|
-
setWithdrawToken(value?: TWithdrawTokenV2Tx): void;
|
|
1956
|
-
|
|
1957
|
-
hasCreateTokenFactory(): boolean;
|
|
1958
|
-
clearCreateTokenFactory(): void;
|
|
1959
|
-
getCreateTokenFactory(): TCreateTokenFactoryTx | undefined;
|
|
1960
|
-
setCreateTokenFactory(value?: TCreateTokenFactoryTx): void;
|
|
1961
|
-
|
|
1962
|
-
hasUpdateTokenFactory(): boolean;
|
|
1963
|
-
clearUpdateTokenFactory(): void;
|
|
1964
|
-
getUpdateTokenFactory(): TUpdateTokenFactoryTx | undefined;
|
|
1965
|
-
setUpdateTokenFactory(value?: TUpdateTokenFactoryTx): void;
|
|
1966
|
-
|
|
1967
|
-
hasMintToken(): boolean;
|
|
1968
|
-
clearMintToken(): void;
|
|
1969
|
-
getMintToken(): TMintTokenTx | undefined;
|
|
1970
|
-
setMintToken(value?: TMintTokenTx): void;
|
|
1971
|
-
|
|
1972
|
-
hasBurnToken(): boolean;
|
|
1973
|
-
clearBurnToken(): void;
|
|
1974
|
-
getBurnToken(): TBurnTokenTx | undefined;
|
|
1975
|
-
setBurnToken(value?: TBurnTokenTx): void;
|
|
1976
|
-
|
|
1977
|
-
hasCreateFactory(): boolean;
|
|
1978
|
-
clearCreateFactory(): void;
|
|
1979
|
-
getCreateFactory(): TCreateFactoryTx | undefined;
|
|
1980
|
-
setCreateFactory(value?: TCreateFactoryTx): void;
|
|
1981
|
-
|
|
1982
|
-
hasAcquireAssetV2(): boolean;
|
|
1983
|
-
clearAcquireAssetV2(): void;
|
|
1984
|
-
getAcquireAssetV2(): TAcquireAssetV2Tx | undefined;
|
|
1985
|
-
setAcquireAssetV2(value?: TAcquireAssetV2Tx): void;
|
|
1986
|
-
|
|
1987
|
-
hasAcquireAssetV3(): boolean;
|
|
1988
|
-
clearAcquireAssetV3(): void;
|
|
1989
|
-
getAcquireAssetV3(): TAcquireAssetV3Tx | undefined;
|
|
1990
|
-
setAcquireAssetV3(value?: TAcquireAssetV3Tx): void;
|
|
1991
|
-
|
|
1992
|
-
hasMintAsset(): boolean;
|
|
1993
|
-
clearMintAsset(): void;
|
|
1994
|
-
getMintAsset(): TMintAssetTx | undefined;
|
|
1995
|
-
setMintAsset(value?: TMintAssetTx): void;
|
|
1996
|
-
|
|
1997
|
-
hasStake(): boolean;
|
|
1998
|
-
clearStake(): void;
|
|
1999
|
-
getStake(): TStakeTx | undefined;
|
|
2000
|
-
setStake(value?: TStakeTx): void;
|
|
2001
|
-
|
|
2002
|
-
hasRevokeStake(): boolean;
|
|
2003
|
-
clearRevokeStake(): void;
|
|
2004
|
-
getRevokeStake(): TRevokeStakeTx | undefined;
|
|
2005
|
-
setRevokeStake(value?: TRevokeStakeTx): void;
|
|
2006
|
-
|
|
2007
|
-
hasClaimStake(): boolean;
|
|
2008
|
-
clearClaimStake(): void;
|
|
2009
|
-
getClaimStake(): TClaimStakeTx | undefined;
|
|
2010
|
-
setClaimStake(value?: TClaimStakeTx): void;
|
|
2011
|
-
|
|
2012
|
-
hasSlashStake(): boolean;
|
|
2013
|
-
clearSlashStake(): void;
|
|
2014
|
-
getSlashStake(): TSlashStakeTx | undefined;
|
|
2015
|
-
setSlashStake(value?: TSlashStakeTx): void;
|
|
2016
|
-
|
|
2017
|
-
hasReturnStake(): boolean;
|
|
2018
|
-
clearReturnStake(): void;
|
|
2019
|
-
getReturnStake(): TReturnStakeTx | undefined;
|
|
2020
|
-
setReturnStake(value?: TReturnStakeTx): void;
|
|
2021
|
-
|
|
2022
|
-
hasUpgradeNode(): boolean;
|
|
2023
|
-
clearUpgradeNode(): void;
|
|
2024
|
-
getUpgradeNode(): TUpgradeNodeTx | undefined;
|
|
2025
|
-
setUpgradeNode(value?: TUpgradeNodeTx): void;
|
|
2026
|
-
|
|
2027
|
-
hasCreateRollup(): boolean;
|
|
2028
|
-
clearCreateRollup(): void;
|
|
2029
|
-
getCreateRollup(): TCreateRollupTx | undefined;
|
|
2030
|
-
setCreateRollup(value?: TCreateRollupTx): void;
|
|
2031
|
-
|
|
2032
|
-
hasUpdateRollup(): boolean;
|
|
2033
|
-
clearUpdateRollup(): void;
|
|
2034
|
-
getUpdateRollup(): TUpdateRollupTx | undefined;
|
|
2035
|
-
setUpdateRollup(value?: TUpdateRollupTx): void;
|
|
2036
|
-
|
|
2037
|
-
hasJoinRollup(): boolean;
|
|
2038
|
-
clearJoinRollup(): void;
|
|
2039
|
-
getJoinRollup(): TJoinRollupTx | undefined;
|
|
2040
|
-
setJoinRollup(value?: TJoinRollupTx): void;
|
|
2041
|
-
|
|
2042
|
-
hasLeaveRollup(): boolean;
|
|
2043
|
-
clearLeaveRollup(): void;
|
|
2044
|
-
getLeaveRollup(): TLeaveRollupTx | undefined;
|
|
2045
|
-
setLeaveRollup(value?: TLeaveRollupTx): void;
|
|
2046
|
-
|
|
2047
|
-
hasCreateRollupBlock(): boolean;
|
|
2048
|
-
clearCreateRollupBlock(): void;
|
|
2049
|
-
getCreateRollupBlock(): TCreateRollupBlockTx | undefined;
|
|
2050
|
-
setCreateRollupBlock(value?: TCreateRollupBlockTx): void;
|
|
2051
|
-
|
|
2052
|
-
hasClaimBlockReward(): boolean;
|
|
2053
|
-
clearClaimBlockReward(): void;
|
|
2054
|
-
getClaimBlockReward(): TClaimBlockRewardTx | undefined;
|
|
2055
|
-
setClaimBlockReward(value?: TClaimBlockRewardTx): void;
|
|
2056
|
-
|
|
2057
|
-
hasPauseRollup(): boolean;
|
|
2058
|
-
clearPauseRollup(): void;
|
|
2059
|
-
getPauseRollup(): TPauseRollupTx | undefined;
|
|
2060
|
-
setPauseRollup(value?: TPauseRollupTx): void;
|
|
2061
|
-
|
|
2062
|
-
hasResumeRollup(): boolean;
|
|
2063
|
-
clearResumeRollup(): void;
|
|
2064
|
-
getResumeRollup(): TResumeRollupTx | undefined;
|
|
2065
|
-
setResumeRollup(value?: TResumeRollupTx): void;
|
|
2066
|
-
|
|
2067
|
-
hasMigrateRollup(): boolean;
|
|
2068
|
-
clearMigrateRollup(): void;
|
|
2069
|
-
getMigrateRollup(): TMigrateRollupTx | undefined;
|
|
2070
|
-
setMigrateRollup(value?: TMigrateRollupTx): void;
|
|
2071
|
-
|
|
2072
|
-
hasCloseRollup(): boolean;
|
|
2073
|
-
clearCloseRollup(): void;
|
|
2074
|
-
getCloseRollup(): TCloseRollupTx | undefined;
|
|
2075
|
-
setCloseRollup(value?: TCloseRollupTx): void;
|
|
2076
|
-
|
|
2077
|
-
getValueCase(): ItxStub.ValueCase;
|
|
2078
|
-
serializeBinary(): Uint8Array;
|
|
2079
|
-
toObject(includeInstance?: boolean): TItxStub;
|
|
2080
|
-
static toObject(includeInstance: boolean, msg: ItxStub): TItxStub;
|
|
2081
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2082
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2083
|
-
static serializeBinaryToWriter(message: ItxStub, writer: jspb.BinaryWriter): void;
|
|
2084
|
-
static deserializeBinary(bytes: Uint8Array): ItxStub;
|
|
2085
|
-
static deserializeBinaryFromReader(message: ItxStub, reader: jspb.BinaryReader): ItxStub;
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
402
|
export type TItxStub = {
|
|
2089
403
|
declare?: TDeclareTx,
|
|
2090
404
|
delegate?: TDelegateTx,
|
|
@@ -2169,4 +483,3 @@ export type TItxStub = {
|
|
|
2169
483
|
MIGRATE_ROLLUP = 58,
|
|
2170
484
|
CLOSE_ROLLUP = 60,
|
|
2171
485
|
}
|
|
2172
|
-
|