@bitgo-beta/sdk-coin-trx 1.0.2-beta.99 → 1.0.2-beta.990
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 +855 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +7 -2
- package/dist/src/lib/contractCallBuilder.js +11 -11
- package/dist/src/lib/enum.js +3 -3
- package/dist/src/lib/iface.d.ts +11 -0
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +1 -1
- package/dist/src/lib/index.d.ts +1 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +24 -9
- package/dist/src/lib/keyPair.d.ts +0 -1
- package/dist/src/lib/keyPair.d.ts.map +1 -1
- package/dist/src/lib/keyPair.js +31 -18
- package/dist/src/lib/tokenTransferBuilder.d.ts +1 -1
- package/dist/src/lib/tokenTransferBuilder.js +3 -3
- package/dist/src/lib/transaction.js +6 -6
- package/dist/src/lib/transactionBuilder.js +28 -14
- package/dist/src/lib/utils.d.ts +3 -4
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +65 -46
- package/dist/src/lib/wrappedBuilder.js +2 -2
- package/dist/src/register.d.ts +3 -0
- package/dist/src/register.d.ts.map +1 -0
- package/dist/src/register.js +15 -0
- package/dist/src/trx.d.ts +90 -14
- package/dist/src/trx.d.ts.map +1 -1
- package/dist/src/trx.js +382 -77
- package/dist/src/trxToken.d.ts +8 -1
- package/dist/src/trxToken.d.ts.map +1 -1
- package/dist/src/trxToken.js +23 -1
- package/package.json +15 -14
package/dist/src/trx.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { CoinFamily, BaseCoin as StaticsBaseCoin } from '@bitgo-beta/statics';
|
|
3
|
-
import { BaseCoin, BitGoBase, KeyPair, ParsedTransaction, ParseTransactionOptions, SignedTransaction, SignTransactionOptions, TransactionExplanation, TransactionFee, TransactionPrebuild as BaseTransactionPrebuild, TransactionRecipient as Recipient, VerifyAddressOptions, VerifyTransactionOptions } from '@bitgo-beta/sdk-core';
|
|
2
|
+
import { BaseCoin, BitGoBase, KeyPair, ParsedTransaction, ParseTransactionOptions, SignedTransaction, SignTransactionOptions, TransactionExplanation, TransactionFee, TransactionPrebuild as BaseTransactionPrebuild, TransactionRecipient as Recipient, VerifyAddressOptions, VerifyTransactionOptions, BaseTransaction } from '@bitgo-beta/sdk-core';
|
|
4
3
|
import { Interface } from './lib';
|
|
4
|
+
import { TransactionReceipt } from './lib/iface';
|
|
5
5
|
export declare const MINIMUM_TRON_MSIG_TRANSACTION_FEE = 1000000;
|
|
6
|
+
export declare const SAFE_TRON_TRANSACTION_FEE: number;
|
|
7
|
+
export declare const SAFE_TRON_TOKEN_TRANSACTION_FEE: number;
|
|
8
|
+
export declare const RECOVER_TRANSACTION_EXPIRY = 86400000;
|
|
9
|
+
export declare const DEFAULT_SCAN_FACTOR = 20;
|
|
6
10
|
export interface TronSignTransactionOptions extends SignTransactionOptions {
|
|
7
11
|
txPrebuild: TransactionPrebuild;
|
|
8
12
|
prv: string;
|
|
@@ -12,6 +16,11 @@ export interface TxInfo {
|
|
|
12
16
|
from: string;
|
|
13
17
|
txid: string;
|
|
14
18
|
}
|
|
19
|
+
export interface AddressInfo {
|
|
20
|
+
address: string;
|
|
21
|
+
chain: number;
|
|
22
|
+
index: number;
|
|
23
|
+
}
|
|
15
24
|
export interface TronTransactionExplanation extends TransactionExplanation {
|
|
16
25
|
expiration: number;
|
|
17
26
|
timestamp: number;
|
|
@@ -19,6 +28,7 @@ export interface TronTransactionExplanation extends TransactionExplanation {
|
|
|
19
28
|
export interface TransactionPrebuild extends BaseTransactionPrebuild {
|
|
20
29
|
txHex: string;
|
|
21
30
|
txInfo: TxInfo;
|
|
31
|
+
addressInfo?: AddressInfo;
|
|
22
32
|
feeInfo: TransactionFee;
|
|
23
33
|
}
|
|
24
34
|
export interface ExplainTransactionOptions {
|
|
@@ -34,11 +44,33 @@ export interface RecoveryOptions {
|
|
|
34
44
|
bitgoKey: string;
|
|
35
45
|
recoveryDestination: string;
|
|
36
46
|
krsProvider?: string;
|
|
47
|
+
tokenContractAddress?: string;
|
|
37
48
|
walletPassphrase?: string;
|
|
49
|
+
startingScanIndex?: number;
|
|
50
|
+
scan?: number;
|
|
51
|
+
}
|
|
52
|
+
export interface ConsolidationRecoveryOptions {
|
|
53
|
+
userKey: string;
|
|
54
|
+
backupKey: string;
|
|
55
|
+
bitgoKey: string;
|
|
56
|
+
tokenContractAddress?: string;
|
|
57
|
+
startingScanIndex?: number;
|
|
58
|
+
endingScanIndex?: number;
|
|
59
|
+
}
|
|
60
|
+
export interface ConsolidationRecoveryBatch {
|
|
61
|
+
transactions: RecoveryTransaction[];
|
|
62
|
+
}
|
|
63
|
+
export interface FeeInfo {
|
|
64
|
+
fee: string;
|
|
38
65
|
}
|
|
39
66
|
export interface RecoveryTransaction {
|
|
40
|
-
|
|
41
|
-
|
|
67
|
+
txHex?: string;
|
|
68
|
+
feeInfo?: FeeInfo;
|
|
69
|
+
coin?: string;
|
|
70
|
+
tx?: TransactionPrebuild;
|
|
71
|
+
recoveryAmount?: number;
|
|
72
|
+
tokenTxs?: TransactionReceipt[];
|
|
73
|
+
addressInfo?: AddressInfo;
|
|
42
74
|
}
|
|
43
75
|
export declare enum NodeTypes {
|
|
44
76
|
Full = 0,
|
|
@@ -48,14 +80,7 @@ export declare enum NodeTypes {
|
|
|
48
80
|
* This structure is not a complete model of the AccountResponse from a node.
|
|
49
81
|
*/
|
|
50
82
|
export interface AccountResponse {
|
|
51
|
-
|
|
52
|
-
balance: number;
|
|
53
|
-
owner_permission: {
|
|
54
|
-
keys: [Interface.PermissionKey];
|
|
55
|
-
};
|
|
56
|
-
active_permission: [{
|
|
57
|
-
keys: [Interface.PermissionKey];
|
|
58
|
-
}];
|
|
83
|
+
data: [Interface.AccountInfo];
|
|
59
84
|
}
|
|
60
85
|
export declare class Trx extends BaseCoin {
|
|
61
86
|
protected readonly _staticsCoin: Readonly<StaticsBaseCoin>;
|
|
@@ -72,6 +97,8 @@ export declare class Trx extends BaseCoin {
|
|
|
72
97
|
* @returns {boolean} True if okay to send 0 value, false otherwise
|
|
73
98
|
*/
|
|
74
99
|
valuelessTransferAllowed(): boolean;
|
|
100
|
+
/** @inheritDoc */
|
|
101
|
+
allowsAccountConsolidations(): boolean;
|
|
75
102
|
/**
|
|
76
103
|
* Checks if this is a valid base58 or hex address
|
|
77
104
|
* @param address
|
|
@@ -94,13 +121,22 @@ export declare class Trx extends BaseCoin {
|
|
|
94
121
|
parseTransaction(params: ParseTransactionOptions): Promise<ParsedTransaction>;
|
|
95
122
|
isWalletAddress(params: VerifyAddressOptions): Promise<boolean>;
|
|
96
123
|
verifyTransaction(params: VerifyTransactionOptions): Promise<boolean>;
|
|
124
|
+
/**
|
|
125
|
+
* Derive a user key using the chain path of the address
|
|
126
|
+
* @param key
|
|
127
|
+
* @param path
|
|
128
|
+
* @returns {string} derived private key
|
|
129
|
+
*/
|
|
130
|
+
deriveKeyWithPath({ key, path }: {
|
|
131
|
+
key: string;
|
|
132
|
+
path: string;
|
|
133
|
+
}): string;
|
|
97
134
|
/**
|
|
98
135
|
* Assemble keychain and half-sign prebuilt transaction
|
|
99
136
|
*
|
|
100
137
|
* @param params
|
|
101
138
|
* @param params.txPrebuild {Object} prebuild object returned by platform
|
|
102
139
|
* @param params.prv {String} user prv
|
|
103
|
-
* @param params.wallet.addressVersion {String} this is the version of the Algorand multisig address generation format
|
|
104
140
|
* @returns Bluebird<SignedTransaction>
|
|
105
141
|
*/
|
|
106
142
|
signTransaction(params: TronSignTransactionOptions): Promise<SignedTransaction>;
|
|
@@ -136,18 +172,25 @@ export declare class Trx extends BaseCoin {
|
|
|
136
172
|
getExtraPrebuildParams(buildParams: any): Promise<any>;
|
|
137
173
|
pubToHexAddress(pub: string): string;
|
|
138
174
|
xprvToCompressedPrv(xprv: string): string;
|
|
175
|
+
private getNodeUrl;
|
|
139
176
|
/**
|
|
140
177
|
* Make a query to Trongrid for information such as balance, token balance, solidity calls
|
|
141
178
|
* @param query {Object} key-value pairs of parameters to append after /api
|
|
142
179
|
* @returns {Object} response from Trongrid
|
|
143
180
|
*/
|
|
144
181
|
private recoveryPost;
|
|
182
|
+
/**
|
|
183
|
+
* Make a query to Trongrid for information such as balance, token balance, solidity calls
|
|
184
|
+
* @param query {Object} key-value pairs of parameters to append after /api
|
|
185
|
+
* @returns {Object} response from Trongrid
|
|
186
|
+
*/
|
|
187
|
+
private recoveryGet;
|
|
145
188
|
/**
|
|
146
189
|
* Query our explorer for the balance of an address
|
|
147
190
|
* @param address {String} the address encoded in hex
|
|
148
191
|
* @returns {BigNumber} address balance
|
|
149
192
|
*/
|
|
150
|
-
private
|
|
193
|
+
private getAccountBalancesFromNode;
|
|
151
194
|
/**
|
|
152
195
|
* Retrieves our build transaction from a node.
|
|
153
196
|
* @param toAddr hex-encoded address
|
|
@@ -155,6 +198,13 @@ export declare class Trx extends BaseCoin {
|
|
|
155
198
|
* @param amount
|
|
156
199
|
*/
|
|
157
200
|
private getBuildTransaction;
|
|
201
|
+
/**
|
|
202
|
+
* Retrieves our build transaction from a node.
|
|
203
|
+
* @param toAddr hex-encoded address
|
|
204
|
+
* @param fromAddr hex-encoded address
|
|
205
|
+
* @param amount
|
|
206
|
+
*/
|
|
207
|
+
private getTriggerSmartContractTransaction;
|
|
158
208
|
/**
|
|
159
209
|
* Throws an error if any keys in the ownerKeys collection don't match the keys array we pass
|
|
160
210
|
* @param ownerKeys
|
|
@@ -164,15 +214,41 @@ export declare class Trx extends BaseCoin {
|
|
|
164
214
|
address: string;
|
|
165
215
|
weight: number;
|
|
166
216
|
}[], keys: string[]): void;
|
|
217
|
+
/**
|
|
218
|
+
* Format for offline vault signing
|
|
219
|
+
* @param {BaseTransaction} tx
|
|
220
|
+
* @param {number} fee
|
|
221
|
+
* @param {number} recoveryAmount
|
|
222
|
+
* @returns {RecoveryTransaction}
|
|
223
|
+
*/
|
|
224
|
+
formatForOfflineVault(tx: BaseTransaction, fee: number, recoveryAmount: number, addressInfo?: AddressInfo): RecoveryTransaction;
|
|
167
225
|
/**
|
|
168
226
|
* Builds a funds recovery transaction without BitGo.
|
|
169
227
|
* We need to do three queries during this:
|
|
170
228
|
* 1) Node query - how much money is in the account
|
|
171
229
|
* 2) Build transaction - build our transaction for the amount
|
|
172
230
|
* 3) Send signed build - send our signed build to a public node
|
|
231
|
+
*
|
|
232
|
+
* Note 1: for base address recoveries, fund will be recovered to recovery destination if base address balance is
|
|
233
|
+
* more than 2.1 TRX for native TRX recovery and 100 TRX for token recover. For receive addresses, fund will be
|
|
234
|
+
* recovered to base address first then swept to base address(decided as the universal pattern in team meeting).
|
|
235
|
+
*
|
|
236
|
+
* Note 2: the function supports token sweep from base address.
|
|
237
|
+
* TODO: support token sweep from receive address.
|
|
238
|
+
*
|
|
173
239
|
* @param params
|
|
174
240
|
*/
|
|
175
241
|
recover(params: RecoveryOptions): Promise<RecoveryTransaction>;
|
|
242
|
+
/**
|
|
243
|
+
* Builds native TRX recoveries of receive addresses in batch without BitGo.
|
|
244
|
+
* Funds will be recovered to base address first. You need to initiate another sweep txn after that.
|
|
245
|
+
* Note: there will be another recoverTokenConsolidations function to support token recover from receive addresses.
|
|
246
|
+
*
|
|
247
|
+
* @param {ConsolidationRecoveryOptions} params - options for consolidation recovery.
|
|
248
|
+
* @param {string} [params.startingScanIndex] - receive address index to start scanning from. default to 1 (inclusive).
|
|
249
|
+
* @param {string} [params.endingScanIndex] - receive address index to end scanning at. default to startingScanIndex + 20 (exclusive).
|
|
250
|
+
*/
|
|
251
|
+
recoverConsolidations(params: ConsolidationRecoveryOptions): Promise<ConsolidationRecoveryBatch>;
|
|
176
252
|
/**
|
|
177
253
|
* Explain a Tron transaction from txHex
|
|
178
254
|
* @param params
|
package/dist/src/trx.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"trx.d.ts","sourceRoot":"","sources":["../../src/trx.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"trx.d.ts","sourceRoot":"","sources":["../../src/trx.ts"],"names":[],"mappings":"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"}
|