@bitgo-beta/sdk-coin-trx 1.2.3-alpha.317 → 1.2.3-alpha.319
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/CHANGELOG.md +16 -0
- package/dist/resources/protobuf/Contract.proto +16 -0
- package/dist/resources/protobuf/tron.d.ts +1012 -0
- package/dist/resources/protobuf/tron.js +4169 -1231
- package/dist/resources/protobuf/tron.proto +4 -0
- package/dist/src/lib/contractCallBuilder.d.ts +1 -35
- package/dist/src/lib/contractCallBuilder.d.ts.map +1 -1
- package/dist/src/lib/contractCallBuilder.js +3 -66
- package/dist/src/lib/enum.d.ts +24 -1
- package/dist/src/lib/enum.d.ts.map +1 -1
- package/dist/src/lib/enum.js +26 -2
- package/dist/src/lib/freezeBalanceTxBuilder.d.ts +71 -0
- package/dist/src/lib/freezeBalanceTxBuilder.d.ts.map +1 -0
- package/dist/src/lib/freezeBalanceTxBuilder.js +211 -0
- package/dist/src/lib/iface.d.ts +171 -2
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +1 -1
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +51 -1
- package/dist/src/lib/transactionBuilder.d.ts +50 -5
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +83 -8
- package/dist/src/lib/unfreezeBalanceTxBuilder.d.ts +65 -0
- package/dist/src/lib/unfreezeBalanceTxBuilder.d.ts.map +1 -0
- package/dist/src/lib/unfreezeBalanceTxBuilder.js +204 -0
- package/dist/src/lib/utils.d.ts +34 -2
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +178 -3
- package/dist/src/lib/voteWitnessTxBuilder.d.ts +62 -0
- package/dist/src/lib/voteWitnessTxBuilder.d.ts.map +1 -0
- package/dist/src/lib/voteWitnessTxBuilder.js +219 -0
- package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.d.ts +49 -0
- package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.d.ts.map +1 -0
- package/dist/src/lib/withdrawExpireUnfreezeTxBuilder.js +167 -0
- package/dist/src/lib/wrappedBuilder.d.ts +32 -0
- package/dist/src/lib/wrappedBuilder.d.ts.map +1 -1
- package/dist/src/lib/wrappedBuilder.js +49 -1
- package/dist/src/trx.d.ts +0 -2
- package/dist/src/trx.d.ts.map +1 -1
- package/dist/src/trx.js +5 -6
- package/package.json +8 -7
- package/resources/protobuf/Contract.proto +16 -0
- package/resources/protobuf/tron.d.ts +1012 -0
- package/resources/protobuf/tron.js +4169 -1231
- package/resources/protobuf/tron.proto +4 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as $protobuf from 'protobufjs';
|
|
2
|
+
import Long = require('long');
|
|
2
3
|
/** Namespace protocol. */
|
|
3
4
|
export namespace protocol {
|
|
4
5
|
/** Properties of an Endpoint. */
|
|
@@ -99,6 +100,13 @@ export namespace protocol {
|
|
|
99
100
|
* @returns JSON object
|
|
100
101
|
*/
|
|
101
102
|
public toJSON(): { [k: string]: any };
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Gets the default type url for Endpoint
|
|
106
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
107
|
+
* @returns The default type url
|
|
108
|
+
*/
|
|
109
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
102
110
|
}
|
|
103
111
|
|
|
104
112
|
/** Properties of a PingMessage. */
|
|
@@ -205,6 +213,13 @@ export namespace protocol {
|
|
|
205
213
|
* @returns JSON object
|
|
206
214
|
*/
|
|
207
215
|
public toJSON(): { [k: string]: any };
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Gets the default type url for PingMessage
|
|
219
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
220
|
+
* @returns The default type url
|
|
221
|
+
*/
|
|
222
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
208
223
|
}
|
|
209
224
|
|
|
210
225
|
/** Properties of a PongMessage. */
|
|
@@ -305,6 +320,13 @@ export namespace protocol {
|
|
|
305
320
|
* @returns JSON object
|
|
306
321
|
*/
|
|
307
322
|
public toJSON(): { [k: string]: any };
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Gets the default type url for PongMessage
|
|
326
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
327
|
+
* @returns The default type url
|
|
328
|
+
*/
|
|
329
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
308
330
|
}
|
|
309
331
|
|
|
310
332
|
/** Properties of a FindNeighbours. */
|
|
@@ -408,6 +430,13 @@ export namespace protocol {
|
|
|
408
430
|
* @returns JSON object
|
|
409
431
|
*/
|
|
410
432
|
public toJSON(): { [k: string]: any };
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Gets the default type url for FindNeighbours
|
|
436
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
437
|
+
* @returns The default type url
|
|
438
|
+
*/
|
|
439
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
411
440
|
}
|
|
412
441
|
|
|
413
442
|
/** Properties of a Neighbours. */
|
|
@@ -508,6 +537,13 @@ export namespace protocol {
|
|
|
508
537
|
* @returns JSON object
|
|
509
538
|
*/
|
|
510
539
|
public toJSON(): { [k: string]: any };
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* Gets the default type url for Neighbours
|
|
543
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
544
|
+
* @returns The default type url
|
|
545
|
+
*/
|
|
546
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
511
547
|
}
|
|
512
548
|
|
|
513
549
|
/** Properties of a BackupMessage. */
|
|
@@ -605,6 +641,13 @@ export namespace protocol {
|
|
|
605
641
|
* @returns JSON object
|
|
606
642
|
*/
|
|
607
643
|
public toJSON(): { [k: string]: any };
|
|
644
|
+
|
|
645
|
+
/**
|
|
646
|
+
* Gets the default type url for BackupMessage
|
|
647
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
648
|
+
* @returns The default type url
|
|
649
|
+
*/
|
|
650
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
608
651
|
}
|
|
609
652
|
|
|
610
653
|
/** Properties of an AccountCreateContract. */
|
|
@@ -711,6 +754,13 @@ export namespace protocol {
|
|
|
711
754
|
* @returns JSON object
|
|
712
755
|
*/
|
|
713
756
|
public toJSON(): { [k: string]: any };
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* Gets the default type url for AccountCreateContract
|
|
760
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
761
|
+
* @returns The default type url
|
|
762
|
+
*/
|
|
763
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
714
764
|
}
|
|
715
765
|
|
|
716
766
|
/** Properties of an AccountUpdateContract. */
|
|
@@ -811,6 +861,13 @@ export namespace protocol {
|
|
|
811
861
|
* @returns JSON object
|
|
812
862
|
*/
|
|
813
863
|
public toJSON(): { [k: string]: any };
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* Gets the default type url for AccountUpdateContract
|
|
867
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
868
|
+
* @returns The default type url
|
|
869
|
+
*/
|
|
870
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
814
871
|
}
|
|
815
872
|
|
|
816
873
|
/** Properties of a SetAccountIdContract. */
|
|
@@ -908,6 +965,13 @@ export namespace protocol {
|
|
|
908
965
|
* @returns JSON object
|
|
909
966
|
*/
|
|
910
967
|
public toJSON(): { [k: string]: any };
|
|
968
|
+
|
|
969
|
+
/**
|
|
970
|
+
* Gets the default type url for SetAccountIdContract
|
|
971
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
972
|
+
* @returns The default type url
|
|
973
|
+
*/
|
|
974
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
911
975
|
}
|
|
912
976
|
|
|
913
977
|
/** Properties of a TransferContract. */
|
|
@@ -1011,6 +1075,13 @@ export namespace protocol {
|
|
|
1011
1075
|
* @returns JSON object
|
|
1012
1076
|
*/
|
|
1013
1077
|
public toJSON(): { [k: string]: any };
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* Gets the default type url for TransferContract
|
|
1081
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1082
|
+
* @returns The default type url
|
|
1083
|
+
*/
|
|
1084
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1014
1085
|
}
|
|
1015
1086
|
|
|
1016
1087
|
/** Properties of a TransferAssetContract. */
|
|
@@ -1123,6 +1194,13 @@ export namespace protocol {
|
|
|
1123
1194
|
* @returns JSON object
|
|
1124
1195
|
*/
|
|
1125
1196
|
public toJSON(): { [k: string]: any };
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* Gets the default type url for TransferAssetContract
|
|
1200
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1201
|
+
* @returns The default type url
|
|
1202
|
+
*/
|
|
1203
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1126
1204
|
}
|
|
1127
1205
|
|
|
1128
1206
|
/** Properties of a VoteAssetContract. */
|
|
@@ -1232,6 +1310,13 @@ export namespace protocol {
|
|
|
1232
1310
|
* @returns JSON object
|
|
1233
1311
|
*/
|
|
1234
1312
|
public toJSON(): { [k: string]: any };
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* Gets the default type url for VoteAssetContract
|
|
1316
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1317
|
+
* @returns The default type url
|
|
1318
|
+
*/
|
|
1319
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1235
1320
|
}
|
|
1236
1321
|
|
|
1237
1322
|
/** Properties of a VoteWitnessContract. */
|
|
@@ -1335,6 +1420,13 @@ export namespace protocol {
|
|
|
1335
1420
|
* @returns JSON object
|
|
1336
1421
|
*/
|
|
1337
1422
|
public toJSON(): { [k: string]: any };
|
|
1423
|
+
|
|
1424
|
+
/**
|
|
1425
|
+
* Gets the default type url for VoteWitnessContract
|
|
1426
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1427
|
+
* @returns The default type url
|
|
1428
|
+
*/
|
|
1429
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1338
1430
|
}
|
|
1339
1431
|
|
|
1340
1432
|
namespace VoteWitnessContract {
|
|
@@ -1436,6 +1528,13 @@ export namespace protocol {
|
|
|
1436
1528
|
* @returns JSON object
|
|
1437
1529
|
*/
|
|
1438
1530
|
public toJSON(): { [k: string]: any };
|
|
1531
|
+
|
|
1532
|
+
/**
|
|
1533
|
+
* Gets the default type url for Vote
|
|
1534
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1535
|
+
* @returns The default type url
|
|
1536
|
+
*/
|
|
1537
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1439
1538
|
}
|
|
1440
1539
|
}
|
|
1441
1540
|
|
|
@@ -1543,6 +1642,13 @@ export namespace protocol {
|
|
|
1543
1642
|
* @returns JSON object
|
|
1544
1643
|
*/
|
|
1545
1644
|
public toJSON(): { [k: string]: any };
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* Gets the default type url for UpdateSettingContract
|
|
1648
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1649
|
+
* @returns The default type url
|
|
1650
|
+
*/
|
|
1651
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1546
1652
|
}
|
|
1547
1653
|
|
|
1548
1654
|
/** Properties of an UpdateEnergyLimitContract. */
|
|
@@ -1649,6 +1755,13 @@ export namespace protocol {
|
|
|
1649
1755
|
* @returns JSON object
|
|
1650
1756
|
*/
|
|
1651
1757
|
public toJSON(): { [k: string]: any };
|
|
1758
|
+
|
|
1759
|
+
/**
|
|
1760
|
+
* Gets the default type url for UpdateEnergyLimitContract
|
|
1761
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1762
|
+
* @returns The default type url
|
|
1763
|
+
*/
|
|
1764
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1652
1765
|
}
|
|
1653
1766
|
|
|
1654
1767
|
/** Properties of a ClearABIContract. */
|
|
@@ -1746,6 +1859,13 @@ export namespace protocol {
|
|
|
1746
1859
|
* @returns JSON object
|
|
1747
1860
|
*/
|
|
1748
1861
|
public toJSON(): { [k: string]: any };
|
|
1862
|
+
|
|
1863
|
+
/**
|
|
1864
|
+
* Gets the default type url for ClearABIContract
|
|
1865
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1866
|
+
* @returns The default type url
|
|
1867
|
+
*/
|
|
1868
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1749
1869
|
}
|
|
1750
1870
|
|
|
1751
1871
|
/** Properties of a WitnessCreateContract. */
|
|
@@ -1846,6 +1966,13 @@ export namespace protocol {
|
|
|
1846
1966
|
* @returns JSON object
|
|
1847
1967
|
*/
|
|
1848
1968
|
public toJSON(): { [k: string]: any };
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* Gets the default type url for WitnessCreateContract
|
|
1972
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1973
|
+
* @returns The default type url
|
|
1974
|
+
*/
|
|
1975
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1849
1976
|
}
|
|
1850
1977
|
|
|
1851
1978
|
/** Properties of a WitnessUpdateContract. */
|
|
@@ -1946,6 +2073,13 @@ export namespace protocol {
|
|
|
1946
2073
|
* @returns JSON object
|
|
1947
2074
|
*/
|
|
1948
2075
|
public toJSON(): { [k: string]: any };
|
|
2076
|
+
|
|
2077
|
+
/**
|
|
2078
|
+
* Gets the default type url for WitnessUpdateContract
|
|
2079
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2080
|
+
* @returns The default type url
|
|
2081
|
+
*/
|
|
2082
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1949
2083
|
}
|
|
1950
2084
|
|
|
1951
2085
|
/** Properties of an AssetIssueContract. */
|
|
@@ -2145,6 +2279,13 @@ export namespace protocol {
|
|
|
2145
2279
|
* @returns JSON object
|
|
2146
2280
|
*/
|
|
2147
2281
|
public toJSON(): { [k: string]: any };
|
|
2282
|
+
|
|
2283
|
+
/**
|
|
2284
|
+
* Gets the default type url for AssetIssueContract
|
|
2285
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2286
|
+
* @returns The default type url
|
|
2287
|
+
*/
|
|
2288
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2148
2289
|
}
|
|
2149
2290
|
|
|
2150
2291
|
namespace AssetIssueContract {
|
|
@@ -2254,6 +2395,13 @@ export namespace protocol {
|
|
|
2254
2395
|
* @returns JSON object
|
|
2255
2396
|
*/
|
|
2256
2397
|
public toJSON(): { [k: string]: any };
|
|
2398
|
+
|
|
2399
|
+
/**
|
|
2400
|
+
* Gets the default type url for FrozenSupply
|
|
2401
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2402
|
+
* @returns The default type url
|
|
2403
|
+
*/
|
|
2404
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2257
2405
|
}
|
|
2258
2406
|
}
|
|
2259
2407
|
|
|
@@ -2370,6 +2518,13 @@ export namespace protocol {
|
|
|
2370
2518
|
* @returns JSON object
|
|
2371
2519
|
*/
|
|
2372
2520
|
public toJSON(): { [k: string]: any };
|
|
2521
|
+
|
|
2522
|
+
/**
|
|
2523
|
+
* Gets the default type url for ParticipateAssetIssueContract
|
|
2524
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2525
|
+
* @returns The default type url
|
|
2526
|
+
*/
|
|
2527
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2373
2528
|
}
|
|
2374
2529
|
|
|
2375
2530
|
/** ResourceCode enum. */
|
|
@@ -2494,6 +2649,13 @@ export namespace protocol {
|
|
|
2494
2649
|
* @returns JSON object
|
|
2495
2650
|
*/
|
|
2496
2651
|
public toJSON(): { [k: string]: any };
|
|
2652
|
+
|
|
2653
|
+
/**
|
|
2654
|
+
* Gets the default type url for FreezeBalanceContract
|
|
2655
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2656
|
+
* @returns The default type url
|
|
2657
|
+
*/
|
|
2658
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2497
2659
|
}
|
|
2498
2660
|
|
|
2499
2661
|
/** Properties of an UnfreezeBalanceContract. */
|
|
@@ -2600,6 +2762,348 @@ export namespace protocol {
|
|
|
2600
2762
|
* @returns JSON object
|
|
2601
2763
|
*/
|
|
2602
2764
|
public toJSON(): { [k: string]: any };
|
|
2765
|
+
|
|
2766
|
+
/**
|
|
2767
|
+
* Gets the default type url for UnfreezeBalanceContract
|
|
2768
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2769
|
+
* @returns The default type url
|
|
2770
|
+
*/
|
|
2771
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
/** Properties of a FreezeBalanceV2Contract. */
|
|
2775
|
+
interface IFreezeBalanceV2Contract {
|
|
2776
|
+
/** FreezeBalanceV2Contract ownerAddress */
|
|
2777
|
+
ownerAddress?: Uint8Array | null;
|
|
2778
|
+
|
|
2779
|
+
/** FreezeBalanceV2Contract frozenBalance */
|
|
2780
|
+
frozenBalance?: number | Long | null;
|
|
2781
|
+
|
|
2782
|
+
/** FreezeBalanceV2Contract resource */
|
|
2783
|
+
resource?: protocol.ResourceCode | null;
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
/** Represents a FreezeBalanceV2Contract. */
|
|
2787
|
+
class FreezeBalanceV2Contract implements IFreezeBalanceV2Contract {
|
|
2788
|
+
/**
|
|
2789
|
+
* Constructs a new FreezeBalanceV2Contract.
|
|
2790
|
+
* @param [properties] Properties to set
|
|
2791
|
+
*/
|
|
2792
|
+
constructor(properties?: protocol.IFreezeBalanceV2Contract);
|
|
2793
|
+
|
|
2794
|
+
/** FreezeBalanceV2Contract ownerAddress. */
|
|
2795
|
+
public ownerAddress: Uint8Array;
|
|
2796
|
+
|
|
2797
|
+
/** FreezeBalanceV2Contract frozenBalance. */
|
|
2798
|
+
public frozenBalance: number | Long;
|
|
2799
|
+
|
|
2800
|
+
/** FreezeBalanceV2Contract resource. */
|
|
2801
|
+
public resource: protocol.ResourceCode;
|
|
2802
|
+
|
|
2803
|
+
/**
|
|
2804
|
+
* Creates a new FreezeBalanceV2Contract instance using the specified properties.
|
|
2805
|
+
* @param [properties] Properties to set
|
|
2806
|
+
* @returns FreezeBalanceV2Contract instance
|
|
2807
|
+
*/
|
|
2808
|
+
public static create(properties?: protocol.IFreezeBalanceV2Contract): protocol.FreezeBalanceV2Contract;
|
|
2809
|
+
|
|
2810
|
+
/**
|
|
2811
|
+
* Encodes the specified FreezeBalanceV2Contract message. Does not implicitly {@link protocol.FreezeBalanceV2Contract.verify|verify} messages.
|
|
2812
|
+
* @param message FreezeBalanceV2Contract message or plain object to encode
|
|
2813
|
+
* @param [writer] Writer to encode to
|
|
2814
|
+
* @returns Writer
|
|
2815
|
+
*/
|
|
2816
|
+
public static encode(message: protocol.IFreezeBalanceV2Contract, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2817
|
+
|
|
2818
|
+
/**
|
|
2819
|
+
* Encodes the specified FreezeBalanceV2Contract message, length delimited. Does not implicitly {@link protocol.FreezeBalanceV2Contract.verify|verify} messages.
|
|
2820
|
+
* @param message FreezeBalanceV2Contract message or plain object to encode
|
|
2821
|
+
* @param [writer] Writer to encode to
|
|
2822
|
+
* @returns Writer
|
|
2823
|
+
*/
|
|
2824
|
+
public static encodeDelimited(
|
|
2825
|
+
message: protocol.IFreezeBalanceV2Contract,
|
|
2826
|
+
writer?: $protobuf.Writer
|
|
2827
|
+
): $protobuf.Writer;
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* Decodes a FreezeBalanceV2Contract message from the specified reader or buffer.
|
|
2831
|
+
* @param reader Reader or buffer to decode from
|
|
2832
|
+
* @param [length] Message length if known beforehand
|
|
2833
|
+
* @returns FreezeBalanceV2Contract
|
|
2834
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2835
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2836
|
+
*/
|
|
2837
|
+
public static decode(reader: $protobuf.Reader | Uint8Array, length?: number): protocol.FreezeBalanceV2Contract;
|
|
2838
|
+
|
|
2839
|
+
/**
|
|
2840
|
+
* Decodes a FreezeBalanceV2Contract message from the specified reader or buffer, length delimited.
|
|
2841
|
+
* @param reader Reader or buffer to decode from
|
|
2842
|
+
* @returns FreezeBalanceV2Contract
|
|
2843
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2844
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2845
|
+
*/
|
|
2846
|
+
public static decodeDelimited(reader: $protobuf.Reader | Uint8Array): protocol.FreezeBalanceV2Contract;
|
|
2847
|
+
|
|
2848
|
+
/**
|
|
2849
|
+
* Verifies a FreezeBalanceV2Contract message.
|
|
2850
|
+
* @param message Plain object to verify
|
|
2851
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2852
|
+
*/
|
|
2853
|
+
public static verify(message: { [k: string]: any }): string | null;
|
|
2854
|
+
|
|
2855
|
+
/**
|
|
2856
|
+
* Creates a FreezeBalanceV2Contract message from a plain object. Also converts values to their respective internal types.
|
|
2857
|
+
* @param object Plain object
|
|
2858
|
+
* @returns FreezeBalanceV2Contract
|
|
2859
|
+
*/
|
|
2860
|
+
public static fromObject(object: { [k: string]: any }): protocol.FreezeBalanceV2Contract;
|
|
2861
|
+
|
|
2862
|
+
/**
|
|
2863
|
+
* Creates a plain object from a FreezeBalanceV2Contract message. Also converts values to other types if specified.
|
|
2864
|
+
* @param message FreezeBalanceV2Contract
|
|
2865
|
+
* @param [options] Conversion options
|
|
2866
|
+
* @returns Plain object
|
|
2867
|
+
*/
|
|
2868
|
+
public static toObject(
|
|
2869
|
+
message: protocol.FreezeBalanceV2Contract,
|
|
2870
|
+
options?: $protobuf.IConversionOptions
|
|
2871
|
+
): { [k: string]: any };
|
|
2872
|
+
|
|
2873
|
+
/**
|
|
2874
|
+
* Converts this FreezeBalanceV2Contract to JSON.
|
|
2875
|
+
* @returns JSON object
|
|
2876
|
+
*/
|
|
2877
|
+
public toJSON(): { [k: string]: any };
|
|
2878
|
+
|
|
2879
|
+
/**
|
|
2880
|
+
* Gets the default type url for FreezeBalanceV2Contract
|
|
2881
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2882
|
+
* @returns The default type url
|
|
2883
|
+
*/
|
|
2884
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
/** Properties of an UnfreezeBalanceV2Contract. */
|
|
2888
|
+
interface IUnfreezeBalanceV2Contract {
|
|
2889
|
+
/** UnfreezeBalanceV2Contract ownerAddress */
|
|
2890
|
+
ownerAddress?: Uint8Array | null;
|
|
2891
|
+
|
|
2892
|
+
/** UnfreezeBalanceV2Contract unfreezeBalance */
|
|
2893
|
+
unfreezeBalance?: number | Long | null;
|
|
2894
|
+
|
|
2895
|
+
/** UnfreezeBalanceV2Contract resource */
|
|
2896
|
+
resource?: protocol.ResourceCode | null;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
/** Represents an UnfreezeBalanceV2Contract. */
|
|
2900
|
+
class UnfreezeBalanceV2Contract implements IUnfreezeBalanceV2Contract {
|
|
2901
|
+
/**
|
|
2902
|
+
* Constructs a new UnfreezeBalanceV2Contract.
|
|
2903
|
+
* @param [properties] Properties to set
|
|
2904
|
+
*/
|
|
2905
|
+
constructor(properties?: protocol.IUnfreezeBalanceV2Contract);
|
|
2906
|
+
|
|
2907
|
+
/** UnfreezeBalanceV2Contract ownerAddress. */
|
|
2908
|
+
public ownerAddress: Uint8Array;
|
|
2909
|
+
|
|
2910
|
+
/** UnfreezeBalanceV2Contract unfreezeBalance. */
|
|
2911
|
+
public unfreezeBalance: number | Long;
|
|
2912
|
+
|
|
2913
|
+
/** UnfreezeBalanceV2Contract resource. */
|
|
2914
|
+
public resource: protocol.ResourceCode;
|
|
2915
|
+
|
|
2916
|
+
/**
|
|
2917
|
+
* Creates a new UnfreezeBalanceV2Contract instance using the specified properties.
|
|
2918
|
+
* @param [properties] Properties to set
|
|
2919
|
+
* @returns UnfreezeBalanceV2Contract instance
|
|
2920
|
+
*/
|
|
2921
|
+
public static create(properties?: protocol.IUnfreezeBalanceV2Contract): protocol.UnfreezeBalanceV2Contract;
|
|
2922
|
+
|
|
2923
|
+
/**
|
|
2924
|
+
* Encodes the specified UnfreezeBalanceV2Contract message. Does not implicitly {@link protocol.UnfreezeBalanceV2Contract.verify|verify} messages.
|
|
2925
|
+
* @param message UnfreezeBalanceV2Contract message or plain object to encode
|
|
2926
|
+
* @param [writer] Writer to encode to
|
|
2927
|
+
* @returns Writer
|
|
2928
|
+
*/
|
|
2929
|
+
public static encode(message: protocol.IUnfreezeBalanceV2Contract, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2930
|
+
|
|
2931
|
+
/**
|
|
2932
|
+
* Encodes the specified UnfreezeBalanceV2Contract message, length delimited. Does not implicitly {@link protocol.UnfreezeBalanceV2Contract.verify|verify} messages.
|
|
2933
|
+
* @param message UnfreezeBalanceV2Contract message or plain object to encode
|
|
2934
|
+
* @param [writer] Writer to encode to
|
|
2935
|
+
* @returns Writer
|
|
2936
|
+
*/
|
|
2937
|
+
public static encodeDelimited(
|
|
2938
|
+
message: protocol.IUnfreezeBalanceV2Contract,
|
|
2939
|
+
writer?: $protobuf.Writer
|
|
2940
|
+
): $protobuf.Writer;
|
|
2941
|
+
|
|
2942
|
+
/**
|
|
2943
|
+
* Decodes an UnfreezeBalanceV2Contract message from the specified reader or buffer.
|
|
2944
|
+
* @param reader Reader or buffer to decode from
|
|
2945
|
+
* @param [length] Message length if known beforehand
|
|
2946
|
+
* @returns UnfreezeBalanceV2Contract
|
|
2947
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2948
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2949
|
+
*/
|
|
2950
|
+
public static decode(reader: $protobuf.Reader | Uint8Array, length?: number): protocol.UnfreezeBalanceV2Contract;
|
|
2951
|
+
|
|
2952
|
+
/**
|
|
2953
|
+
* Decodes an UnfreezeBalanceV2Contract message from the specified reader or buffer, length delimited.
|
|
2954
|
+
* @param reader Reader or buffer to decode from
|
|
2955
|
+
* @returns UnfreezeBalanceV2Contract
|
|
2956
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2957
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2958
|
+
*/
|
|
2959
|
+
public static decodeDelimited(reader: $protobuf.Reader | Uint8Array): protocol.UnfreezeBalanceV2Contract;
|
|
2960
|
+
|
|
2961
|
+
/**
|
|
2962
|
+
* Verifies an UnfreezeBalanceV2Contract message.
|
|
2963
|
+
* @param message Plain object to verify
|
|
2964
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
2965
|
+
*/
|
|
2966
|
+
public static verify(message: { [k: string]: any }): string | null;
|
|
2967
|
+
|
|
2968
|
+
/**
|
|
2969
|
+
* Creates an UnfreezeBalanceV2Contract message from a plain object. Also converts values to their respective internal types.
|
|
2970
|
+
* @param object Plain object
|
|
2971
|
+
* @returns UnfreezeBalanceV2Contract
|
|
2972
|
+
*/
|
|
2973
|
+
public static fromObject(object: { [k: string]: any }): protocol.UnfreezeBalanceV2Contract;
|
|
2974
|
+
|
|
2975
|
+
/**
|
|
2976
|
+
* Creates a plain object from an UnfreezeBalanceV2Contract message. Also converts values to other types if specified.
|
|
2977
|
+
* @param message UnfreezeBalanceV2Contract
|
|
2978
|
+
* @param [options] Conversion options
|
|
2979
|
+
* @returns Plain object
|
|
2980
|
+
*/
|
|
2981
|
+
public static toObject(
|
|
2982
|
+
message: protocol.UnfreezeBalanceV2Contract,
|
|
2983
|
+
options?: $protobuf.IConversionOptions
|
|
2984
|
+
): { [k: string]: any };
|
|
2985
|
+
|
|
2986
|
+
/**
|
|
2987
|
+
* Converts this UnfreezeBalanceV2Contract to JSON.
|
|
2988
|
+
* @returns JSON object
|
|
2989
|
+
*/
|
|
2990
|
+
public toJSON(): { [k: string]: any };
|
|
2991
|
+
|
|
2992
|
+
/**
|
|
2993
|
+
* Gets the default type url for UnfreezeBalanceV2Contract
|
|
2994
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2995
|
+
* @returns The default type url
|
|
2996
|
+
*/
|
|
2997
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
/** Properties of a WithdrawExpireUnfreezeContract. */
|
|
3001
|
+
interface IWithdrawExpireUnfreezeContract {
|
|
3002
|
+
/** WithdrawExpireUnfreezeContract ownerAddress */
|
|
3003
|
+
ownerAddress?: Uint8Array | null;
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
/** Represents a WithdrawExpireUnfreezeContract. */
|
|
3007
|
+
class WithdrawExpireUnfreezeContract implements IWithdrawExpireUnfreezeContract {
|
|
3008
|
+
/**
|
|
3009
|
+
* Constructs a new WithdrawExpireUnfreezeContract.
|
|
3010
|
+
* @param [properties] Properties to set
|
|
3011
|
+
*/
|
|
3012
|
+
constructor(properties?: protocol.IWithdrawExpireUnfreezeContract);
|
|
3013
|
+
|
|
3014
|
+
/** WithdrawExpireUnfreezeContract ownerAddress. */
|
|
3015
|
+
public ownerAddress: Uint8Array;
|
|
3016
|
+
|
|
3017
|
+
/**
|
|
3018
|
+
* Creates a new WithdrawExpireUnfreezeContract instance using the specified properties.
|
|
3019
|
+
* @param [properties] Properties to set
|
|
3020
|
+
* @returns WithdrawExpireUnfreezeContract instance
|
|
3021
|
+
*/
|
|
3022
|
+
public static create(
|
|
3023
|
+
properties?: protocol.IWithdrawExpireUnfreezeContract
|
|
3024
|
+
): protocol.WithdrawExpireUnfreezeContract;
|
|
3025
|
+
|
|
3026
|
+
/**
|
|
3027
|
+
* Encodes the specified WithdrawExpireUnfreezeContract message. Does not implicitly {@link protocol.WithdrawExpireUnfreezeContract.verify|verify} messages.
|
|
3028
|
+
* @param message WithdrawExpireUnfreezeContract message or plain object to encode
|
|
3029
|
+
* @param [writer] Writer to encode to
|
|
3030
|
+
* @returns Writer
|
|
3031
|
+
*/
|
|
3032
|
+
public static encode(
|
|
3033
|
+
message: protocol.IWithdrawExpireUnfreezeContract,
|
|
3034
|
+
writer?: $protobuf.Writer
|
|
3035
|
+
): $protobuf.Writer;
|
|
3036
|
+
|
|
3037
|
+
/**
|
|
3038
|
+
* Encodes the specified WithdrawExpireUnfreezeContract message, length delimited. Does not implicitly {@link protocol.WithdrawExpireUnfreezeContract.verify|verify} messages.
|
|
3039
|
+
* @param message WithdrawExpireUnfreezeContract message or plain object to encode
|
|
3040
|
+
* @param [writer] Writer to encode to
|
|
3041
|
+
* @returns Writer
|
|
3042
|
+
*/
|
|
3043
|
+
public static encodeDelimited(
|
|
3044
|
+
message: protocol.IWithdrawExpireUnfreezeContract,
|
|
3045
|
+
writer?: $protobuf.Writer
|
|
3046
|
+
): $protobuf.Writer;
|
|
3047
|
+
|
|
3048
|
+
/**
|
|
3049
|
+
* Decodes a WithdrawExpireUnfreezeContract message from the specified reader or buffer.
|
|
3050
|
+
* @param reader Reader or buffer to decode from
|
|
3051
|
+
* @param [length] Message length if known beforehand
|
|
3052
|
+
* @returns WithdrawExpireUnfreezeContract
|
|
3053
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3054
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3055
|
+
*/
|
|
3056
|
+
public static decode(
|
|
3057
|
+
reader: $protobuf.Reader | Uint8Array,
|
|
3058
|
+
length?: number
|
|
3059
|
+
): protocol.WithdrawExpireUnfreezeContract;
|
|
3060
|
+
|
|
3061
|
+
/**
|
|
3062
|
+
* Decodes a WithdrawExpireUnfreezeContract message from the specified reader or buffer, length delimited.
|
|
3063
|
+
* @param reader Reader or buffer to decode from
|
|
3064
|
+
* @returns WithdrawExpireUnfreezeContract
|
|
3065
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3066
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3067
|
+
*/
|
|
3068
|
+
public static decodeDelimited(reader: $protobuf.Reader | Uint8Array): protocol.WithdrawExpireUnfreezeContract;
|
|
3069
|
+
|
|
3070
|
+
/**
|
|
3071
|
+
* Verifies a WithdrawExpireUnfreezeContract message.
|
|
3072
|
+
* @param message Plain object to verify
|
|
3073
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3074
|
+
*/
|
|
3075
|
+
public static verify(message: { [k: string]: any }): string | null;
|
|
3076
|
+
|
|
3077
|
+
/**
|
|
3078
|
+
* Creates a WithdrawExpireUnfreezeContract message from a plain object. Also converts values to their respective internal types.
|
|
3079
|
+
* @param object Plain object
|
|
3080
|
+
* @returns WithdrawExpireUnfreezeContract
|
|
3081
|
+
*/
|
|
3082
|
+
public static fromObject(object: { [k: string]: any }): protocol.WithdrawExpireUnfreezeContract;
|
|
3083
|
+
|
|
3084
|
+
/**
|
|
3085
|
+
* Creates a plain object from a WithdrawExpireUnfreezeContract message. Also converts values to other types if specified.
|
|
3086
|
+
* @param message WithdrawExpireUnfreezeContract
|
|
3087
|
+
* @param [options] Conversion options
|
|
3088
|
+
* @returns Plain object
|
|
3089
|
+
*/
|
|
3090
|
+
public static toObject(
|
|
3091
|
+
message: protocol.WithdrawExpireUnfreezeContract,
|
|
3092
|
+
options?: $protobuf.IConversionOptions
|
|
3093
|
+
): { [k: string]: any };
|
|
3094
|
+
|
|
3095
|
+
/**
|
|
3096
|
+
* Converts this WithdrawExpireUnfreezeContract to JSON.
|
|
3097
|
+
* @returns JSON object
|
|
3098
|
+
*/
|
|
3099
|
+
public toJSON(): { [k: string]: any };
|
|
3100
|
+
|
|
3101
|
+
/**
|
|
3102
|
+
* Gets the default type url for WithdrawExpireUnfreezeContract
|
|
3103
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3104
|
+
* @returns The default type url
|
|
3105
|
+
*/
|
|
3106
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2603
3107
|
}
|
|
2604
3108
|
|
|
2605
3109
|
/** Properties of an UnfreezeAssetContract. */
|
|
@@ -2694,6 +3198,13 @@ export namespace protocol {
|
|
|
2694
3198
|
* @returns JSON object
|
|
2695
3199
|
*/
|
|
2696
3200
|
public toJSON(): { [k: string]: any };
|
|
3201
|
+
|
|
3202
|
+
/**
|
|
3203
|
+
* Gets the default type url for UnfreezeAssetContract
|
|
3204
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3205
|
+
* @returns The default type url
|
|
3206
|
+
*/
|
|
3207
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2697
3208
|
}
|
|
2698
3209
|
|
|
2699
3210
|
/** Properties of a WithdrawBalanceContract. */
|
|
@@ -2788,6 +3299,13 @@ export namespace protocol {
|
|
|
2788
3299
|
* @returns JSON object
|
|
2789
3300
|
*/
|
|
2790
3301
|
public toJSON(): { [k: string]: any };
|
|
3302
|
+
|
|
3303
|
+
/**
|
|
3304
|
+
* Gets the default type url for WithdrawBalanceContract
|
|
3305
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3306
|
+
* @returns The default type url
|
|
3307
|
+
*/
|
|
3308
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2791
3309
|
}
|
|
2792
3310
|
|
|
2793
3311
|
/** Properties of an UpdateAssetContract. */
|
|
@@ -2903,6 +3421,13 @@ export namespace protocol {
|
|
|
2903
3421
|
* @returns JSON object
|
|
2904
3422
|
*/
|
|
2905
3423
|
public toJSON(): { [k: string]: any };
|
|
3424
|
+
|
|
3425
|
+
/**
|
|
3426
|
+
* Gets the default type url for UpdateAssetContract
|
|
3427
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3428
|
+
* @returns The default type url
|
|
3429
|
+
*/
|
|
3430
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2906
3431
|
}
|
|
2907
3432
|
|
|
2908
3433
|
/** Properties of a ProposalCreateContract. */
|
|
@@ -3003,6 +3528,13 @@ export namespace protocol {
|
|
|
3003
3528
|
* @returns JSON object
|
|
3004
3529
|
*/
|
|
3005
3530
|
public toJSON(): { [k: string]: any };
|
|
3531
|
+
|
|
3532
|
+
/**
|
|
3533
|
+
* Gets the default type url for ProposalCreateContract
|
|
3534
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3535
|
+
* @returns The default type url
|
|
3536
|
+
*/
|
|
3537
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3006
3538
|
}
|
|
3007
3539
|
|
|
3008
3540
|
/** Properties of a ProposalApproveContract. */
|
|
@@ -3109,6 +3641,13 @@ export namespace protocol {
|
|
|
3109
3641
|
* @returns JSON object
|
|
3110
3642
|
*/
|
|
3111
3643
|
public toJSON(): { [k: string]: any };
|
|
3644
|
+
|
|
3645
|
+
/**
|
|
3646
|
+
* Gets the default type url for ProposalApproveContract
|
|
3647
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3648
|
+
* @returns The default type url
|
|
3649
|
+
*/
|
|
3650
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3112
3651
|
}
|
|
3113
3652
|
|
|
3114
3653
|
/** Properties of a ProposalDeleteContract. */
|
|
@@ -3209,6 +3748,13 @@ export namespace protocol {
|
|
|
3209
3748
|
* @returns JSON object
|
|
3210
3749
|
*/
|
|
3211
3750
|
public toJSON(): { [k: string]: any };
|
|
3751
|
+
|
|
3752
|
+
/**
|
|
3753
|
+
* Gets the default type url for ProposalDeleteContract
|
|
3754
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3755
|
+
* @returns The default type url
|
|
3756
|
+
*/
|
|
3757
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3212
3758
|
}
|
|
3213
3759
|
|
|
3214
3760
|
/** Properties of a CreateSmartContract. */
|
|
@@ -3318,6 +3864,13 @@ export namespace protocol {
|
|
|
3318
3864
|
* @returns JSON object
|
|
3319
3865
|
*/
|
|
3320
3866
|
public toJSON(): { [k: string]: any };
|
|
3867
|
+
|
|
3868
|
+
/**
|
|
3869
|
+
* Gets the default type url for CreateSmartContract
|
|
3870
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3871
|
+
* @returns The default type url
|
|
3872
|
+
*/
|
|
3873
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3321
3874
|
}
|
|
3322
3875
|
|
|
3323
3876
|
/** Properties of a TriggerSmartContract. */
|
|
@@ -3439,6 +3992,13 @@ export namespace protocol {
|
|
|
3439
3992
|
* @returns JSON object
|
|
3440
3993
|
*/
|
|
3441
3994
|
public toJSON(): { [k: string]: any };
|
|
3995
|
+
|
|
3996
|
+
/**
|
|
3997
|
+
* Gets the default type url for TriggerSmartContract
|
|
3998
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3999
|
+
* @returns The default type url
|
|
4000
|
+
*/
|
|
4001
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3442
4002
|
}
|
|
3443
4003
|
|
|
3444
4004
|
/** Properties of a BuyStorageContract. */
|
|
@@ -3536,6 +4096,13 @@ export namespace protocol {
|
|
|
3536
4096
|
* @returns JSON object
|
|
3537
4097
|
*/
|
|
3538
4098
|
public toJSON(): { [k: string]: any };
|
|
4099
|
+
|
|
4100
|
+
/**
|
|
4101
|
+
* Gets the default type url for BuyStorageContract
|
|
4102
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4103
|
+
* @returns The default type url
|
|
4104
|
+
*/
|
|
4105
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3539
4106
|
}
|
|
3540
4107
|
|
|
3541
4108
|
/** Properties of a BuyStorageBytesContract. */
|
|
@@ -3636,6 +4203,13 @@ export namespace protocol {
|
|
|
3636
4203
|
* @returns JSON object
|
|
3637
4204
|
*/
|
|
3638
4205
|
public toJSON(): { [k: string]: any };
|
|
4206
|
+
|
|
4207
|
+
/**
|
|
4208
|
+
* Gets the default type url for BuyStorageBytesContract
|
|
4209
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4210
|
+
* @returns The default type url
|
|
4211
|
+
*/
|
|
4212
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3639
4213
|
}
|
|
3640
4214
|
|
|
3641
4215
|
/** Properties of a SellStorageContract. */
|
|
@@ -3733,6 +4307,13 @@ export namespace protocol {
|
|
|
3733
4307
|
* @returns JSON object
|
|
3734
4308
|
*/
|
|
3735
4309
|
public toJSON(): { [k: string]: any };
|
|
4310
|
+
|
|
4311
|
+
/**
|
|
4312
|
+
* Gets the default type url for SellStorageContract
|
|
4313
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4314
|
+
* @returns The default type url
|
|
4315
|
+
*/
|
|
4316
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3736
4317
|
}
|
|
3737
4318
|
|
|
3738
4319
|
/** Properties of an ExchangeCreateContract. */
|
|
@@ -3851,6 +4432,13 @@ export namespace protocol {
|
|
|
3851
4432
|
* @returns JSON object
|
|
3852
4433
|
*/
|
|
3853
4434
|
public toJSON(): { [k: string]: any };
|
|
4435
|
+
|
|
4436
|
+
/**
|
|
4437
|
+
* Gets the default type url for ExchangeCreateContract
|
|
4438
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4439
|
+
* @returns The default type url
|
|
4440
|
+
*/
|
|
4441
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3854
4442
|
}
|
|
3855
4443
|
|
|
3856
4444
|
/** Properties of an ExchangeInjectContract. */
|
|
@@ -3963,6 +4551,13 @@ export namespace protocol {
|
|
|
3963
4551
|
* @returns JSON object
|
|
3964
4552
|
*/
|
|
3965
4553
|
public toJSON(): { [k: string]: any };
|
|
4554
|
+
|
|
4555
|
+
/**
|
|
4556
|
+
* Gets the default type url for ExchangeInjectContract
|
|
4557
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4558
|
+
* @returns The default type url
|
|
4559
|
+
*/
|
|
4560
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3966
4561
|
}
|
|
3967
4562
|
|
|
3968
4563
|
/** Properties of an ExchangeWithdrawContract. */
|
|
@@ -4075,6 +4670,13 @@ export namespace protocol {
|
|
|
4075
4670
|
* @returns JSON object
|
|
4076
4671
|
*/
|
|
4077
4672
|
public toJSON(): { [k: string]: any };
|
|
4673
|
+
|
|
4674
|
+
/**
|
|
4675
|
+
* Gets the default type url for ExchangeWithdrawContract
|
|
4676
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4677
|
+
* @returns The default type url
|
|
4678
|
+
*/
|
|
4679
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4078
4680
|
}
|
|
4079
4681
|
|
|
4080
4682
|
/** Properties of an ExchangeTransactionContract. */
|
|
@@ -4193,6 +4795,13 @@ export namespace protocol {
|
|
|
4193
4795
|
* @returns JSON object
|
|
4194
4796
|
*/
|
|
4195
4797
|
public toJSON(): { [k: string]: any };
|
|
4798
|
+
|
|
4799
|
+
/**
|
|
4800
|
+
* Gets the default type url for ExchangeTransactionContract
|
|
4801
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4802
|
+
* @returns The default type url
|
|
4803
|
+
*/
|
|
4804
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4196
4805
|
}
|
|
4197
4806
|
|
|
4198
4807
|
/** Properties of an AccountPermissionUpdateContract. */
|
|
@@ -4313,6 +4922,13 @@ export namespace protocol {
|
|
|
4313
4922
|
* @returns JSON object
|
|
4314
4923
|
*/
|
|
4315
4924
|
public toJSON(): { [k: string]: any };
|
|
4925
|
+
|
|
4926
|
+
/**
|
|
4927
|
+
* Gets the default type url for AccountPermissionUpdateContract
|
|
4928
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4929
|
+
* @returns The default type url
|
|
4930
|
+
*/
|
|
4931
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4316
4932
|
}
|
|
4317
4933
|
|
|
4318
4934
|
/** AccountType enum. */
|
|
@@ -4414,6 +5030,13 @@ export namespace protocol {
|
|
|
4414
5030
|
* @returns JSON object
|
|
4415
5031
|
*/
|
|
4416
5032
|
public toJSON(): { [k: string]: any };
|
|
5033
|
+
|
|
5034
|
+
/**
|
|
5035
|
+
* Gets the default type url for AccountId
|
|
5036
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5037
|
+
* @returns The default type url
|
|
5038
|
+
*/
|
|
5039
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4417
5040
|
}
|
|
4418
5041
|
|
|
4419
5042
|
/** Properties of a Vote. */
|
|
@@ -4508,6 +5131,13 @@ export namespace protocol {
|
|
|
4508
5131
|
* @returns JSON object
|
|
4509
5132
|
*/
|
|
4510
5133
|
public toJSON(): { [k: string]: any };
|
|
5134
|
+
|
|
5135
|
+
/**
|
|
5136
|
+
* Gets the default type url for Vote
|
|
5137
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5138
|
+
* @returns The default type url
|
|
5139
|
+
*/
|
|
5140
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4511
5141
|
}
|
|
4512
5142
|
|
|
4513
5143
|
/** Properties of a Proposal. */
|
|
@@ -4632,6 +5262,13 @@ export namespace protocol {
|
|
|
4632
5262
|
* @returns JSON object
|
|
4633
5263
|
*/
|
|
4634
5264
|
public toJSON(): { [k: string]: any };
|
|
5265
|
+
|
|
5266
|
+
/**
|
|
5267
|
+
* Gets the default type url for Proposal
|
|
5268
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5269
|
+
* @returns The default type url
|
|
5270
|
+
*/
|
|
5271
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4635
5272
|
}
|
|
4636
5273
|
|
|
4637
5274
|
namespace Proposal {
|
|
@@ -4766,6 +5403,13 @@ export namespace protocol {
|
|
|
4766
5403
|
* @returns JSON object
|
|
4767
5404
|
*/
|
|
4768
5405
|
public toJSON(): { [k: string]: any };
|
|
5406
|
+
|
|
5407
|
+
/**
|
|
5408
|
+
* Gets the default type url for Exchange
|
|
5409
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5410
|
+
* @returns The default type url
|
|
5411
|
+
*/
|
|
5412
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4769
5413
|
}
|
|
4770
5414
|
|
|
4771
5415
|
/** Properties of a ChainParameters. */
|
|
@@ -4857,6 +5501,13 @@ export namespace protocol {
|
|
|
4857
5501
|
* @returns JSON object
|
|
4858
5502
|
*/
|
|
4859
5503
|
public toJSON(): { [k: string]: any };
|
|
5504
|
+
|
|
5505
|
+
/**
|
|
5506
|
+
* Gets the default type url for ChainParameters
|
|
5507
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5508
|
+
* @returns The default type url
|
|
5509
|
+
*/
|
|
5510
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4860
5511
|
}
|
|
4861
5512
|
|
|
4862
5513
|
namespace ChainParameters {
|
|
@@ -4966,6 +5617,13 @@ export namespace protocol {
|
|
|
4966
5617
|
* @returns JSON object
|
|
4967
5618
|
*/
|
|
4968
5619
|
public toJSON(): { [k: string]: any };
|
|
5620
|
+
|
|
5621
|
+
/**
|
|
5622
|
+
* Gets the default type url for ChainParameter
|
|
5623
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5624
|
+
* @returns The default type url
|
|
5625
|
+
*/
|
|
5626
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4969
5627
|
}
|
|
4970
5628
|
}
|
|
4971
5629
|
|
|
@@ -5253,6 +5911,13 @@ export namespace protocol {
|
|
|
5253
5911
|
* @returns JSON object
|
|
5254
5912
|
*/
|
|
5255
5913
|
public toJSON(): { [k: string]: any };
|
|
5914
|
+
|
|
5915
|
+
/**
|
|
5916
|
+
* Gets the default type url for Account
|
|
5917
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5918
|
+
* @returns The default type url
|
|
5919
|
+
*/
|
|
5920
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5256
5921
|
}
|
|
5257
5922
|
|
|
5258
5923
|
namespace Account {
|
|
@@ -5351,6 +6016,13 @@ export namespace protocol {
|
|
|
5351
6016
|
* @returns JSON object
|
|
5352
6017
|
*/
|
|
5353
6018
|
public toJSON(): { [k: string]: any };
|
|
6019
|
+
|
|
6020
|
+
/**
|
|
6021
|
+
* Gets the default type url for Frozen
|
|
6022
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6023
|
+
* @returns The default type url
|
|
6024
|
+
*/
|
|
6025
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5354
6026
|
}
|
|
5355
6027
|
|
|
5356
6028
|
/** Properties of an AccountResource. */
|
|
@@ -5487,6 +6159,13 @@ export namespace protocol {
|
|
|
5487
6159
|
* @returns JSON object
|
|
5488
6160
|
*/
|
|
5489
6161
|
public toJSON(): { [k: string]: any };
|
|
6162
|
+
|
|
6163
|
+
/**
|
|
6164
|
+
* Gets the default type url for AccountResource
|
|
6165
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6166
|
+
* @returns The default type url
|
|
6167
|
+
*/
|
|
6168
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5490
6169
|
}
|
|
5491
6170
|
}
|
|
5492
6171
|
|
|
@@ -5582,6 +6261,13 @@ export namespace protocol {
|
|
|
5582
6261
|
* @returns JSON object
|
|
5583
6262
|
*/
|
|
5584
6263
|
public toJSON(): { [k: string]: any };
|
|
6264
|
+
|
|
6265
|
+
/**
|
|
6266
|
+
* Gets the default type url for Key
|
|
6267
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6268
|
+
* @returns The default type url
|
|
6269
|
+
*/
|
|
6270
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5585
6271
|
}
|
|
5586
6272
|
|
|
5587
6273
|
/** Properties of a DelegatedResource. */
|
|
@@ -5703,6 +6389,13 @@ export namespace protocol {
|
|
|
5703
6389
|
* @returns JSON object
|
|
5704
6390
|
*/
|
|
5705
6391
|
public toJSON(): { [k: string]: any };
|
|
6392
|
+
|
|
6393
|
+
/**
|
|
6394
|
+
* Gets the default type url for DelegatedResource
|
|
6395
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6396
|
+
* @returns The default type url
|
|
6397
|
+
*/
|
|
6398
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5706
6399
|
}
|
|
5707
6400
|
|
|
5708
6401
|
/** Properties of an authority. */
|
|
@@ -5797,6 +6490,13 @@ export namespace protocol {
|
|
|
5797
6490
|
* @returns JSON object
|
|
5798
6491
|
*/
|
|
5799
6492
|
public toJSON(): { [k: string]: any };
|
|
6493
|
+
|
|
6494
|
+
/**
|
|
6495
|
+
* Gets the default type url for authority
|
|
6496
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6497
|
+
* @returns The default type url
|
|
6498
|
+
*/
|
|
6499
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5800
6500
|
}
|
|
5801
6501
|
|
|
5802
6502
|
/** Properties of a Permission. */
|
|
@@ -5921,6 +6621,13 @@ export namespace protocol {
|
|
|
5921
6621
|
* @returns JSON object
|
|
5922
6622
|
*/
|
|
5923
6623
|
public toJSON(): { [k: string]: any };
|
|
6624
|
+
|
|
6625
|
+
/**
|
|
6626
|
+
* Gets the default type url for Permission
|
|
6627
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6628
|
+
* @returns The default type url
|
|
6629
|
+
*/
|
|
6630
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5924
6631
|
}
|
|
5925
6632
|
|
|
5926
6633
|
namespace Permission {
|
|
@@ -6066,6 +6773,13 @@ export namespace protocol {
|
|
|
6066
6773
|
* @returns JSON object
|
|
6067
6774
|
*/
|
|
6068
6775
|
public toJSON(): { [k: string]: any };
|
|
6776
|
+
|
|
6777
|
+
/**
|
|
6778
|
+
* Gets the default type url for Witness
|
|
6779
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6780
|
+
* @returns The default type url
|
|
6781
|
+
*/
|
|
6782
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6069
6783
|
}
|
|
6070
6784
|
|
|
6071
6785
|
/** Properties of a Votes. */
|
|
@@ -6166,6 +6880,13 @@ export namespace protocol {
|
|
|
6166
6880
|
* @returns JSON object
|
|
6167
6881
|
*/
|
|
6168
6882
|
public toJSON(): { [k: string]: any };
|
|
6883
|
+
|
|
6884
|
+
/**
|
|
6885
|
+
* Gets the default type url for Votes
|
|
6886
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6887
|
+
* @returns The default type url
|
|
6888
|
+
*/
|
|
6889
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6169
6890
|
}
|
|
6170
6891
|
|
|
6171
6892
|
/** Properties of a TXOutput. */
|
|
@@ -6260,6 +6981,13 @@ export namespace protocol {
|
|
|
6260
6981
|
* @returns JSON object
|
|
6261
6982
|
*/
|
|
6262
6983
|
public toJSON(): { [k: string]: any };
|
|
6984
|
+
|
|
6985
|
+
/**
|
|
6986
|
+
* Gets the default type url for TXOutput
|
|
6987
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6988
|
+
* @returns The default type url
|
|
6989
|
+
*/
|
|
6990
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6263
6991
|
}
|
|
6264
6992
|
|
|
6265
6993
|
/** Properties of a TXInput. */
|
|
@@ -6354,6 +7082,13 @@ export namespace protocol {
|
|
|
6354
7082
|
* @returns JSON object
|
|
6355
7083
|
*/
|
|
6356
7084
|
public toJSON(): { [k: string]: any };
|
|
7085
|
+
|
|
7086
|
+
/**
|
|
7087
|
+
* Gets the default type url for TXInput
|
|
7088
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7089
|
+
* @returns The default type url
|
|
7090
|
+
*/
|
|
7091
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6357
7092
|
}
|
|
6358
7093
|
|
|
6359
7094
|
namespace TXInput {
|
|
@@ -6458,6 +7193,13 @@ export namespace protocol {
|
|
|
6458
7193
|
* @returns JSON object
|
|
6459
7194
|
*/
|
|
6460
7195
|
public toJSON(): { [k: string]: any };
|
|
7196
|
+
|
|
7197
|
+
/**
|
|
7198
|
+
* Gets the default type url for raw
|
|
7199
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7200
|
+
* @returns The default type url
|
|
7201
|
+
*/
|
|
7202
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6461
7203
|
}
|
|
6462
7204
|
}
|
|
6463
7205
|
|
|
@@ -6547,6 +7289,13 @@ export namespace protocol {
|
|
|
6547
7289
|
* @returns JSON object
|
|
6548
7290
|
*/
|
|
6549
7291
|
public toJSON(): { [k: string]: any };
|
|
7292
|
+
|
|
7293
|
+
/**
|
|
7294
|
+
* Gets the default type url for TXOutputs
|
|
7295
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7296
|
+
* @returns The default type url
|
|
7297
|
+
*/
|
|
7298
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6550
7299
|
}
|
|
6551
7300
|
|
|
6552
7301
|
/** Properties of a ResourceReceipt. */
|
|
@@ -6674,6 +7423,13 @@ export namespace protocol {
|
|
|
6674
7423
|
* @returns JSON object
|
|
6675
7424
|
*/
|
|
6676
7425
|
public toJSON(): { [k: string]: any };
|
|
7426
|
+
|
|
7427
|
+
/**
|
|
7428
|
+
* Gets the default type url for ResourceReceipt
|
|
7429
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7430
|
+
* @returns The default type url
|
|
7431
|
+
*/
|
|
7432
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6677
7433
|
}
|
|
6678
7434
|
|
|
6679
7435
|
/** Properties of a Transaction. */
|
|
@@ -6774,6 +7530,13 @@ export namespace protocol {
|
|
|
6774
7530
|
* @returns JSON object
|
|
6775
7531
|
*/
|
|
6776
7532
|
public toJSON(): { [k: string]: any };
|
|
7533
|
+
|
|
7534
|
+
/**
|
|
7535
|
+
* Gets the default type url for Transaction
|
|
7536
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7537
|
+
* @returns The default type url
|
|
7538
|
+
*/
|
|
7539
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6777
7540
|
}
|
|
6778
7541
|
|
|
6779
7542
|
namespace Transaction {
|
|
@@ -6893,6 +7656,13 @@ export namespace protocol {
|
|
|
6893
7656
|
* @returns JSON object
|
|
6894
7657
|
*/
|
|
6895
7658
|
public toJSON(): { [k: string]: any };
|
|
7659
|
+
|
|
7660
|
+
/**
|
|
7661
|
+
* Gets the default type url for Contract
|
|
7662
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7663
|
+
* @returns The default type url
|
|
7664
|
+
*/
|
|
7665
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6896
7666
|
}
|
|
6897
7667
|
|
|
6898
7668
|
namespace Contract {
|
|
@@ -6929,6 +7699,10 @@ export namespace protocol {
|
|
|
6929
7699
|
UpdateEnergyLimitContract = 45,
|
|
6930
7700
|
AccountPermissionUpdateContract = 46,
|
|
6931
7701
|
ClearABIContract = 48,
|
|
7702
|
+
UpdateBrokerageContract = 49,
|
|
7703
|
+
FreezeBalanceV2Contract = 54,
|
|
7704
|
+
UnfreezeBalanceV2Contract = 55,
|
|
7705
|
+
WithdrawExpireUnfreezeContract = 56,
|
|
6932
7706
|
}
|
|
6933
7707
|
}
|
|
6934
7708
|
|
|
@@ -7075,6 +7849,13 @@ export namespace protocol {
|
|
|
7075
7849
|
* @returns JSON object
|
|
7076
7850
|
*/
|
|
7077
7851
|
public toJSON(): { [k: string]: any };
|
|
7852
|
+
|
|
7853
|
+
/**
|
|
7854
|
+
* Gets the default type url for Result
|
|
7855
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7856
|
+
* @returns The default type url
|
|
7857
|
+
*/
|
|
7858
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7078
7859
|
}
|
|
7079
7860
|
|
|
7080
7861
|
namespace Result {
|
|
@@ -7247,6 +8028,13 @@ export namespace protocol {
|
|
|
7247
8028
|
* @returns JSON object
|
|
7248
8029
|
*/
|
|
7249
8030
|
public toJSON(): { [k: string]: any };
|
|
8031
|
+
|
|
8032
|
+
/**
|
|
8033
|
+
* Gets the default type url for raw
|
|
8034
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8035
|
+
* @returns The default type url
|
|
8036
|
+
*/
|
|
8037
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7250
8038
|
}
|
|
7251
8039
|
}
|
|
7252
8040
|
|
|
@@ -7441,6 +8229,13 @@ export namespace protocol {
|
|
|
7441
8229
|
* @returns JSON object
|
|
7442
8230
|
*/
|
|
7443
8231
|
public toJSON(): { [k: string]: any };
|
|
8232
|
+
|
|
8233
|
+
/**
|
|
8234
|
+
* Gets the default type url for TransactionInfo
|
|
8235
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8236
|
+
* @returns The default type url
|
|
8237
|
+
*/
|
|
8238
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7444
8239
|
}
|
|
7445
8240
|
|
|
7446
8241
|
namespace TransactionInfo {
|
|
@@ -7554,6 +8349,13 @@ export namespace protocol {
|
|
|
7554
8349
|
* @returns JSON object
|
|
7555
8350
|
*/
|
|
7556
8351
|
public toJSON(): { [k: string]: any };
|
|
8352
|
+
|
|
8353
|
+
/**
|
|
8354
|
+
* Gets the default type url for Log
|
|
8355
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8356
|
+
* @returns The default type url
|
|
8357
|
+
*/
|
|
8358
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7557
8359
|
}
|
|
7558
8360
|
}
|
|
7559
8361
|
|
|
@@ -7658,6 +8460,13 @@ export namespace protocol {
|
|
|
7658
8460
|
* @returns JSON object
|
|
7659
8461
|
*/
|
|
7660
8462
|
public toJSON(): { [k: string]: any };
|
|
8463
|
+
|
|
8464
|
+
/**
|
|
8465
|
+
* Gets the default type url for TransactionRet
|
|
8466
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8467
|
+
* @returns The default type url
|
|
8468
|
+
*/
|
|
8469
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7661
8470
|
}
|
|
7662
8471
|
|
|
7663
8472
|
/** Properties of a Transactions. */
|
|
@@ -7749,6 +8558,13 @@ export namespace protocol {
|
|
|
7749
8558
|
* @returns JSON object
|
|
7750
8559
|
*/
|
|
7751
8560
|
public toJSON(): { [k: string]: any };
|
|
8561
|
+
|
|
8562
|
+
/**
|
|
8563
|
+
* Gets the default type url for Transactions
|
|
8564
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8565
|
+
* @returns The default type url
|
|
8566
|
+
*/
|
|
8567
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7752
8568
|
}
|
|
7753
8569
|
|
|
7754
8570
|
/** Properties of a TransactionSign. */
|
|
@@ -7846,6 +8662,13 @@ export namespace protocol {
|
|
|
7846
8662
|
* @returns JSON object
|
|
7847
8663
|
*/
|
|
7848
8664
|
public toJSON(): { [k: string]: any };
|
|
8665
|
+
|
|
8666
|
+
/**
|
|
8667
|
+
* Gets the default type url for TransactionSign
|
|
8668
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8669
|
+
* @returns The default type url
|
|
8670
|
+
*/
|
|
8671
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7849
8672
|
}
|
|
7850
8673
|
|
|
7851
8674
|
/** Properties of a BlockHeader. */
|
|
@@ -7940,6 +8763,13 @@ export namespace protocol {
|
|
|
7940
8763
|
* @returns JSON object
|
|
7941
8764
|
*/
|
|
7942
8765
|
public toJSON(): { [k: string]: any };
|
|
8766
|
+
|
|
8767
|
+
/**
|
|
8768
|
+
* Gets the default type url for BlockHeader
|
|
8769
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8770
|
+
* @returns The default type url
|
|
8771
|
+
*/
|
|
8772
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7943
8773
|
}
|
|
7944
8774
|
|
|
7945
8775
|
namespace BlockHeader {
|
|
@@ -8074,6 +8904,13 @@ export namespace protocol {
|
|
|
8074
8904
|
* @returns JSON object
|
|
8075
8905
|
*/
|
|
8076
8906
|
public toJSON(): { [k: string]: any };
|
|
8907
|
+
|
|
8908
|
+
/**
|
|
8909
|
+
* Gets the default type url for raw
|
|
8910
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8911
|
+
* @returns The default type url
|
|
8912
|
+
*/
|
|
8913
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8077
8914
|
}
|
|
8078
8915
|
}
|
|
8079
8916
|
|
|
@@ -8169,6 +9006,13 @@ export namespace protocol {
|
|
|
8169
9006
|
* @returns JSON object
|
|
8170
9007
|
*/
|
|
8171
9008
|
public toJSON(): { [k: string]: any };
|
|
9009
|
+
|
|
9010
|
+
/**
|
|
9011
|
+
* Gets the default type url for Block
|
|
9012
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9013
|
+
* @returns The default type url
|
|
9014
|
+
*/
|
|
9015
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8172
9016
|
}
|
|
8173
9017
|
|
|
8174
9018
|
/** Properties of a ChainInventory. */
|
|
@@ -8266,6 +9110,13 @@ export namespace protocol {
|
|
|
8266
9110
|
* @returns JSON object
|
|
8267
9111
|
*/
|
|
8268
9112
|
public toJSON(): { [k: string]: any };
|
|
9113
|
+
|
|
9114
|
+
/**
|
|
9115
|
+
* Gets the default type url for ChainInventory
|
|
9116
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9117
|
+
* @returns The default type url
|
|
9118
|
+
*/
|
|
9119
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8269
9120
|
}
|
|
8270
9121
|
|
|
8271
9122
|
namespace ChainInventory {
|
|
@@ -8367,6 +9218,13 @@ export namespace protocol {
|
|
|
8367
9218
|
* @returns JSON object
|
|
8368
9219
|
*/
|
|
8369
9220
|
public toJSON(): { [k: string]: any };
|
|
9221
|
+
|
|
9222
|
+
/**
|
|
9223
|
+
* Gets the default type url for BlockId
|
|
9224
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9225
|
+
* @returns The default type url
|
|
9226
|
+
*/
|
|
9227
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8370
9228
|
}
|
|
8371
9229
|
}
|
|
8372
9230
|
|
|
@@ -8465,6 +9323,13 @@ export namespace protocol {
|
|
|
8465
9323
|
* @returns JSON object
|
|
8466
9324
|
*/
|
|
8467
9325
|
public toJSON(): { [k: string]: any };
|
|
9326
|
+
|
|
9327
|
+
/**
|
|
9328
|
+
* Gets the default type url for BlockInventory
|
|
9329
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9330
|
+
* @returns The default type url
|
|
9331
|
+
*/
|
|
9332
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8468
9333
|
}
|
|
8469
9334
|
|
|
8470
9335
|
namespace BlockInventory {
|
|
@@ -8573,6 +9438,13 @@ export namespace protocol {
|
|
|
8573
9438
|
* @returns JSON object
|
|
8574
9439
|
*/
|
|
8575
9440
|
public toJSON(): { [k: string]: any };
|
|
9441
|
+
|
|
9442
|
+
/**
|
|
9443
|
+
* Gets the default type url for BlockId
|
|
9444
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9445
|
+
* @returns The default type url
|
|
9446
|
+
*/
|
|
9447
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8576
9448
|
}
|
|
8577
9449
|
}
|
|
8578
9450
|
|
|
@@ -8668,6 +9540,13 @@ export namespace protocol {
|
|
|
8668
9540
|
* @returns JSON object
|
|
8669
9541
|
*/
|
|
8670
9542
|
public toJSON(): { [k: string]: any };
|
|
9543
|
+
|
|
9544
|
+
/**
|
|
9545
|
+
* Gets the default type url for Inventory
|
|
9546
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9547
|
+
* @returns The default type url
|
|
9548
|
+
*/
|
|
9549
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8671
9550
|
}
|
|
8672
9551
|
|
|
8673
9552
|
namespace Inventory {
|
|
@@ -8782,6 +9661,13 @@ export namespace protocol {
|
|
|
8782
9661
|
* @returns JSON object
|
|
8783
9662
|
*/
|
|
8784
9663
|
public toJSON(): { [k: string]: any };
|
|
9664
|
+
|
|
9665
|
+
/**
|
|
9666
|
+
* Gets the default type url for Items
|
|
9667
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9668
|
+
* @returns The default type url
|
|
9669
|
+
*/
|
|
9670
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8785
9671
|
}
|
|
8786
9672
|
|
|
8787
9673
|
namespace Items {
|
|
@@ -8883,6 +9769,13 @@ export namespace protocol {
|
|
|
8883
9769
|
* @returns JSON object
|
|
8884
9770
|
*/
|
|
8885
9771
|
public toJSON(): { [k: string]: any };
|
|
9772
|
+
|
|
9773
|
+
/**
|
|
9774
|
+
* Gets the default type url for DynamicProperties
|
|
9775
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9776
|
+
* @returns The default type url
|
|
9777
|
+
*/
|
|
9778
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8886
9779
|
}
|
|
8887
9780
|
|
|
8888
9781
|
/** ReasonCode enum. */
|
|
@@ -9002,6 +9895,13 @@ export namespace protocol {
|
|
|
9002
9895
|
* @returns JSON object
|
|
9003
9896
|
*/
|
|
9004
9897
|
public toJSON(): { [k: string]: any };
|
|
9898
|
+
|
|
9899
|
+
/**
|
|
9900
|
+
* Gets the default type url for DisconnectMessage
|
|
9901
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9902
|
+
* @returns The default type url
|
|
9903
|
+
*/
|
|
9904
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9005
9905
|
}
|
|
9006
9906
|
|
|
9007
9907
|
/** Properties of a HelloMessage. */
|
|
@@ -9123,6 +10023,13 @@ export namespace protocol {
|
|
|
9123
10023
|
* @returns JSON object
|
|
9124
10024
|
*/
|
|
9125
10025
|
public toJSON(): { [k: string]: any };
|
|
10026
|
+
|
|
10027
|
+
/**
|
|
10028
|
+
* Gets the default type url for HelloMessage
|
|
10029
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10030
|
+
* @returns The default type url
|
|
10031
|
+
*/
|
|
10032
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9126
10033
|
}
|
|
9127
10034
|
|
|
9128
10035
|
namespace HelloMessage {
|
|
@@ -9224,6 +10131,13 @@ export namespace protocol {
|
|
|
9224
10131
|
* @returns JSON object
|
|
9225
10132
|
*/
|
|
9226
10133
|
public toJSON(): { [k: string]: any };
|
|
10134
|
+
|
|
10135
|
+
/**
|
|
10136
|
+
* Gets the default type url for BlockId
|
|
10137
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10138
|
+
* @returns The default type url
|
|
10139
|
+
*/
|
|
10140
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9227
10141
|
}
|
|
9228
10142
|
}
|
|
9229
10143
|
|
|
@@ -9370,6 +10284,13 @@ export namespace protocol {
|
|
|
9370
10284
|
* @returns JSON object
|
|
9371
10285
|
*/
|
|
9372
10286
|
public toJSON(): { [k: string]: any };
|
|
10287
|
+
|
|
10288
|
+
/**
|
|
10289
|
+
* Gets the default type url for SmartContract
|
|
10290
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10291
|
+
* @returns The default type url
|
|
10292
|
+
*/
|
|
10293
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9373
10294
|
}
|
|
9374
10295
|
|
|
9375
10296
|
namespace SmartContract {
|
|
@@ -9462,6 +10383,13 @@ export namespace protocol {
|
|
|
9462
10383
|
* @returns JSON object
|
|
9463
10384
|
*/
|
|
9464
10385
|
public toJSON(): { [k: string]: any };
|
|
10386
|
+
|
|
10387
|
+
/**
|
|
10388
|
+
* Gets the default type url for ABI
|
|
10389
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10390
|
+
* @returns The default type url
|
|
10391
|
+
*/
|
|
10392
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9465
10393
|
}
|
|
9466
10394
|
|
|
9467
10395
|
namespace ABI {
|
|
@@ -9599,6 +10527,13 @@ export namespace protocol {
|
|
|
9599
10527
|
* @returns JSON object
|
|
9600
10528
|
*/
|
|
9601
10529
|
public toJSON(): { [k: string]: any };
|
|
10530
|
+
|
|
10531
|
+
/**
|
|
10532
|
+
* Gets the default type url for Entry
|
|
10533
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10534
|
+
* @returns The default type url
|
|
10535
|
+
*/
|
|
10536
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9602
10537
|
}
|
|
9603
10538
|
|
|
9604
10539
|
namespace Entry {
|
|
@@ -9723,6 +10658,13 @@ export namespace protocol {
|
|
|
9723
10658
|
* @returns JSON object
|
|
9724
10659
|
*/
|
|
9725
10660
|
public toJSON(): { [k: string]: any };
|
|
10661
|
+
|
|
10662
|
+
/**
|
|
10663
|
+
* Gets the default type url for Param
|
|
10664
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10665
|
+
* @returns The default type url
|
|
10666
|
+
*/
|
|
10667
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9726
10668
|
}
|
|
9727
10669
|
|
|
9728
10670
|
/** StateMutabilityType enum. */
|
|
@@ -9856,6 +10798,13 @@ export namespace protocol {
|
|
|
9856
10798
|
* @returns JSON object
|
|
9857
10799
|
*/
|
|
9858
10800
|
public toJSON(): { [k: string]: any };
|
|
10801
|
+
|
|
10802
|
+
/**
|
|
10803
|
+
* Gets the default type url for InternalTransaction
|
|
10804
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10805
|
+
* @returns The default type url
|
|
10806
|
+
*/
|
|
10807
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9859
10808
|
}
|
|
9860
10809
|
|
|
9861
10810
|
namespace InternalTransaction {
|
|
@@ -9965,6 +10914,13 @@ export namespace protocol {
|
|
|
9965
10914
|
* @returns JSON object
|
|
9966
10915
|
*/
|
|
9967
10916
|
public toJSON(): { [k: string]: any };
|
|
10917
|
+
|
|
10918
|
+
/**
|
|
10919
|
+
* Gets the default type url for CallValueInfo
|
|
10920
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10921
|
+
* @returns The default type url
|
|
10922
|
+
*/
|
|
10923
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9968
10924
|
}
|
|
9969
10925
|
}
|
|
9970
10926
|
|
|
@@ -10075,6 +11031,13 @@ export namespace protocol {
|
|
|
10075
11031
|
* @returns JSON object
|
|
10076
11032
|
*/
|
|
10077
11033
|
public toJSON(): { [k: string]: any };
|
|
11034
|
+
|
|
11035
|
+
/**
|
|
11036
|
+
* Gets the default type url for DelegatedResourceAccountIndex
|
|
11037
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11038
|
+
* @returns The default type url
|
|
11039
|
+
*/
|
|
11040
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10078
11041
|
}
|
|
10079
11042
|
|
|
10080
11043
|
/** Properties of a NodeInfo. */
|
|
@@ -10223,6 +11186,13 @@ export namespace protocol {
|
|
|
10223
11186
|
* @returns JSON object
|
|
10224
11187
|
*/
|
|
10225
11188
|
public toJSON(): { [k: string]: any };
|
|
11189
|
+
|
|
11190
|
+
/**
|
|
11191
|
+
* Gets the default type url for NodeInfo
|
|
11192
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11193
|
+
* @returns The default type url
|
|
11194
|
+
*/
|
|
11195
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10226
11196
|
}
|
|
10227
11197
|
|
|
10228
11198
|
namespace NodeInfo {
|
|
@@ -10459,6 +11429,13 @@ export namespace protocol {
|
|
|
10459
11429
|
* @returns JSON object
|
|
10460
11430
|
*/
|
|
10461
11431
|
public toJSON(): { [k: string]: any };
|
|
11432
|
+
|
|
11433
|
+
/**
|
|
11434
|
+
* Gets the default type url for PeerInfo
|
|
11435
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11436
|
+
* @returns The default type url
|
|
11437
|
+
*/
|
|
11438
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10462
11439
|
}
|
|
10463
11440
|
|
|
10464
11441
|
/** Properties of a ConfigNodeInfo. */
|
|
@@ -10661,6 +11638,13 @@ export namespace protocol {
|
|
|
10661
11638
|
* @returns JSON object
|
|
10662
11639
|
*/
|
|
10663
11640
|
public toJSON(): { [k: string]: any };
|
|
11641
|
+
|
|
11642
|
+
/**
|
|
11643
|
+
* Gets the default type url for ConfigNodeInfo
|
|
11644
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11645
|
+
* @returns The default type url
|
|
11646
|
+
*/
|
|
11647
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10664
11648
|
}
|
|
10665
11649
|
|
|
10666
11650
|
/** Properties of a MachineInfo. */
|
|
@@ -10827,6 +11811,13 @@ export namespace protocol {
|
|
|
10827
11811
|
* @returns JSON object
|
|
10828
11812
|
*/
|
|
10829
11813
|
public toJSON(): { [k: string]: any };
|
|
11814
|
+
|
|
11815
|
+
/**
|
|
11816
|
+
* Gets the default type url for MachineInfo
|
|
11817
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11818
|
+
* @returns The default type url
|
|
11819
|
+
*/
|
|
11820
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10830
11821
|
}
|
|
10831
11822
|
|
|
10832
11823
|
namespace MachineInfo {
|
|
@@ -10956,6 +11947,13 @@ export namespace protocol {
|
|
|
10956
11947
|
* @returns JSON object
|
|
10957
11948
|
*/
|
|
10958
11949
|
public toJSON(): { [k: string]: any };
|
|
11950
|
+
|
|
11951
|
+
/**
|
|
11952
|
+
* Gets the default type url for MemoryDescInfo
|
|
11953
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11954
|
+
* @returns The default type url
|
|
11955
|
+
*/
|
|
11956
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10959
11957
|
}
|
|
10960
11958
|
|
|
10961
11959
|
/** Properties of a DeadLockThreadInfo. */
|
|
@@ -11096,6 +12094,13 @@ export namespace protocol {
|
|
|
11096
12094
|
* @returns JSON object
|
|
11097
12095
|
*/
|
|
11098
12096
|
public toJSON(): { [k: string]: any };
|
|
12097
|
+
|
|
12098
|
+
/**
|
|
12099
|
+
* Gets the default type url for DeadLockThreadInfo
|
|
12100
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12101
|
+
* @returns The default type url
|
|
12102
|
+
*/
|
|
12103
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11099
12104
|
}
|
|
11100
12105
|
}
|
|
11101
12106
|
}
|
|
@@ -11200,6 +12205,13 @@ export namespace google {
|
|
|
11200
12205
|
* @returns JSON object
|
|
11201
12206
|
*/
|
|
11202
12207
|
public toJSON(): { [k: string]: any };
|
|
12208
|
+
|
|
12209
|
+
/**
|
|
12210
|
+
* Gets the default type url for Any
|
|
12211
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12212
|
+
* @returns The default type url
|
|
12213
|
+
*/
|
|
12214
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11203
12215
|
}
|
|
11204
12216
|
}
|
|
11205
12217
|
}
|