@bitgo-beta/sdk-coin-iota 1.0.1-beta.7 → 1.0.1-beta.700
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/README.md +1 -1
- package/dist/src/iota.d.ts +242 -23
- package/dist/src/iota.d.ts.map +1 -1
- package/dist/src/iota.js +803 -37
- package/dist/src/lib/constants.d.ts +76 -8
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +93 -11
- package/dist/src/lib/iface.d.ts +174 -2
- 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 +4 -2
- package/dist/src/lib/keyPair.d.ts +105 -5
- package/dist/src/lib/keyPair.d.ts.map +1 -1
- package/dist/src/lib/keyPair.js +122 -9
- package/dist/src/lib/transaction.d.ts +175 -5
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +390 -6
- package/dist/src/lib/transactionBuilder.d.ts +109 -9
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +200 -14
- package/dist/src/lib/transactionBuilderFactory.d.ts +98 -2
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +132 -5
- package/dist/src/lib/transferBuilder.d.ts +52 -2
- package/dist/src/lib/transferBuilder.d.ts.map +1 -1
- package/dist/src/lib/transferBuilder.js +86 -3
- package/dist/src/lib/transferTransaction.d.ts +124 -0
- package/dist/src/lib/transferTransaction.d.ts.map +1 -0
- package/dist/src/lib/transferTransaction.js +341 -0
- package/dist/src/lib/utils.d.ts +111 -7
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +179 -14
- package/dist/test/resources/iota.d.ts +42 -0
- package/dist/test/resources/iota.d.ts.map +1 -0
- package/dist/test/resources/iota.js +136 -0
- package/dist/test/unit/helpers/testHelpers.d.ts +57 -0
- package/dist/test/unit/helpers/testHelpers.d.ts.map +1 -0
- package/dist/test/unit/helpers/testHelpers.js +176 -0
- package/dist/test/unit/index.d.ts +2 -0
- package/dist/test/unit/index.d.ts.map +1 -0
- package/dist/test/unit/index.js +16 -0
- package/dist/test/unit/iota.d.ts +2 -0
- package/dist/test/unit/iota.d.ts.map +1 -0
- package/dist/test/unit/iota.js +1101 -0
- package/dist/test/unit/keyPair.d.ts +2 -0
- package/dist/test/unit/keyPair.d.ts.map +1 -0
- package/dist/test/unit/keyPair.js +108 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.js +188 -0
- package/dist/test/unit/transactionBuilder/transactionBuilderFactory.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transactionBuilderFactory.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transactionBuilderFactory.js +178 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.js +438 -0
- package/dist/test/unit/transferTransaction.d.ts +2 -0
- package/dist/test/unit/transferTransaction.d.ts.map +1 -0
- package/dist/test/unit/transferTransaction.js +218 -0
- package/dist/test/unit/utils.d.ts +2 -0
- package/dist/test/unit/utils.d.ts.map +1 -0
- package/dist/test/unit/utils.js +252 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +18 -10
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -0
package/README.md
CHANGED
|
@@ -36,4 +36,4 @@ const iota = sdk.coin('iota');
|
|
|
36
36
|
|
|
37
37
|
## Documentation
|
|
38
38
|
|
|
39
|
-
For detailed API documentation,
|
|
39
|
+
For detailed API documentation, view the BitGo [Developer Portal](https://developers.bitgo.com/reference/overview#/).
|
package/dist/src/iota.d.ts
CHANGED
|
@@ -1,53 +1,272 @@
|
|
|
1
|
-
import { AuditDecryptedKeyParams, BaseCoin, BitGoBase, KeyPair
|
|
1
|
+
import { AuditDecryptedKeyParams, BaseCoin, BitGoBase, KeyPair, MPCAlgorithm, MPCConsolidationRecoveryOptions, MPCRecoveryOptions, MPCSweepTxs, MPCTxs, MultisigType, ParsedTransaction, PopulatedIntent, PrebuildTransactionWithIntentOptions, SignedTransaction, SignTransactionOptions, TssVerifyAddressOptions, VerifyTransactionOptions } from '@bitgo-beta/sdk-core';
|
|
2
2
|
import { BaseCoin as StaticsBaseCoin, CoinFamily } from '@bitgo-beta/statics';
|
|
3
|
+
import { ExplainTransactionOptions, IotaParseTransactionOptions, TransactionExplanation } from './lib/iface';
|
|
4
|
+
export interface IotaRecoveryOptions extends MPCRecoveryOptions {
|
|
5
|
+
fullnodeRpcUrl?: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* IOTA coin implementation.
|
|
9
|
+
* Supports TSS (Threshold Signature Scheme) with EDDSA algorithm.
|
|
10
|
+
*/
|
|
3
11
|
export declare class Iota extends BaseCoin {
|
|
4
12
|
protected readonly _staticsCoin: Readonly<StaticsBaseCoin>;
|
|
5
13
|
protected constructor(bitgo: BitGoBase, staticsCoin?: Readonly<StaticsBaseCoin>);
|
|
14
|
+
/**
|
|
15
|
+
* Factory method to create an IOTA coin instance.
|
|
16
|
+
*/
|
|
6
17
|
static createInstance(bitgo: BitGoBase, staticsCoin?: Readonly<StaticsBaseCoin>): BaseCoin;
|
|
7
18
|
getBaseFactor(): string | number;
|
|
8
19
|
getChain(): string;
|
|
9
20
|
getFamily(): CoinFamily;
|
|
10
21
|
getFullName(): string;
|
|
22
|
+
supportsTss(): boolean;
|
|
23
|
+
getDefaultMultisigType(): MultisigType;
|
|
24
|
+
getMPCAlgorithm(): MPCAlgorithm;
|
|
11
25
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @param address
|
|
26
|
+
* Validates an IOTA address.
|
|
27
|
+
* @param address - The address to validate (64-character hex string)
|
|
14
28
|
* @returns true if the address is valid
|
|
15
29
|
*/
|
|
16
30
|
isValidAddress(address: string): boolean;
|
|
17
31
|
/**
|
|
18
|
-
*
|
|
19
|
-
* @param
|
|
32
|
+
* Validates a public key.
|
|
33
|
+
* @param pub - The public key to validate
|
|
34
|
+
* @returns true if the public key is valid
|
|
20
35
|
*/
|
|
21
|
-
|
|
36
|
+
isValidPub(pub: string): boolean;
|
|
22
37
|
/**
|
|
23
|
-
*
|
|
24
|
-
* @param params
|
|
38
|
+
* Verifies if an address belongs to a TSS wallet.
|
|
39
|
+
* @param params - Verification parameters including wallet address and user/backup public keys
|
|
40
|
+
* @returns true if the address belongs to the wallet
|
|
25
41
|
*/
|
|
26
|
-
isWalletAddress(params:
|
|
42
|
+
isWalletAddress(params: TssVerifyAddressOptions): Promise<boolean>;
|
|
27
43
|
/**
|
|
28
|
-
*
|
|
29
|
-
* @param params
|
|
44
|
+
* Explains a transaction by parsing its hex representation.
|
|
45
|
+
* @param params - Parameters containing the transaction hex
|
|
46
|
+
* @returns Detailed explanation of the transaction
|
|
47
|
+
* @throws Error if txHex is missing or transaction cannot be explained
|
|
30
48
|
*/
|
|
31
|
-
|
|
49
|
+
explainTransaction(params: ExplainTransactionOptions): Promise<TransactionExplanation>;
|
|
32
50
|
/**
|
|
33
|
-
*
|
|
34
|
-
*
|
|
51
|
+
* Verifies that a transaction prebuild matches the original transaction parameters.
|
|
52
|
+
* Ensures recipients and amounts align with the intended transaction.
|
|
53
|
+
*
|
|
54
|
+
* @param params - Verification parameters containing prebuild and original params
|
|
55
|
+
* @returns true if verification succeeds
|
|
56
|
+
* @throws Error if verification fails
|
|
35
57
|
*/
|
|
36
|
-
|
|
58
|
+
verifyTransaction(params: VerifyTransactionOptions): Promise<boolean>;
|
|
37
59
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @param
|
|
60
|
+
* Parses a transaction and extracts inputs, outputs, and fees.
|
|
61
|
+
* @param params - Parameters containing the transaction hex
|
|
62
|
+
* @returns Parsed transaction with inputs, outputs, and fee information
|
|
40
63
|
*/
|
|
41
|
-
|
|
64
|
+
parseTransaction(params: IotaParseTransactionOptions): Promise<ParsedTransaction>;
|
|
42
65
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @param
|
|
66
|
+
* Generates a key pair for IOTA transactions.
|
|
67
|
+
* @param seed - Optional seed to generate deterministic key pair
|
|
68
|
+
* @returns Key pair with public and private keys
|
|
69
|
+
* @throws Error if private key generation fails
|
|
70
|
+
*/
|
|
71
|
+
generateKeyPair(seed?: Buffer): KeyPair;
|
|
72
|
+
/**
|
|
73
|
+
* Signs a transaction (not implemented for IOTA).
|
|
74
|
+
* IOTA transactions are signed externally using TSS.
|
|
45
75
|
*/
|
|
46
76
|
signTransaction(params: SignTransactionOptions): Promise<SignedTransaction>;
|
|
47
77
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @param params
|
|
78
|
+
* Audits a decrypted private key to ensure it's valid for the given public key.
|
|
79
|
+
* @param params - Parameters containing multiSigType, private key, and public key
|
|
80
|
+
* @throws Error if multiSigType is not TSS or if key validation fails
|
|
81
|
+
*/
|
|
82
|
+
auditDecryptedKey({ multiSigType, prv, publicKey }: AuditDecryptedKeyParams): void;
|
|
83
|
+
/**
|
|
84
|
+
* Extracts the signable payload from a serialized transaction.
|
|
85
|
+
* @param serializedTx - The serialized transaction hex
|
|
86
|
+
* @returns Buffer containing the signable payload
|
|
87
|
+
*/
|
|
88
|
+
getSignablePayload(serializedTx: string): Promise<Buffer>;
|
|
89
|
+
/**
|
|
90
|
+
* @inheritDoc
|
|
91
|
+
*/
|
|
92
|
+
allowsAccountConsolidations(): boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Sets coin-specific fields in the transaction intent.
|
|
95
|
+
* @param intent - The populated intent object to modify
|
|
96
|
+
* @param params - Parameters containing unspents data
|
|
97
|
+
*/
|
|
98
|
+
setCoinSpecificFieldsInIntent(intent: PopulatedIntent, params: PrebuildTransactionWithIntentOptions): void;
|
|
99
|
+
/**
|
|
100
|
+
* Builds funds recovery transaction(s) without BitGo
|
|
101
|
+
*
|
|
102
|
+
* @param {IotaRecoveryOptions} params parameters needed to construct and
|
|
103
|
+
* (maybe) sign the transaction
|
|
104
|
+
*
|
|
105
|
+
* @returns {MPCTx | MPCSweepTxs} array of the serialized transaction hex strings and indices
|
|
106
|
+
* of the addresses being swept
|
|
107
|
+
*/
|
|
108
|
+
recover(params: IotaRecoveryOptions): Promise<MPCTxs | MPCSweepTxs>;
|
|
109
|
+
/**
|
|
110
|
+
* Checks whether the address holds a positive balance of the specified token.
|
|
111
|
+
*/
|
|
112
|
+
private hasTokenBalance;
|
|
113
|
+
/**
|
|
114
|
+
* Consolidates funds from multiple receive addresses to the base address (index 0).
|
|
115
|
+
* If walletPassphrase is not provided, returns unsigned transactions for offline signing
|
|
116
|
+
* (cold/custody wallet recovery). Otherwise, returns signed transactions.
|
|
117
|
+
*
|
|
118
|
+
* @param params - Consolidation recovery parameters
|
|
119
|
+
* @param params.bitgoKey - The commonKeychain (combined TSS public key)
|
|
120
|
+
* @param params.startingScanIndex - Starting address index to scan (default: 1)
|
|
121
|
+
* @param params.endingScanIndex - Ending address index to scan (default: startingScanIndex + 20)
|
|
122
|
+
* @param params.walletPassphrase - Optional passphrase for signing (omit for unsigned transactions)
|
|
123
|
+
* @returns MPCTxs (signed) or MPCSweepTxs (unsigned) containing all consolidation transactions
|
|
124
|
+
* @throws Error if no addresses with funds are found in the scan range
|
|
125
|
+
*/
|
|
126
|
+
recoverConsolidations(params: MPCConsolidationRecoveryOptions): Promise<MPCTxs | MPCSweepTxs>;
|
|
127
|
+
/**
|
|
128
|
+
* Gets the total coin balance for an address.
|
|
129
|
+
*
|
|
130
|
+
* @param address - IOTA address to query
|
|
131
|
+
* @param rpcUrl - Optional RPC URL override
|
|
132
|
+
* @param coinType - Optional coin type (defaults to native IOTA)
|
|
133
|
+
* @returns Total balance as a bigint
|
|
134
|
+
*/
|
|
135
|
+
private getBalance;
|
|
136
|
+
/**
|
|
137
|
+
* Fetches owned objects for an address via fullnode RPC.
|
|
138
|
+
* Handles pagination to retrieve all objects.
|
|
139
|
+
*
|
|
140
|
+
* @param address - IOTA address to query
|
|
141
|
+
* @param rpcUrl - Optional RPC URL override
|
|
142
|
+
* @param coinType - Optional coin type to filter objects (defaults to native IOTA)
|
|
143
|
+
* @returns Array of owned objects with balance information
|
|
144
|
+
*/
|
|
145
|
+
private fetchOwnedObjects;
|
|
146
|
+
/**
|
|
147
|
+
* Makes JSON-RPC call to IOTA fullnode.
|
|
148
|
+
*
|
|
149
|
+
* @param url - Fullnode RPC URL
|
|
150
|
+
* @param method - RPC method name
|
|
151
|
+
* @param params - RPC parameters
|
|
152
|
+
* @returns RPC result
|
|
153
|
+
* @throws Error if RPC call fails
|
|
154
|
+
*/
|
|
155
|
+
private makeRpcCall;
|
|
156
|
+
/**
|
|
157
|
+
* Gets the public node RPC URL from the centralized environment configuration.
|
|
158
|
+
*
|
|
159
|
+
* @returns RPC URL for the current BitGo environment
|
|
160
|
+
*/
|
|
161
|
+
protected getPublicNodeUrl(): string;
|
|
162
|
+
/**
|
|
163
|
+
* Gets the native coin type identifier for filtering owned objects.
|
|
164
|
+
*
|
|
165
|
+
* @returns Native coin type string
|
|
166
|
+
*/
|
|
167
|
+
private getNativeCoinType;
|
|
168
|
+
/**
|
|
169
|
+
* Prepares gas configuration for a recovery transaction.
|
|
170
|
+
*
|
|
171
|
+
* Gas estimation is done via a dry-run of a temporary transaction, then
|
|
172
|
+
* multiplied by DEFAULT_GAS_OVERHEAD (1.1x) as a safety buffer.
|
|
173
|
+
*
|
|
174
|
+
* @param ownedObjects - Native IOTA coin objects to use as gas payment
|
|
175
|
+
* @param senderAddress - Sender address for the transaction
|
|
176
|
+
* @param params - Recovery parameters (includes recoveryDestination, rpcUrl)
|
|
177
|
+
* @param paymentObjects - Optional token objects for token recovery
|
|
178
|
+
* @returns Gas budget, gas price, gas objects array, and total native balance
|
|
179
|
+
*/
|
|
180
|
+
private prepareGasAndObjects;
|
|
181
|
+
private recoverIotaToken;
|
|
182
|
+
private signRecoveryTransaction;
|
|
183
|
+
/**
|
|
184
|
+
* Fetches current reference gas price from fullnode.
|
|
185
|
+
*
|
|
186
|
+
* @param rpcUrl - Optional RPC URL override
|
|
187
|
+
* @returns Current gas price
|
|
188
|
+
*/
|
|
189
|
+
private fetchGasPrice;
|
|
190
|
+
/**
|
|
191
|
+
* Estimates gas for a transaction via dry run.
|
|
192
|
+
*
|
|
193
|
+
* @param txBase64 - Transaction in base64 format
|
|
194
|
+
* @param rpcUrl - Optional RPC URL override
|
|
195
|
+
* @returns Estimated gas cost
|
|
196
|
+
*/
|
|
197
|
+
private estimateGas;
|
|
198
|
+
private buildUnsignedSweepTransaction;
|
|
199
|
+
/**
|
|
200
|
+
* Validates and extracts transaction hex from parameters.
|
|
201
|
+
* @param txHex - The transaction hex to validate
|
|
202
|
+
* @param operation - The operation being performed (for error messages)
|
|
203
|
+
* @returns The validated transaction hex
|
|
204
|
+
* @throws Error if txHex is missing
|
|
205
|
+
*/
|
|
206
|
+
private validateAndExtractTxHex;
|
|
207
|
+
/**
|
|
208
|
+
* Validates that the transaction is a TransferTransaction.
|
|
209
|
+
* @param transaction - The transaction to validate
|
|
210
|
+
* @throws Error if transaction is not a TransferTransaction
|
|
211
|
+
*/
|
|
212
|
+
private validateTransactionType;
|
|
213
|
+
/**
|
|
214
|
+
* Verifies that transaction recipients match the expected recipients.
|
|
215
|
+
* @param transaction - The transfer transaction to verify
|
|
216
|
+
* @param expectedRecipients - The expected recipients from transaction params
|
|
217
|
+
* @throws Error if recipients don't match
|
|
218
|
+
*/
|
|
219
|
+
private verifyTransactionRecipients;
|
|
220
|
+
/**
|
|
221
|
+
* Normalizes recipients by extracting only relevant fields.
|
|
222
|
+
* @param recipients - Recipients to normalize
|
|
223
|
+
* @returns Normalized recipients with address, amount, and tokenName only
|
|
224
|
+
*/
|
|
225
|
+
private normalizeRecipients;
|
|
226
|
+
/**
|
|
227
|
+
* Checks if expected recipients match actual recipients.
|
|
228
|
+
* @param expected - Expected recipients
|
|
229
|
+
* @param actual - Actual recipients from transaction
|
|
230
|
+
* @returns true if all expected recipients are found in actual recipients
|
|
231
|
+
*/
|
|
232
|
+
private recipientsMatch;
|
|
233
|
+
/**
|
|
234
|
+
* Creates an empty parsed transaction result.
|
|
235
|
+
* Used when transaction has no outputs.
|
|
236
|
+
*/
|
|
237
|
+
private createEmptyParsedTransaction;
|
|
238
|
+
/**
|
|
239
|
+
* Calculates the transaction fee from the explanation.
|
|
240
|
+
* @param explanation - The transaction explanation
|
|
241
|
+
* @returns The fee as a BigNumber
|
|
242
|
+
*/
|
|
243
|
+
private calculateTransactionFee;
|
|
244
|
+
/**
|
|
245
|
+
* Builds the inputs array for a parsed transaction.
|
|
246
|
+
* Includes sender input and optionally sponsor input if present.
|
|
247
|
+
*
|
|
248
|
+
* @param explanation - The transaction explanation
|
|
249
|
+
* @param fee - The calculated transaction fee
|
|
250
|
+
* @returns Array of transaction inputs
|
|
251
|
+
*/
|
|
252
|
+
private buildTransactionInputs;
|
|
253
|
+
/**
|
|
254
|
+
* Builds the outputs array for a parsed transaction.
|
|
255
|
+
* @param explanation - The transaction explanation
|
|
256
|
+
* @returns Array of transaction outputs
|
|
257
|
+
*/
|
|
258
|
+
private buildTransactionOutputs;
|
|
259
|
+
/**
|
|
260
|
+
* Creates a transaction builder factory instance.
|
|
261
|
+
* @returns TransactionBuilderFactory for this coin
|
|
262
|
+
*/
|
|
263
|
+
private getTxBuilderFactory;
|
|
264
|
+
/**
|
|
265
|
+
* Rebuilds a transaction from its hex representation.
|
|
266
|
+
* @param txHex - The transaction hex to rebuild
|
|
267
|
+
* @returns The rebuilt transaction
|
|
268
|
+
* @throws Error if transaction cannot be rebuilt
|
|
50
269
|
*/
|
|
51
|
-
|
|
270
|
+
private rebuildTransaction;
|
|
52
271
|
}
|
|
53
272
|
//# sourceMappingURL=iota.d.ts.map
|
package/dist/src/iota.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iota.d.ts","sourceRoot":"","sources":["../../src/iota.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,QAAQ,EACR,SAAS,
|
|
1
|
+
{"version":3,"file":"iota.d.ts","sourceRoot":"","sources":["../../src/iota.ts"],"names":[],"mappings":"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"}
|