@bitgo-beta/abstract-eth 1.2.3-alpha.30 → 1.2.3-alpha.300

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 (91) hide show
  1. package/CHANGELOG.md +1601 -0
  2. package/dist/src/abstractEthLikeCoin.d.ts +14 -8
  3. package/dist/src/abstractEthLikeCoin.d.ts.map +1 -1
  4. package/dist/src/abstractEthLikeCoin.js +18 -15
  5. package/dist/src/abstractEthLikeNewCoins.d.ts +694 -0
  6. package/dist/src/abstractEthLikeNewCoins.d.ts.map +1 -0
  7. package/dist/src/abstractEthLikeNewCoins.js +2043 -0
  8. package/dist/src/ethLikeToken.d.ts +36 -6
  9. package/dist/src/ethLikeToken.d.ts.map +1 -1
  10. package/dist/src/ethLikeToken.js +285 -10
  11. package/dist/src/index.d.ts +2 -0
  12. package/dist/src/index.d.ts.map +1 -1
  13. package/dist/src/index.js +8 -2
  14. package/dist/src/lib/contractCall.d.ts +8 -0
  15. package/dist/src/lib/contractCall.d.ts.map +1 -0
  16. package/dist/src/lib/contractCall.js +17 -0
  17. package/dist/src/lib/iface.d.ts +132 -0
  18. package/dist/src/lib/iface.d.ts.map +1 -0
  19. package/dist/src/lib/iface.js +8 -0
  20. package/dist/src/lib/index.d.ts +15 -0
  21. package/dist/src/lib/index.d.ts.map +1 -0
  22. package/dist/src/lib/index.js +56 -0
  23. package/dist/src/lib/keyPair.d.ts +26 -0
  24. package/dist/src/lib/keyPair.d.ts.map +1 -0
  25. package/dist/src/lib/keyPair.js +65 -0
  26. package/dist/src/lib/transaction.d.ts +64 -0
  27. package/dist/src/lib/transaction.d.ts.map +1 -0
  28. package/dist/src/lib/transaction.js +137 -0
  29. package/dist/src/lib/transactionBuilder.d.ts +249 -0
  30. package/dist/src/lib/transactionBuilder.d.ts.map +1 -0
  31. package/dist/src/lib/transactionBuilder.js +741 -0
  32. package/dist/src/lib/transferBuilder.d.ts +73 -0
  33. package/dist/src/lib/transferBuilder.d.ts.map +1 -0
  34. package/dist/src/lib/transferBuilder.js +293 -0
  35. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts +54 -0
  36. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts.map +1 -0
  37. package/dist/src/lib/transferBuilders/baseNFTTransferBuilder.js +120 -0
  38. package/dist/src/lib/transferBuilders/index.d.ts +4 -0
  39. package/dist/src/lib/transferBuilders/index.d.ts.map +1 -0
  40. package/dist/src/lib/transferBuilders/index.js +20 -0
  41. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts +16 -0
  42. package/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts.map +1 -0
  43. package/dist/src/lib/transferBuilders/transferBuilderERC1155.js +93 -0
  44. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts +15 -0
  45. package/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts.map +1 -0
  46. package/dist/src/lib/transferBuilders/transferBuilderERC721.js +78 -0
  47. package/dist/src/lib/types.d.ts +39 -0
  48. package/dist/src/lib/types.d.ts.map +1 -0
  49. package/dist/src/lib/types.js +137 -0
  50. package/dist/src/lib/utils.d.ts +267 -0
  51. package/dist/src/lib/utils.d.ts.map +1 -0
  52. package/dist/src/lib/utils.js +688 -0
  53. package/dist/src/lib/walletUtil.d.ts +30 -0
  54. package/dist/src/lib/walletUtil.d.ts.map +1 -0
  55. package/dist/src/lib/walletUtil.js +33 -0
  56. package/dist/src/types.d.ts +9 -0
  57. package/dist/src/types.d.ts.map +1 -0
  58. package/dist/src/types.js +3 -0
  59. package/dist/test/index.d.ts +2 -0
  60. package/dist/test/index.d.ts.map +1 -0
  61. package/dist/test/index.js +18 -0
  62. package/dist/test/unit/coin.d.ts +8 -0
  63. package/dist/test/unit/coin.d.ts.map +1 -0
  64. package/dist/test/unit/coin.js +577 -0
  65. package/dist/test/unit/index.d.ts +5 -0
  66. package/dist/test/unit/index.d.ts.map +1 -0
  67. package/dist/test/unit/index.js +21 -0
  68. package/dist/test/unit/token.d.ts +2 -0
  69. package/dist/test/unit/token.d.ts.map +1 -0
  70. package/dist/test/unit/token.js +37 -0
  71. package/dist/test/unit/transaction.d.ts +3 -0
  72. package/dist/test/unit/transaction.d.ts.map +1 -0
  73. package/dist/test/unit/transaction.js +60 -0
  74. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts +8 -0
  75. package/dist/test/unit/transactionBuilder/addressInitialization.d.ts.map +1 -0
  76. package/dist/test/unit/transactionBuilder/addressInitialization.js +95 -0
  77. package/dist/test/unit/transactionBuilder/index.d.ts +4 -0
  78. package/dist/test/unit/transactionBuilder/index.d.ts.map +1 -0
  79. package/dist/test/unit/transactionBuilder/index.js +20 -0
  80. package/dist/test/unit/transactionBuilder/send.d.ts +3 -0
  81. package/dist/test/unit/transactionBuilder/send.d.ts.map +1 -0
  82. package/dist/test/unit/transactionBuilder/send.js +197 -0
  83. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts +10 -0
  84. package/dist/test/unit/transactionBuilder/walletInitialization.d.ts.map +1 -0
  85. package/dist/test/unit/transactionBuilder/walletInitialization.js +124 -0
  86. package/dist/test/unit/transferBuilder.d.ts +2 -0
  87. package/dist/test/unit/transferBuilder.d.ts.map +1 -0
  88. package/dist/test/unit/transferBuilder.js +76 -0
  89. package/dist/tsconfig.tsbuildinfo +1 -8234
  90. package/index.ts +2 -0
  91. package/package.json +29 -9
@@ -0,0 +1,249 @@
1
+ import { BaseCoin as CoinConfig } from '@bitgo-beta/statics';
2
+ import EthereumCommon from '@ethereumjs/common';
3
+ import BigNumber from 'bignumber.js';
4
+ import { BaseAddress, BaseKey, BaseTransaction, BaseTransactionBuilder, TransactionType } from '@bitgo-beta/sdk-core';
5
+ import { KeyPair } from './keyPair';
6
+ import { Fee, TxData } from './iface';
7
+ import { ERC1155TransferBuilder } from './transferBuilders/transferBuilderERC1155';
8
+ import { ERC721TransferBuilder } from './transferBuilders/transferBuilderERC721';
9
+ import { Transaction } from './transaction';
10
+ import { TransferBuilder } from './transferBuilder';
11
+ /**
12
+ * EthereumLike transaction builder.
13
+ */
14
+ export declare abstract class TransactionBuilder extends BaseTransactionBuilder {
15
+ protected _type: TransactionType;
16
+ protected _common: EthereumCommon;
17
+ protected _sourceKeyPair: KeyPair;
18
+ private _transaction;
19
+ private _counter;
20
+ private _fee;
21
+ protected _value: string;
22
+ private _txSignature;
23
+ private _walletOwnerAddresses;
24
+ protected _walletVersion: number;
25
+ private _forwarderAddress;
26
+ private _tokenAddress;
27
+ protected _transfer: TransferBuilder | ERC721TransferBuilder | ERC1155TransferBuilder;
28
+ private _contractAddress;
29
+ private _contractCounter;
30
+ private _forwarderVersion;
31
+ private _initCode;
32
+ private _baseAddress;
33
+ private _feeAddress;
34
+ private _data;
35
+ private _salt;
36
+ protected _walletSimpleByteCode: string;
37
+ /**
38
+ * Public constructor.
39
+ *
40
+ * @param _coinConfig
41
+ */
42
+ constructor(_coinConfig: Readonly<CoinConfig>);
43
+ /** @inheritdoc */
44
+ protected buildImplementation(): Promise<BaseTransaction>;
45
+ protected getTransactionData(): TxData;
46
+ /** @inheritdoc */
47
+ protected fromImplementation(rawTransaction: string): Transaction;
48
+ /**
49
+ * Load the builder data using the deserialized transaction
50
+ *
51
+ * @param {TxData} transactionJson the deserialized transaction json
52
+ */
53
+ protected loadBuilderInput(transactionJson: TxData): void;
54
+ protected setTransactionTypeFields(decodedType: TransactionType, transactionJson: TxData): void;
55
+ /** @inheritdoc */
56
+ protected signImplementation(key: BaseKey): BaseTransaction;
57
+ /** @inheritdoc */
58
+ validateAddress(address: BaseAddress): void;
59
+ /** @inheritdoc */
60
+ validateKey(key: BaseKey): void;
61
+ /**
62
+ * Validate the raw transaction is either a JSON or
63
+ * a hex encoded transaction
64
+ *
65
+ * @param {any} rawTransaction The raw transaction to be validated
66
+ */
67
+ validateRawTransaction(rawTransaction: any): void;
68
+ private isEip1559Txn;
69
+ private isRLPDecodable;
70
+ protected validateBaseTransactionFields(): void;
71
+ /** @inheritdoc */
72
+ validateTransaction(transaction: BaseTransaction): void;
73
+ /**
74
+ * Check wallet owner addresses for wallet initialization transactions are valid or throw.
75
+ */
76
+ private validateWalletInitializationFields;
77
+ /**
78
+ * Check if a token address for the tx was defined or throw.
79
+ */
80
+ private validateTokenAddress;
81
+ /**
82
+ * Check if a forwarder address for the tx was defined or throw.
83
+ */
84
+ private validateForwarderAddress;
85
+ /**
86
+ * Check if a contract address for the wallet was defined or throw.
87
+ */
88
+ private validateContractAddress;
89
+ /**
90
+ * Checks if a contract call data field was defined or throws otherwise
91
+ */
92
+ private validateDataField;
93
+ private setContract;
94
+ validateValue(value: BigNumber): void;
95
+ /**
96
+ * The type of transaction being built.
97
+ *
98
+ * @param {TransactionType} type
99
+ */
100
+ type(type: TransactionType): void;
101
+ /**
102
+ * Set the transaction fees. Low fees may get a transaction rejected or never picked up by bakers.
103
+ *
104
+ * @param {Fee} fee Baker fees. May also include the maximum gas to pay
105
+ */
106
+ fee(fee: Fee): void;
107
+ /**
108
+ * Set the transaction counter to prevent submitting repeated transactions.
109
+ *
110
+ * @param {number} counter The counter to use
111
+ */
112
+ counter(counter: number): void;
113
+ /**
114
+ * The value to send along with this transaction. 0 by default
115
+ *
116
+ * @param {string} value The value to send along with this transaction
117
+ */
118
+ value(value: string): void;
119
+ protected buildBase(data: string): TxData;
120
+ /**
121
+ * Set one of the owners of the multisig wallet.
122
+ *
123
+ * @param {string} address An Ethereum address
124
+ */
125
+ owner(address: string): void;
126
+ /**
127
+ * Build a transaction for a generic multisig contract.
128
+ *
129
+ * @returns {TxData} The Ethereum transaction data
130
+ */
131
+ protected buildWalletInitializationTransaction(walletVersion?: number): TxData;
132
+ /**
133
+ * Returns the smart contract encoded data
134
+ *
135
+ * @param {string[]} addresses - the contract signers
136
+ * @returns {string} - the smart contract encoded data
137
+ */
138
+ protected getContractData(addresses: string[]): string;
139
+ contract(address: string): void;
140
+ /**
141
+ * Gets the transfer funds builder if exist, or creates a new one for this transaction and returns it
142
+ *
143
+ * @param [data] transfer data to initialize the transfer builder with, empty if none given
144
+ * @returns {TransferBuilder | ERC721TransferBuilder | ERC1155TransferBuilder} the transfer builder
145
+ */
146
+ abstract transfer(data?: string): TransferBuilder | ERC721TransferBuilder | ERC1155TransferBuilder;
147
+ /**
148
+ * Returns the serialized sendMultiSig contract method data
149
+ *
150
+ * @returns {string} serialized sendMultiSig data
151
+ */
152
+ getSendData(): string;
153
+ /**
154
+ * Decide if the coin uses non-packed encoding for tx data
155
+ *
156
+ * @returns {boolean} true if the coin uses non-packed encoding for tx data
157
+ */
158
+ coinUsesNonPackedEncodingForTxData(): boolean;
159
+ private buildSendTransaction;
160
+ /**
161
+ * Set the contract transaction nonce to calculate the forwarder address.
162
+ *
163
+ * @param {number} contractCounter The counter to use
164
+ */
165
+ contractCounter(contractCounter: number): void;
166
+ /**
167
+ * Build a transaction to create a forwarder.
168
+ *
169
+ * @returns {TxData} The Ethereum transaction data
170
+ */
171
+ private buildAddressInitializationTransaction;
172
+ /**
173
+ * Set the forwarder address to flush
174
+ *
175
+ * @param {string} address The address to flush
176
+ */
177
+ forwarderAddress(address: string): void;
178
+ /**
179
+ * Set the address of the ERC20 token contract that we are flushing tokens for
180
+ *
181
+ * @param {string} address the contract address of the token to flush
182
+ */
183
+ tokenAddress(address: string): void;
184
+ /**
185
+ * Build a transaction to flush tokens from a forwarder.
186
+ *
187
+ * @returns {TxData} The Ethereum transaction data
188
+ */
189
+ private buildFlushTokensTransaction;
190
+ /**
191
+ * Build a transaction to flush tokens from a forwarder.
192
+ *
193
+ * @returns {TxData} The Ethereum transaction data
194
+ */
195
+ private buildFlushCoinsTransaction;
196
+ data(encodedCall: string): void;
197
+ private buildGenericContractCallTransaction;
198
+ /** @inheritdoc */
199
+ protected get transaction(): Transaction;
200
+ /** @inheritdoc */
201
+ protected set transaction(transaction: Transaction);
202
+ /**
203
+ * Get the final v value. Final v is described in EIP-155.
204
+ *
205
+ * @protected for internal use when the enableFinalVField flag is true.
206
+ */
207
+ protected getFinalV(): string;
208
+ /**
209
+ * Set the forwarder version for address to be initialized
210
+ *
211
+ * @param {number} version forwarder version
212
+ */
213
+ forwarderVersion(version: number): void;
214
+ /**
215
+ * Set the salt to create the address using create2
216
+ *
217
+ * @param {string} salt The salt to create the address using create2, hex string
218
+ */
219
+ salt(salt: string): void;
220
+ /**
221
+ * Take the implementation address for the proxy contract, and get the binary initcode for the associated proxy
222
+ *
223
+ * @param {string} implementationAddress The address of the implementation contract
224
+ */
225
+ initCode(implementationAddress: string): void;
226
+ /**
227
+ * Set the wallet version for wallet to be initialized
228
+ *
229
+ * @param {number} version wallet version
230
+ */
231
+ walletVersion(version: number): void;
232
+ /**
233
+ * Set the base address of the wallet
234
+ *
235
+ * @param {string} address The wallet contract address
236
+ */
237
+ baseAddress(address: string): void;
238
+ /**
239
+ * Set the fee address of the wallet
240
+ *
241
+ * @param {string} address The fee address of the wallet
242
+ */
243
+ feeAddress(address: string): void;
244
+ /**
245
+ * Get the wallet version for wallet
246
+ */
247
+ getWalletVersion(): number;
248
+ }
249
+ //# sourceMappingURL=transactionBuilder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactionBuilder.d.ts","sourceRoot":"","sources":["../../../src/lib/transactionBuilder.ts"],"names":[],"mappings":"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"}