@trustwallet/wallet-core 4.0.24 → 4.0.25
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.
@@ -40270,16 +40270,16 @@ export namespace TW {
|
|
40270
40270
|
/** Recipient address */
|
40271
40271
|
toAddress?: (string|null);
|
40272
40272
|
|
40273
|
-
/** Theta token amount to send in wei (uint256, serialized
|
40273
|
+
/** Theta token amount to send in wei (uint256, serialized big endian) */
|
40274
40274
|
thetaAmount?: (Uint8Array|null);
|
40275
40275
|
|
40276
|
-
/** TFuel token amount to send in wei (uint256, serialized
|
40276
|
+
/** TFuel token amount to send in wei (uint256, serialized big endian) */
|
40277
40277
|
tfuelAmount?: (Uint8Array|null);
|
40278
40278
|
|
40279
40279
|
/** Sequence number of the transaction for the sender address */
|
40280
40280
|
sequence?: (Long|null);
|
40281
40281
|
|
40282
|
-
/** Fee amount in TFuel wei for the transaction (uint256, serialized
|
40282
|
+
/** Fee amount in TFuel wei for the transaction (uint256, serialized big endian) */
|
40283
40283
|
fee?: (Uint8Array|null);
|
40284
40284
|
|
40285
40285
|
/** The secret private key used for signing (32 bytes). */
|
@@ -40304,16 +40304,16 @@ export namespace TW {
|
|
40304
40304
|
/** Recipient address */
|
40305
40305
|
public toAddress: string;
|
40306
40306
|
|
40307
|
-
/** Theta token amount to send in wei (uint256, serialized
|
40307
|
+
/** Theta token amount to send in wei (uint256, serialized big endian) */
|
40308
40308
|
public thetaAmount: Uint8Array;
|
40309
40309
|
|
40310
|
-
/** TFuel token amount to send in wei (uint256, serialized
|
40310
|
+
/** TFuel token amount to send in wei (uint256, serialized big endian) */
|
40311
40311
|
public tfuelAmount: Uint8Array;
|
40312
40312
|
|
40313
40313
|
/** Sequence number of the transaction for the sender address */
|
40314
40314
|
public sequence: Long;
|
40315
40315
|
|
40316
|
-
/** Fee amount in TFuel wei for the transaction (uint256, serialized
|
40316
|
+
/** Fee amount in TFuel wei for the transaction (uint256, serialized big endian) */
|
40317
40317
|
public fee: Uint8Array;
|
40318
40318
|
|
40319
40319
|
/** The secret private key used for signing (32 bytes). */
|
@@ -42991,7 +42991,7 @@ export namespace TW {
|
|
42991
42991
|
/** Recipient address. */
|
42992
42992
|
to?: (string|null);
|
42993
42993
|
|
42994
|
-
/** Transaction amount (uint256, serialized
|
42994
|
+
/** Transaction amount (uint256, serialized big endian) */
|
42995
42995
|
value?: (Uint8Array|null);
|
42996
42996
|
|
42997
42997
|
/** Payload data. */
|
@@ -43010,7 +43010,7 @@ export namespace TW {
|
|
43010
43010
|
/** Recipient address. */
|
43011
43011
|
public to: string;
|
43012
43012
|
|
43013
|
-
/** Transaction amount (uint256, serialized
|
43013
|
+
/** Transaction amount (uint256, serialized big endian) */
|
43014
43014
|
public value: Uint8Array;
|
43015
43015
|
|
43016
43016
|
/** Payload data. */
|
@@ -119530,10 +119530,10 @@
|
|
119530
119530
|
* @interface ISigningInput
|
119531
119531
|
* @property {string|null} [chainId] Chain ID string, mainnet, testnet and privatenet
|
119532
119532
|
* @property {string|null} [toAddress] Recipient address
|
119533
|
-
* @property {Uint8Array|null} [thetaAmount] Theta token amount to send in wei (uint256, serialized
|
119534
|
-
* @property {Uint8Array|null} [tfuelAmount] TFuel token amount to send in wei (uint256, serialized
|
119533
|
+
* @property {Uint8Array|null} [thetaAmount] Theta token amount to send in wei (uint256, serialized big endian)
|
119534
|
+
* @property {Uint8Array|null} [tfuelAmount] TFuel token amount to send in wei (uint256, serialized big endian)
|
119535
119535
|
* @property {Long|null} [sequence] Sequence number of the transaction for the sender address
|
119536
|
-
* @property {Uint8Array|null} [fee] Fee amount in TFuel wei for the transaction (uint256, serialized
|
119536
|
+
* @property {Uint8Array|null} [fee] Fee amount in TFuel wei for the transaction (uint256, serialized big endian)
|
119537
119537
|
* @property {Uint8Array|null} [privateKey] The secret private key used for signing (32 bytes).
|
119538
119538
|
* @property {Uint8Array|null} [publicKey] Public key
|
119539
119539
|
*/
|
@@ -119570,7 +119570,7 @@
|
|
119570
119570
|
SigningInput.prototype.toAddress = "";
|
119571
119571
|
|
119572
119572
|
/**
|
119573
|
-
* Theta token amount to send in wei (uint256, serialized
|
119573
|
+
* Theta token amount to send in wei (uint256, serialized big endian)
|
119574
119574
|
* @member {Uint8Array} thetaAmount
|
119575
119575
|
* @memberof TW.Theta.Proto.SigningInput
|
119576
119576
|
* @instance
|
@@ -119578,7 +119578,7 @@
|
|
119578
119578
|
SigningInput.prototype.thetaAmount = $util.newBuffer([]);
|
119579
119579
|
|
119580
119580
|
/**
|
119581
|
-
* TFuel token amount to send in wei (uint256, serialized
|
119581
|
+
* TFuel token amount to send in wei (uint256, serialized big endian)
|
119582
119582
|
* @member {Uint8Array} tfuelAmount
|
119583
119583
|
* @memberof TW.Theta.Proto.SigningInput
|
119584
119584
|
* @instance
|
@@ -119594,7 +119594,7 @@
|
|
119594
119594
|
SigningInput.prototype.sequence = $util.Long ? $util.Long.fromBits(0,0,true) : 0;
|
119595
119595
|
|
119596
119596
|
/**
|
119597
|
-
* Fee amount in TFuel wei for the transaction (uint256, serialized
|
119597
|
+
* Fee amount in TFuel wei for the transaction (uint256, serialized big endian)
|
119598
119598
|
* @member {Uint8Array} fee
|
119599
119599
|
* @memberof TW.Theta.Proto.SigningInput
|
119600
119600
|
* @instance
|
@@ -127727,7 +127727,7 @@
|
|
127727
127727
|
* @memberof TW.VeChain.Proto
|
127728
127728
|
* @interface IClause
|
127729
127729
|
* @property {string|null} [to] Recipient address.
|
127730
|
-
* @property {Uint8Array|null} [value] Transaction amount (uint256, serialized
|
127730
|
+
* @property {Uint8Array|null} [value] Transaction amount (uint256, serialized big endian)
|
127731
127731
|
* @property {Uint8Array|null} [data] Payload data.
|
127732
127732
|
*/
|
127733
127733
|
|
@@ -127755,7 +127755,7 @@
|
|
127755
127755
|
Clause.prototype.to = "";
|
127756
127756
|
|
127757
127757
|
/**
|
127758
|
-
* Transaction amount (uint256, serialized
|
127758
|
+
* Transaction amount (uint256, serialized big endian)
|
127759
127759
|
* @member {Uint8Array} value
|
127760
127760
|
* @memberof TW.VeChain.Proto.Clause
|
127761
127761
|
* @instance
|
Binary file
|