This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
transaction.ts
404 lines (371 loc) · 10.1 KB
/
transaction.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
// This file is part of Zilliqa-Javascript-Library.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import {
EventEmitter,
GET_TX_ATTEMPTS,
Provider,
RPCMethod,
RPCResponse,
Signable,
TxBlockObj,
} from '@zilliqa-js/core';
import { getAddressFromPublicKey, normaliseAddress } from '@zilliqa-js/crypto';
import { BN, Long } from '@zilliqa-js/util';
import {
TxEventName,
TxIncluded,
TxParams,
TxReceipt,
TxStatus,
} from './types';
import { encodeTransactionProto, sleep } from './util';
/**
* Transaction
*
* Transaction is a functor. Its purpose is to encode the possible states a
* Transaction can be in: Confirmed, Rejected, Pending, or Initialised (i.e., not broadcasted).
*/
export class Transaction implements Signable {
/**
* confirm
*
* constructs an already-confirmed transaction.
*
* @static
* @param {BaseTx} params
*/
static confirm(params: TxParams, provider: Provider) {
return new Transaction(params, provider, TxStatus.Confirmed);
}
/**
* reject
*
* constructs an already-rejected transaction.
*
* @static
* @param {BaseTx} params
*/
static reject(params: TxParams, provider: Provider) {
return new Transaction(params, provider, TxStatus.Rejected);
}
provider: Provider;
eventEmitter: EventEmitter<Transaction>;
id?: string;
status: TxStatus;
toDS: boolean;
blockConfirmation?: number;
// parameters
private version: number;
private nonce?: number;
private toAddr: string;
private pubKey?: string;
private amount: BN;
private gasPrice: BN;
private gasLimit: Long;
private code: string = '';
private data: string = '';
private receipt?: TxReceipt;
private signature?: string;
get bytes(): Buffer {
return encodeTransactionProto(this.txParams);
}
get senderAddress(): string {
if (!this.pubKey) {
return '0'.repeat(40);
}
return getAddressFromPublicKey(this.pubKey);
}
get txParams(): TxParams {
return {
version: this.version,
toAddr: normaliseAddress(this.toAddr),
nonce: this.nonce,
pubKey: this.pubKey,
amount: this.amount,
gasPrice: this.gasPrice,
gasLimit: this.gasLimit,
code: this.code,
data: this.data,
signature: this.signature,
receipt: this.receipt,
};
}
get payload() {
return {
version: 0,
toAddr: this.toAddr,
nonce: this.nonce,
pubKey: this.pubKey,
amount: this.amount.toString(),
gasPrice: this.gasPrice.toString(),
gasLimit: this.gasLimit.toString(),
code: this.code,
data: this.data,
signature: this.signature,
receipt: this.receipt,
};
}
constructor(
params: TxParams,
provider: Provider,
status: TxStatus = TxStatus.Initialised,
toDS: boolean = false,
) {
// private members
this.version = params.version;
this.toAddr = normaliseAddress(params.toAddr);
this.nonce = params.nonce;
this.pubKey = params.pubKey;
this.amount = params.amount;
this.code = params.code || '';
this.data = params.data || '';
this.signature = params.signature;
this.gasPrice = params.gasPrice;
this.gasLimit = params.gasLimit;
this.receipt = params.receipt;
// public members
this.provider = provider;
this.status = status;
this.toDS = toDS;
this.blockConfirmation = 0;
this.eventEmitter = new EventEmitter();
}
/**
* isPending
*
* @returns {boolean}
*/
isPending(): boolean {
return this.status === TxStatus.Pending;
}
/**
* isInitialised
*
* @returns {boolean}
*/
isInitialised(): boolean {
return this.status === TxStatus.Initialised;
}
getReceipt(): TxReceipt | undefined {
return this.receipt;
}
/**
* isConfirmed
*
* @returns {boolean}
*/
isConfirmed(): boolean {
return this.status === TxStatus.Confirmed;
}
/**
* isRejected
*
* @returns {boolean}
*/
isRejected(): boolean {
return this.status === TxStatus.Rejected;
}
/**
* setProvider
*
* Sets the provider on this instance.
*
* @param {Provider} provider
*/
setProvider(provider: Provider) {
this.provider = provider;
}
/**
* setStatus
*
* Escape hatch to imperatively set the state of the transaction.
*
* @param {TxStatus} status
* @returns {undefined}
*/
setStatus(status: TxStatus) {
this.status = status;
return this;
}
observed(): EventEmitter<Transaction> {
return this.eventEmitter;
}
/**
* blockConfirm
*
* Use `RPCMethod.GetLatestBlock` to get latest blockNumber
* Use interval to get the latestBlockNumber
* After BlockNumber change, then we use `RPCMethod.GetTransaction` to get the receipt
*
* @param {string} txHash
* @param {number} maxblockCount
* @param {number} interval interval in milliseconds
* @returns {Promise<Transaction>}
*/
async blockConfirm(
txHash: string,
maxblockCount: number = 4,
interval: number = 1000,
) {
this.status = TxStatus.Pending;
const blockStart: BN = await this.getBlockNumber();
let blockChecked = blockStart;
for (let attempt = 0; attempt < maxblockCount; attempt += 1) {
try {
const blockLatest: BN = await this.getBlockNumber();
const blockNext: BN = blockChecked.add(
new BN(attempt === 0 ? attempt : 1),
);
if (blockLatest.gte(blockNext)) {
blockChecked = blockLatest;
this.emit(TxEventName.Track, {
txHash,
attempt,
currentBlock: blockChecked.toString(),
});
if (await this.trackTx(txHash)) {
this.blockConfirmation = blockLatest.sub(blockStart).toNumber();
return this;
}
} else {
attempt = attempt - 1 >= 0 ? attempt - 1 : 0;
}
} catch (err) {
this.status = TxStatus.Rejected;
throw err;
}
if (attempt + 1 < maxblockCount) {
await sleep(interval);
}
}
// if failed
const blockFailed: BN = await this.getBlockNumber();
this.blockConfirmation = blockFailed.sub(blockStart).toNumber();
this.status = TxStatus.Rejected;
const errorMessage = `The transaction is still not confirmed after ${maxblockCount} blocks.`;
throw new Error(errorMessage);
}
/**
* confirmReceipt
*
* Similar to the Promise API. This sets the Transaction instance to a state
* of pending. Calling this function kicks off a passive loop that polls the
* lookup node for confirmation on the txHash.
*
* The polls are performed with a linear backoff:
*
* `const delay = interval * attempt`
*
* This is a low-level method that you should generally not have to use
* directly.
*
* @param {string} txHash
* @param {number} maxAttempts
* @param {number} initial interval in milliseconds
* @returns {Promise<Transaction>}
*/
async confirm(
txHash: string,
maxAttempts = GET_TX_ATTEMPTS,
interval = 1000,
): Promise<Transaction> {
this.status = TxStatus.Pending;
for (let attempt = 0; attempt < maxAttempts; attempt++) {
this.emit(TxEventName.Track, {
txHash,
attempt,
});
try {
if (await this.trackTx(txHash)) {
return this;
}
} catch (err) {
this.status = TxStatus.Rejected;
throw err;
}
if (attempt + 1 < maxAttempts) {
await sleep(interval * attempt);
}
}
this.status = TxStatus.Rejected;
const errorMessage = `The transaction is still not confirmed after ${maxAttempts} attempts.`;
throw new Error(errorMessage);
}
/**
* map
*
* maps over the transaction, allowing for manipulation.
*
* @param {(prev: TxParams) => TxParams} fn - mapper
* @returns {Transaction}
*/
map(fn: (prev: TxParams) => TxParams): Transaction {
const newParams = fn(this.txParams);
this.setParams(newParams);
return this;
}
private setParams(params: TxParams) {
this.version = params.version;
this.toAddr = normaliseAddress(params.toAddr);
this.nonce = params.nonce;
this.pubKey = params.pubKey;
this.amount = params.amount;
this.code = params.code || '';
this.data = params.data || '';
this.signature = params.signature;
this.gasPrice = params.gasPrice;
this.gasLimit = params.gasLimit;
this.receipt = params.receipt;
}
private async trackTx(txHash: string): Promise<boolean> {
const res: RPCResponse<TxIncluded, string> = await this.provider.send(
RPCMethod.GetTransaction,
txHash,
);
if (res.error) {
this.emit(TxEventName.Error, res.error);
return false;
}
this.id = res.result.ID;
this.receipt = {
...res.result.receipt,
cumulative_gas: parseInt(res.result.receipt.cumulative_gas, 10),
};
this.emit(TxEventName.Receipt, this.receipt);
this.status =
this.receipt && this.receipt.success
? TxStatus.Confirmed
: TxStatus.Rejected;
return true;
}
private async getBlockNumber(): Promise<BN> {
try {
const res: RPCResponse<TxBlockObj, string> = await this.provider.send(
RPCMethod.GetLatestTxBlock,
);
if (res.error === undefined && res.result.header.BlockNum) {
// if blockNumber is too high, we use BN to be safer
return new BN(res.result.header.BlockNum);
} else {
throw new Error('Can not get latest BlockNumber');
}
} catch (error) {
throw error;
}
}
private emit(event: TxEventName | string, txEvent: any) {
this.eventEmitter.emit(event, { ...txEvent, event });
}
}