@bitgo-beta/sdk-coin-iota 1.0.0-alpha.43 → 1.0.0-alpha.45

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.
Files changed (45) hide show
  1. package/dist/src/iota.d.ts +127 -27
  2. package/dist/src/iota.d.ts.map +1 -1
  3. package/dist/src/iota.js +223 -97
  4. package/dist/src/lib/constants.d.ts +50 -1
  5. package/dist/src/lib/constants.d.ts.map +1 -1
  6. package/dist/src/lib/constants.js +68 -4
  7. package/dist/src/lib/iface.d.ts +141 -1
  8. package/dist/src/lib/iface.d.ts.map +1 -1
  9. package/dist/src/lib/iface.js +1 -1
  10. package/dist/src/lib/keyPair.d.ts +100 -6
  11. package/dist/src/lib/keyPair.d.ts.map +1 -1
  12. package/dist/src/lib/keyPair.js +103 -10
  13. package/dist/src/lib/transaction.d.ts +124 -15
  14. package/dist/src/lib/transaction.d.ts.map +1 -1
  15. package/dist/src/lib/transaction.js +215 -66
  16. package/dist/src/lib/transactionBuilder.d.ts +73 -34
  17. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  18. package/dist/src/lib/transactionBuilder.js +90 -45
  19. package/dist/src/lib/transactionBuilderFactory.d.ts +89 -6
  20. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  21. package/dist/src/lib/transactionBuilderFactory.js +103 -16
  22. package/dist/src/lib/transferBuilder.d.ts +42 -0
  23. package/dist/src/lib/transferBuilder.d.ts.map +1 -1
  24. package/dist/src/lib/transferBuilder.js +49 -8
  25. package/dist/src/lib/transferTransaction.d.ts +97 -1
  26. package/dist/src/lib/transferTransaction.d.ts.map +1 -1
  27. package/dist/src/lib/transferTransaction.js +220 -52
  28. package/dist/src/lib/utils.d.ts +107 -9
  29. package/dist/src/lib/utils.d.ts.map +1 -1
  30. package/dist/src/lib/utils.js +134 -46
  31. package/dist/test/resources/iota.d.ts +12 -0
  32. package/dist/test/resources/iota.d.ts.map +1 -1
  33. package/dist/test/resources/iota.js +21 -2
  34. package/dist/test/unit/helpers/testHelpers.d.ts +57 -0
  35. package/dist/test/unit/helpers/testHelpers.d.ts.map +1 -0
  36. package/dist/test/unit/helpers/testHelpers.js +176 -0
  37. package/dist/test/unit/iota.js +78 -152
  38. package/dist/test/unit/keyPair.js +34 -61
  39. package/dist/test/unit/transactionBuilder/transactionBuilder.js +137 -255
  40. package/dist/test/unit/transactionBuilder/transactionBuilderFactory.js +43 -107
  41. package/dist/test/unit/transactionBuilder/transferBuilder.js +384 -234
  42. package/dist/test/unit/transferTransaction.js +147 -275
  43. package/dist/test/unit/utils.js +171 -244
  44. package/dist/tsconfig.tsbuildinfo +1 -1
  45. package/package.json +8 -8
@@ -1,69 +1,169 @@
1
1
  import { AuditDecryptedKeyParams, BaseCoin, BitGoBase, KeyPair, ParsedTransaction, SignTransactionOptions, SignedTransaction, VerifyTransactionOptions, MultisigType, MPCAlgorithm, TssVerifyAddressOptions, PopulatedIntent, PrebuildTransactionWithIntentOptions } from '@bitgo-beta/sdk-core';
2
2
  import { BaseCoin as StaticsBaseCoin, CoinFamily } from '@bitgo-beta/statics';
3
3
  import { ExplainTransactionOptions, IotaParseTransactionOptions, TransactionExplanation } from './lib/iface';
4
+ /**
5
+ * IOTA coin implementation.
6
+ * Supports TSS (Threshold Signature Scheme) with EDDSA algorithm.
7
+ */
4
8
  export declare class Iota extends BaseCoin {
5
9
  protected readonly _staticsCoin: Readonly<StaticsBaseCoin>;
6
10
  protected constructor(bitgo: BitGoBase, staticsCoin?: Readonly<StaticsBaseCoin>);
11
+ /**
12
+ * Factory method to create an IOTA coin instance.
13
+ */
7
14
  static createInstance(bitgo: BitGoBase, staticsCoin?: Readonly<StaticsBaseCoin>): BaseCoin;
8
15
  getBaseFactor(): string | number;
9
16
  getChain(): string;
10
17
  getFamily(): CoinFamily;
11
18
  getFullName(): string;
12
- /** @inheritDoc */
13
19
  supportsTss(): boolean;
14
- /** inherited doc */
15
20
  getDefaultMultisigType(): MultisigType;
16
21
  getMPCAlgorithm(): MPCAlgorithm;
17
22
  /**
18
- * Check if an address is valid
19
- * @param address the address to be validated
23
+ * Validates an IOTA address.
24
+ * @param address - The address to validate (64-character hex string)
20
25
  * @returns true if the address is valid
21
26
  */
22
27
  isValidAddress(address: string): boolean;
23
28
  /**
24
- * @inheritDoc
29
+ * Validates a public key.
30
+ * @param pub - The public key to validate
31
+ * @returns true if the public key is valid
25
32
  */
26
- explainTransaction(params: ExplainTransactionOptions): Promise<TransactionExplanation>;
33
+ isValidPub(pub: string): boolean;
27
34
  /**
28
- * Verifies that a transaction prebuild complies with the original intention
29
- * @param params
35
+ * Verifies if an address belongs to a TSS wallet.
36
+ * @param params - Verification parameters including wallet address and user/backup public keys
37
+ * @returns true if the address belongs to the wallet
30
38
  */
31
- verifyTransaction(params: VerifyTransactionOptions): Promise<boolean>;
39
+ isWalletAddress(params: TssVerifyAddressOptions): Promise<boolean>;
32
40
  /**
33
- * Check if an address belongs to a wallet
34
- * @param params
41
+ * Explains a transaction by parsing its hex representation.
42
+ * @param params - Parameters containing the transaction hex
43
+ * @returns Detailed explanation of the transaction
44
+ * @throws Error if txHex is missing or transaction cannot be explained
35
45
  */
36
- isWalletAddress(params: TssVerifyAddressOptions): Promise<boolean>;
46
+ explainTransaction(params: ExplainTransactionOptions): Promise<TransactionExplanation>;
37
47
  /**
38
- * Parse a transaction
39
- * @param params
48
+ * Verifies that a transaction prebuild matches the original transaction parameters.
49
+ * Ensures recipients and amounts align with the intended transaction.
50
+ *
51
+ * @param params - Verification parameters containing prebuild and original params
52
+ * @returns true if verification succeeds
53
+ * @throws Error if verification fails
40
54
  */
41
- parseTransaction(params: IotaParseTransactionOptions): Promise<ParsedTransaction>;
55
+ verifyTransaction(params: VerifyTransactionOptions): Promise<boolean>;
42
56
  /**
43
- * Generate a key pair
44
- * @param seed Optional seed to generate key pair from
57
+ * Parses a transaction and extracts inputs, outputs, and fees.
58
+ * @param params - Parameters containing the transaction hex
59
+ * @returns Parsed transaction with inputs, outputs, and fee information
45
60
  */
46
- generateKeyPair(seed?: Buffer): KeyPair;
61
+ parseTransaction(params: IotaParseTransactionOptions): Promise<ParsedTransaction>;
47
62
  /**
48
- * Check if a public key is valid
49
- * @param pub Public key to check
63
+ * Generates a key pair for IOTA transactions.
64
+ * @param seed - Optional seed to generate deterministic key pair
65
+ * @returns Key pair with public and private keys
66
+ * @throws Error if private key generation fails
50
67
  */
51
- isValidPub(pub: string): boolean;
68
+ generateKeyPair(seed?: Buffer): KeyPair;
52
69
  /**
53
- * Sign a transaction
54
- * @param params
70
+ * Signs a transaction (not implemented for IOTA).
71
+ * IOTA transactions are signed externally using TSS.
55
72
  */
56
73
  signTransaction(params: SignTransactionOptions): Promise<SignedTransaction>;
57
74
  /**
58
- * Audit a decrypted private key to ensure it's valid
59
- * @param params
75
+ * Audits a decrypted private key to ensure it's valid for the given public key.
76
+ * @param params - Parameters containing multiSigType, private key, and public key
77
+ * @throws Error if multiSigType is not TSS or if key validation fails
60
78
  */
61
79
  auditDecryptedKey({ multiSigType, prv, publicKey }: AuditDecryptedKeyParams): void;
62
- /** @inheritDoc */
80
+ /**
81
+ * Extracts the signable payload from a serialized transaction.
82
+ * @param serializedTx - The serialized transaction hex
83
+ * @returns Buffer containing the signable payload
84
+ */
63
85
  getSignablePayload(serializedTx: string): Promise<Buffer>;
64
- /** inherited doc */
86
+ /**
87
+ * @inheritDoc
88
+ */
89
+ allowsAccountConsolidations(): boolean;
90
+ /**
91
+ * Sets coin-specific fields in the transaction intent.
92
+ * @param intent - The populated intent object to modify
93
+ * @param params - Parameters containing unspents data
94
+ */
65
95
  setCoinSpecificFieldsInIntent(intent: PopulatedIntent, params: PrebuildTransactionWithIntentOptions): void;
96
+ /**
97
+ * Validates and extracts transaction hex from parameters.
98
+ * @param txHex - The transaction hex to validate
99
+ * @param operation - The operation being performed (for error messages)
100
+ * @returns The validated transaction hex
101
+ * @throws Error if txHex is missing
102
+ */
103
+ private validateAndExtractTxHex;
104
+ /**
105
+ * Validates that the transaction is a TransferTransaction.
106
+ * @param transaction - The transaction to validate
107
+ * @throws Error if transaction is not a TransferTransaction
108
+ */
109
+ private validateTransactionType;
110
+ /**
111
+ * Verifies that transaction recipients match the expected recipients.
112
+ * @param transaction - The transfer transaction to verify
113
+ * @param expectedRecipients - The expected recipients from transaction params
114
+ * @throws Error if recipients don't match
115
+ */
116
+ private verifyTransactionRecipients;
117
+ /**
118
+ * Normalizes recipients by extracting only relevant fields.
119
+ * @param recipients - Recipients to normalize
120
+ * @returns Normalized recipients with address, amount, and tokenName only
121
+ */
122
+ private normalizeRecipients;
123
+ /**
124
+ * Checks if expected recipients match actual recipients.
125
+ * @param expected - Expected recipients
126
+ * @param actual - Actual recipients from transaction
127
+ * @returns true if all expected recipients are found in actual recipients
128
+ */
129
+ private recipientsMatch;
130
+ /**
131
+ * Creates an empty parsed transaction result.
132
+ * Used when transaction has no outputs.
133
+ */
134
+ private createEmptyParsedTransaction;
135
+ /**
136
+ * Calculates the transaction fee from the explanation.
137
+ * @param explanation - The transaction explanation
138
+ * @returns The fee as a BigNumber
139
+ */
140
+ private calculateTransactionFee;
141
+ /**
142
+ * Builds the inputs array for a parsed transaction.
143
+ * Includes sender input and optionally sponsor input if present.
144
+ *
145
+ * @param explanation - The transaction explanation
146
+ * @param fee - The calculated transaction fee
147
+ * @returns Array of transaction inputs
148
+ */
149
+ private buildTransactionInputs;
150
+ /**
151
+ * Builds the outputs array for a parsed transaction.
152
+ * @param explanation - The transaction explanation
153
+ * @returns Array of transaction outputs
154
+ */
155
+ private buildTransactionOutputs;
156
+ /**
157
+ * Creates a transaction builder factory instance.
158
+ * @returns TransactionBuilderFactory for this coin
159
+ */
66
160
  private getTxBuilderFactory;
161
+ /**
162
+ * Rebuilds a transaction from its hex representation.
163
+ * @param txHex - The transaction hex to rebuild
164
+ * @returns The rebuilt transaction
165
+ * @throws Error if transaction cannot be rebuilt
166
+ */
67
167
  private rebuildTransaction;
68
168
  }
69
169
  //# sourceMappingURL=iota.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"iota.d.ts","sourceRoot":"","sources":["../../src/iota.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,QAAQ,EACR,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,wBAAwB,EACxB,YAAY,EAEZ,YAAY,EACZ,uBAAuB,EAEvB,eAAe,EACf,oCAAoC,EAErC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,UAAU,EAAS,MAAM,qBAAqB,CAAC;AAMrF,OAAO,EACL,yBAAyB,EACzB,2BAA2B,EAC3B,sBAAsB,EAEvB,MAAM,aAAa,CAAC;AAGrB,qBAAa,IAAK,SAAQ,QAAQ;IAChC,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;IAE3D,SAAS,aAAa,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC;IAU/E,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,GAAG,QAAQ;IAI1F,aAAa,IAAI,MAAM,GAAG,MAAM;IAIhC,QAAQ;IAIR,SAAS,IAAI,UAAU;IAIvB,WAAW;IAIX,kBAAkB;IAClB,WAAW,IAAI,OAAO;IAItB,oBAAoB;IACpB,sBAAsB,IAAI,YAAY;IAItC,eAAe,IAAI,YAAY;IAI/B;;;;OAIG;IACH,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAKxC;;OAEG;IACG,kBAAkB,CAAC,MAAM,EAAE,yBAAyB,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAY5F;;;OAGG;IACG,iBAAiB,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,OAAO,CAAC;IAsB3E;;;OAGG;IACG,eAAe,CAAC,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,OAAO,CAAC;IAQxE;;;OAGG;IACG,gBAAgB,CAAC,MAAM,EAAE,2BAA2B,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAwDvF;;;OAGG;IACH,eAAe,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO;IAYvC;;;OAGG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIhC;;;OAGG;IACG,eAAe,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAIjF;;;OAGG;IACH,iBAAiB,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,uBAAuB,GAAG,IAAI;IAOlF,kBAAkB;IACZ,kBAAkB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAK/D,oBAAoB;IACpB,6BAA6B,CAAC,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,oCAAoC,GAAG,IAAI;IAI1G,OAAO,CAAC,mBAAmB;YAIb,kBAAkB;CAUjC"}
1
+ {"version":3,"file":"iota.d.ts","sourceRoot":"","sources":["../../src/iota.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,QAAQ,EACR,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,wBAAwB,EACxB,YAAY,EAEZ,YAAY,EACZ,uBAAuB,EAEvB,eAAe,EACf,oCAAoC,EAGrC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,UAAU,EAAS,MAAM,qBAAqB,CAAC;AAMrF,OAAO,EACL,yBAAyB,EACzB,2BAA2B,EAC3B,sBAAsB,EAEvB,MAAM,aAAa,CAAC;AAGrB;;;GAGG;AACH,qBAAa,IAAK,SAAQ,QAAQ;IAChC,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;IAE3D,SAAS,aAAa,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC;IAU/E;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,GAAG,QAAQ;IAQ1F,aAAa,IAAI,MAAM,GAAG,MAAM;IAIhC,QAAQ,IAAI,MAAM;IAIlB,SAAS,IAAI,UAAU;IAIvB,WAAW,IAAI,MAAM;IAQrB,WAAW,IAAI,OAAO;IAItB,sBAAsB,IAAI,YAAY;IAItC,eAAe,IAAI,YAAY;IAQ/B;;;;OAIG;IACH,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAIxC;;;;OAIG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIhC;;;;OAIG;IACG,eAAe,CAAC,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,OAAO,CAAC;IAYxE;;;;;OAKG;IACG,kBAAkB,CAAC,MAAM,EAAE,yBAAyB,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAM5F;;;;;;;OAOG;IACG,iBAAiB,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,OAAO,CAAC;IAc3E;;;;OAIG;IACG,gBAAgB,CAAC,MAAM,EAAE,2BAA2B,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAkBvF;;;;;OAKG;IACH,eAAe,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO;IAcvC;;;OAGG;IACG,eAAe,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAIjF;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,uBAAuB,GAAG,IAAI;IAOlF;;;;OAIG;IACG,kBAAkB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAK/D;;OAEG;IACH,2BAA2B,IAAI,OAAO;IAItC;;;;OAIG;IACH,6BAA6B,CAAC,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,oCAAoC,GAAG,IAAI;IAQ1G;;;;;;OAMG;IACH,OAAO,CAAC,uBAAuB;IAO/B;;;;OAIG;IACH,OAAO,CAAC,uBAAuB;IAM/B;;;;;OAKG;IACH,OAAO,CAAC,2BAA2B;IAkBnC;;;;OAIG;IACH,OAAO,CAAC,mBAAmB;IAI3B;;;;;OAKG;IACH,OAAO,CAAC,eAAe;IAMvB;;;OAGG;IACH,OAAO,CAAC,4BAA4B;IAQpC;;;;OAIG;IACH,OAAO,CAAC,uBAAuB;IAO/B;;;;;;;OAOG;IACH,OAAO,CAAC,sBAAsB;IAgC9B;;;;OAIG;IACH,OAAO,CAAC,uBAAuB;IAU/B;;;OAGG;IACH,OAAO,CAAC,mBAAmB;IAI3B;;;;;OAKG;YACW,kBAAkB;CASjC"}