@hyperlane-xyz/tron-sdk 22.1.13 → 23.0.0

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.
@@ -1,10 +1,5 @@
1
- import HypNativeAbi from '@hyperlane-xyz/core/tron/abi/contracts/token/HypNative.sol/HypNative.json' with { type: 'json' };
2
- import TransparentUpgradeableProxyAbi from '@hyperlane-xyz/core/tron/abi/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json' with { type: 'json' };
3
- import { getCreateOracleTx, getInitIgpTx, getSetOracleTx, getSetRemoteGasTx, } from '../hook/hook-tx.js';
4
- import { getCreateMerkleRootMultisigIsmWithMetaProxyTx, getCreateMessageIdMultisigIsmWithMetaProxyTx, getInitRoutingIsmTx, } from '../ism/ism-tx.js';
5
- import { TRON_EMPTY_ADDRESS, createDeploymentTransaction, } from '../utils/index.js';
6
- import { TronProvider } from './provider.js';
7
1
  import { assert } from '@hyperlane-xyz/utils';
2
+ import { TronProvider } from './provider.js';
8
3
  export class TronSigner extends TronProvider {
9
4
  static async connectWithSigner(rpcUrls, privateKey, extraParams) {
10
5
  assert(extraParams, `extra params not defined`);
@@ -39,523 +34,5 @@ export class TronSigner extends TronProvider {
39
34
  async sendAndConfirmBatchTransactions(_transactions) {
40
35
  throw new Error(`${TronSigner.name} does not support transaction batching`);
41
36
  }
42
- // ### TX CORE ###
43
- async createMailbox(req) {
44
- let proxyAdminAddress = req.proxyAdminAddress;
45
- // 1. Deploy Proxy Admin if no address available
46
- if (!proxyAdminAddress) {
47
- const { proxyAdminAddress: address } = await this.createProxyAdmin({});
48
- proxyAdminAddress = address;
49
- }
50
- // 2. Deploy Mailbox implementation
51
- const implTx = await this.getCreateMailboxTransaction({
52
- ...req,
53
- signer: this.getSignerAddress(),
54
- });
55
- const implReceipt = await this.sendAndConfirmTransaction(implTx);
56
- const implementationAddress = this.tronweb.address.fromHex(implReceipt.contract_address);
57
- // 3. Deploy TransparentUpgradeableProxy
58
- // Note: We pass empty bytes for _data and initialize separately below
59
- const proxyTx = await createDeploymentTransaction(this.tronweb, TransparentUpgradeableProxyAbi, this.getSignerAddress(), [implementationAddress, proxyAdminAddress, '0x']);
60
- const proxyReceipt = await this.sendAndConfirmTransaction(proxyTx);
61
- const mailboxAddress = this.tronweb.address.fromHex(proxyReceipt.contract_address);
62
- // 4. Initialize the Mailbox through the proxy
63
- const { transaction } = await this.tronweb.transactionBuilder.triggerSmartContract(mailboxAddress, 'initialize(address,address,address,address)', {}, [
64
- {
65
- type: 'address',
66
- value: this.getSignerAddress(),
67
- },
68
- {
69
- type: 'address',
70
- value: mailboxAddress,
71
- },
72
- {
73
- type: 'address',
74
- value: mailboxAddress,
75
- },
76
- {
77
- type: 'address',
78
- value: mailboxAddress,
79
- },
80
- ], this.tronweb.address.toHex(this.getSignerAddress()));
81
- await this.sendAndConfirmTransaction(transaction);
82
- return {
83
- mailboxAddress,
84
- };
85
- }
86
- async setDefaultIsm(req) {
87
- const tx = await this.getSetDefaultIsmTransaction({
88
- ...req,
89
- signer: this.getSignerAddress(),
90
- });
91
- await this.sendAndConfirmTransaction(tx);
92
- return {
93
- ismAddress: req.ismAddress,
94
- };
95
- }
96
- async setDefaultHook(req) {
97
- const tx = await this.getSetDefaultHookTransaction({
98
- ...req,
99
- signer: this.getSignerAddress(),
100
- });
101
- await this.sendAndConfirmTransaction(tx);
102
- return {
103
- hookAddress: req.hookAddress,
104
- };
105
- }
106
- async setRequiredHook(req) {
107
- const tx = await this.getSetRequiredHookTransaction({
108
- ...req,
109
- signer: this.getSignerAddress(),
110
- });
111
- await this.sendAndConfirmTransaction(tx);
112
- return {
113
- hookAddress: req.hookAddress,
114
- };
115
- }
116
- async setMailboxOwner(req) {
117
- const tx = await this.getSetMailboxOwnerTransaction({
118
- ...req,
119
- signer: this.getSignerAddress(),
120
- });
121
- await this.sendAndConfirmTransaction(tx);
122
- return {
123
- newOwner: req.newOwner,
124
- };
125
- }
126
- async createMerkleRootMultisigIsm(req) {
127
- const tx = await this.getCreateMerkleRootMultisigIsmTransaction({
128
- signer: this.getSignerAddress(),
129
- validators: req.validators,
130
- threshold: req.threshold,
131
- });
132
- const receipt = await this.sendAndConfirmTransaction(tx);
133
- const implAddress = this.tronweb.address.fromHex(receipt.contract_address);
134
- const metaProxyTx = await getCreateMerkleRootMultisigIsmWithMetaProxyTx(this.tronweb, this.getSignerAddress(), implAddress, {
135
- validators: req.validators,
136
- threshold: req.threshold,
137
- });
138
- const metaProxyReceipt = await this.sendAndConfirmTransaction(metaProxyTx);
139
- const ismAddress = this.tronweb.address.fromHex(metaProxyReceipt.contract_address);
140
- return {
141
- ismAddress,
142
- };
143
- }
144
- async createMessageIdMultisigIsm(req) {
145
- const tx = await this.getCreateMessageIdMultisigIsmTransaction({
146
- signer: this.getSignerAddress(),
147
- validators: req.validators,
148
- threshold: req.threshold,
149
- });
150
- const receipt = await this.sendAndConfirmTransaction(tx);
151
- const implAddress = this.tronweb.address.fromHex(receipt.contract_address);
152
- const metaProxyTx = await getCreateMessageIdMultisigIsmWithMetaProxyTx(this.tronweb, this.getSignerAddress(), implAddress, {
153
- validators: req.validators,
154
- threshold: req.threshold,
155
- });
156
- const metaProxyReceipt = await this.sendAndConfirmTransaction(metaProxyTx);
157
- const ismAddress = this.tronweb.address.fromHex(metaProxyReceipt.contract_address);
158
- return {
159
- ismAddress,
160
- };
161
- }
162
- async createRoutingIsm(req) {
163
- const tx = await this.getCreateRoutingIsmTransaction({
164
- ...req,
165
- signer: this.getSignerAddress(),
166
- });
167
- const receipt = await this.sendAndConfirmTransaction(tx);
168
- const ismAddress = this.tronweb.address.fromHex(receipt.contract_address);
169
- const initTx = await getInitRoutingIsmTx(this.tronweb, this.getSignerAddress(), {
170
- ismAddress,
171
- routes: req.routes,
172
- });
173
- await this.sendAndConfirmTransaction(initTx);
174
- return {
175
- ismAddress,
176
- };
177
- }
178
- async setRoutingIsmRoute(req) {
179
- const tx = await this.getSetRoutingIsmRouteTransaction({
180
- ...req,
181
- signer: this.getSignerAddress(),
182
- });
183
- await this.sendAndConfirmTransaction(tx);
184
- return {
185
- route: req.route,
186
- };
187
- }
188
- async removeRoutingIsmRoute(req) {
189
- const tx = await this.getRemoveRoutingIsmRouteTransaction({
190
- ...req,
191
- signer: this.getSignerAddress(),
192
- });
193
- await this.sendAndConfirmTransaction(tx);
194
- return {
195
- domainId: req.domainId,
196
- };
197
- }
198
- async setRoutingIsmOwner(req) {
199
- const tx = await this.getSetRoutingIsmOwnerTransaction({
200
- ...req,
201
- signer: this.getSignerAddress(),
202
- });
203
- await this.sendAndConfirmTransaction(tx);
204
- return {
205
- newOwner: req.newOwner,
206
- };
207
- }
208
- async createNoopIsm(req) {
209
- const tx = await this.getCreateNoopIsmTransaction({
210
- ...req,
211
- signer: this.getSignerAddress(),
212
- });
213
- const receipt = await this.sendAndConfirmTransaction(tx);
214
- return {
215
- ismAddress: this.tronweb.address.fromHex(receipt.contract_address),
216
- };
217
- }
218
- async createMerkleTreeHook(req) {
219
- const tx = await this.getCreateMerkleTreeHookTransaction({
220
- ...req,
221
- signer: this.getSignerAddress(),
222
- });
223
- const receipt = await this.sendAndConfirmTransaction(tx);
224
- return {
225
- hookAddress: this.tronweb.address.fromHex(receipt.contract_address),
226
- };
227
- }
228
- async createInterchainGasPaymasterHook(req) {
229
- let proxyAdminAddress = req.proxyAdminAddress;
230
- // 1. Deploy Proxy Admin if no address available
231
- if (!proxyAdminAddress) {
232
- const { proxyAdminAddress: address } = await this.createProxyAdmin({});
233
- proxyAdminAddress = address;
234
- }
235
- // 2. Deploy IGP implementation
236
- const implTx = await this.getCreateInterchainGasPaymasterHookTransaction({
237
- ...req,
238
- signer: this.getSignerAddress(),
239
- });
240
- const implReceipt = await this.sendAndConfirmTransaction(implTx);
241
- const implementationAddress = this.tronweb.address.fromHex(implReceipt.contract_address);
242
- // 3. Deploy TransparentUpgradeableProxy
243
- // Note: We pass empty bytes for _data and initialize separately below
244
- const proxyTx = await createDeploymentTransaction(this.tronweb, TransparentUpgradeableProxyAbi, this.getSignerAddress(), [implementationAddress, proxyAdminAddress, '0x']);
245
- const proxyReceipt = await this.sendAndConfirmTransaction(proxyTx);
246
- const hookAddress = this.tronweb.address.fromHex(proxyReceipt.contract_address);
247
- const initTx = await getInitIgpTx(this.tronweb, this.getSignerAddress(), {
248
- igpAddress: hookAddress,
249
- });
250
- await this.sendAndConfirmTransaction(initTx);
251
- const oracleTx = await getCreateOracleTx(this.tronweb, this.getSignerAddress());
252
- const oracleReceipt = await this.sendAndConfirmTransaction(oracleTx);
253
- const oracleAddress = this.tronweb.address.fromHex(oracleReceipt.contract_address);
254
- const setOracleTx = await getSetOracleTx(this.tronweb, this.getSignerAddress(), {
255
- igpAddress: hookAddress,
256
- oracleAddress,
257
- });
258
- await this.sendAndConfirmTransaction(setOracleTx);
259
- return {
260
- hookAddress,
261
- };
262
- }
263
- async setInterchainGasPaymasterHookOwner(req) {
264
- const tx = await this.getSetInterchainGasPaymasterHookOwnerTransaction({
265
- ...req,
266
- signer: this.getSignerAddress(),
267
- });
268
- await this.sendAndConfirmTransaction(tx);
269
- return {
270
- newOwner: req.newOwner,
271
- };
272
- }
273
- async setDestinationGasConfig(req) {
274
- const tx = await this.getSetDestinationGasConfigTransaction({
275
- ...req,
276
- signer: this.getSignerAddress(),
277
- });
278
- await this.sendAndConfirmTransaction(tx);
279
- const setGasTx = await getSetRemoteGasTx(this.tronweb, this.getSignerAddress(), {
280
- igpAddress: req.hookAddress,
281
- destinationGasConfigs: [
282
- {
283
- remoteDomainId: req.destinationGasConfig.remoteDomainId,
284
- gasOracle: {
285
- tokenExchangeRate: req.destinationGasConfig.gasOracle.tokenExchangeRate,
286
- gasPrice: req.destinationGasConfig.gasOracle.gasPrice,
287
- },
288
- },
289
- ],
290
- });
291
- await this.sendAndConfirmTransaction(setGasTx);
292
- return {
293
- destinationGasConfig: req.destinationGasConfig,
294
- };
295
- }
296
- async removeDestinationGasConfig(req) {
297
- const tx = await this.getRemoveDestinationGasConfigTransaction({
298
- ...req,
299
- signer: this.getSignerAddress(),
300
- });
301
- await this.sendAndConfirmTransaction(tx);
302
- return {
303
- remoteDomainId: req.remoteDomainId,
304
- };
305
- }
306
- async createNoopHook(req) {
307
- const tx = await this.getCreateNoopHookTransaction({
308
- ...req,
309
- signer: this.getSignerAddress(),
310
- });
311
- const receipt = await this.sendAndConfirmTransaction(tx);
312
- return {
313
- hookAddress: this.tronweb.address.fromHex(receipt.contract_address),
314
- };
315
- }
316
- async createValidatorAnnounce(req) {
317
- const tx = await this.getCreateValidatorAnnounceTransaction({
318
- ...req,
319
- signer: this.getSignerAddress(),
320
- });
321
- const receipt = await this.sendAndConfirmTransaction(tx);
322
- return {
323
- validatorAnnounceId: this.tronweb.address.fromHex(receipt.contract_address),
324
- };
325
- }
326
- async createProxyAdmin(req) {
327
- const tx = await this.getCreateProxyAdminTransaction({
328
- ...req,
329
- signer: this.getSignerAddress(),
330
- });
331
- const receipt = await this.sendAndConfirmTransaction(tx);
332
- const proxyAdminAddress = this.tronweb.address.fromHex(receipt.contract_address);
333
- // Transfer ownership if owner is provided and different from signer
334
- if (req.owner && req.owner !== this.getSignerAddress()) {
335
- const { transaction } = await this.tronweb.transactionBuilder.triggerSmartContract(proxyAdminAddress, 'transferOwnership(address)', {}, [
336
- {
337
- type: 'address',
338
- value: req.owner,
339
- },
340
- ], this.tronweb.address.toHex(this.getSignerAddress()));
341
- await this.sendAndConfirmTransaction(transaction);
342
- }
343
- return {
344
- proxyAdminAddress,
345
- };
346
- }
347
- async setProxyAdminOwner(req) {
348
- const tx = await this.getSetProxyAdminOwnerTransaction({
349
- ...req,
350
- signer: this.getSignerAddress(),
351
- });
352
- await this.sendAndConfirmTransaction(tx);
353
- return {
354
- newOwner: req.newOwner,
355
- };
356
- }
357
- // ### TX WARP ###
358
- async createNativeToken(req) {
359
- let proxyAdminAddress = req.proxyAdminAddress;
360
- // 1. Deploy Proxy Admin if no address available
361
- if (!proxyAdminAddress) {
362
- const { proxyAdminAddress: address } = await this.createProxyAdmin({});
363
- proxyAdminAddress = address;
364
- }
365
- // 2. Deploy token implementation
366
- const implTx = await this.getCreateNativeTokenTransaction({
367
- ...req,
368
- signer: this.getSignerAddress(),
369
- });
370
- const implReceipt = await this.sendAndConfirmTransaction(implTx);
371
- const implementationAddress = this.tronweb.address.fromHex(implReceipt.contract_address);
372
- // 3. Deploy TransparentUpgradeableProxy
373
- const proxyTx = await createDeploymentTransaction(this.tronweb, TransparentUpgradeableProxyAbi, this.getSignerAddress(), [implementationAddress, proxyAdminAddress, '0x']);
374
- const proxyReceipt = await this.sendAndConfirmTransaction(proxyTx);
375
- const tokenAddress = this.tronweb.address.fromHex(proxyReceipt.contract_address);
376
- // 4. Initialize the token through the proxy
377
- const { transaction } = await this.tronweb.transactionBuilder.triggerSmartContract(tokenAddress, 'initialize(address,address,address)', {}, [
378
- {
379
- type: 'address',
380
- value: TRON_EMPTY_ADDRESS,
381
- },
382
- {
383
- type: 'address',
384
- value: TRON_EMPTY_ADDRESS,
385
- },
386
- {
387
- type: 'address',
388
- value: this.getSignerAddress(),
389
- },
390
- ], this.tronweb.address.toHex(this.getSignerAddress()));
391
- await this.sendAndConfirmTransaction(transaction);
392
- return {
393
- tokenAddress,
394
- };
395
- }
396
- async createCollateralToken(req) {
397
- let proxyAdminAddress = req.proxyAdminAddress;
398
- // 1. Deploy Proxy Admin if no address available
399
- if (!proxyAdminAddress) {
400
- const { proxyAdminAddress: address } = await this.createProxyAdmin({});
401
- proxyAdminAddress = address;
402
- }
403
- // 2. Deploy token implementation
404
- const implTx = await this.getCreateCollateralTokenTransaction({
405
- ...req,
406
- signer: this.getSignerAddress(),
407
- });
408
- const implReceipt = await this.sendAndConfirmTransaction(implTx);
409
- const implementationAddress = this.tronweb.address.fromHex(implReceipt.contract_address);
410
- // 3. Deploy TransparentUpgradeableProxy
411
- const proxyTx = await createDeploymentTransaction(this.tronweb, TransparentUpgradeableProxyAbi, this.getSignerAddress(), [implementationAddress, proxyAdminAddress, '0x']);
412
- const proxyReceipt = await this.sendAndConfirmTransaction(proxyTx);
413
- const tokenAddress = this.tronweb.address.fromHex(proxyReceipt.contract_address);
414
- // 4. Initialize the token through the proxy
415
- const { transaction } = await this.tronweb.transactionBuilder.triggerSmartContract(tokenAddress, 'initialize(address,address,address)', {}, [
416
- {
417
- type: 'address',
418
- value: TRON_EMPTY_ADDRESS,
419
- },
420
- {
421
- type: 'address',
422
- value: TRON_EMPTY_ADDRESS,
423
- },
424
- {
425
- type: 'address',
426
- value: this.getSignerAddress(),
427
- },
428
- ], this.tronweb.address.toHex(this.getSignerAddress()));
429
- await this.sendAndConfirmTransaction(transaction);
430
- return {
431
- tokenAddress,
432
- };
433
- }
434
- async createSyntheticToken(req) {
435
- let proxyAdminAddress = req.proxyAdminAddress;
436
- // 1. Deploy Proxy Admin if no address available
437
- if (!proxyAdminAddress) {
438
- const { proxyAdminAddress: address } = await this.createProxyAdmin({});
439
- proxyAdminAddress = address;
440
- }
441
- // 2. Deploy token implementation
442
- const implTx = await this.getCreateSyntheticTokenTransaction({
443
- ...req,
444
- signer: this.getSignerAddress(),
445
- });
446
- const implReceipt = await this.sendAndConfirmTransaction(implTx);
447
- const implementationAddress = this.tronweb.address.fromHex(implReceipt.contract_address);
448
- // 3. Deploy TransparentUpgradeableProxy
449
- const proxyTx = await createDeploymentTransaction(this.tronweb, TransparentUpgradeableProxyAbi, this.getSignerAddress(), [implementationAddress, proxyAdminAddress, '0x']);
450
- const proxyReceipt = await this.sendAndConfirmTransaction(proxyTx);
451
- const tokenAddress = this.tronweb.address.fromHex(proxyReceipt.contract_address);
452
- // 4. Initialize the token through the proxy
453
- const { transaction } = await this.tronweb.transactionBuilder.triggerSmartContract(tokenAddress, 'initialize(uint256,string,string,address,address,address)', {}, [
454
- {
455
- type: 'uint256',
456
- value: 0,
457
- },
458
- {
459
- type: 'string',
460
- value: req.name,
461
- },
462
- {
463
- type: 'string',
464
- value: req.denom,
465
- },
466
- {
467
- type: 'address',
468
- value: TRON_EMPTY_ADDRESS,
469
- },
470
- {
471
- type: 'address',
472
- value: TRON_EMPTY_ADDRESS,
473
- },
474
- {
475
- type: 'address',
476
- value: this.getSignerAddress(),
477
- },
478
- ], this.tronweb.address.toHex(this.getSignerAddress()));
479
- await this.sendAndConfirmTransaction(transaction);
480
- return {
481
- tokenAddress,
482
- };
483
- }
484
- async setTokenOwner(req) {
485
- const tx = await this.getSetTokenOwnerTransaction({
486
- ...req,
487
- signer: this.getSignerAddress(),
488
- });
489
- await this.sendAndConfirmTransaction(tx);
490
- return {
491
- newOwner: req.newOwner,
492
- };
493
- }
494
- async setTokenIsm(req) {
495
- const tx = await this.getSetTokenIsmTransaction({
496
- ...req,
497
- signer: this.getSignerAddress(),
498
- });
499
- await this.sendAndConfirmTransaction(tx);
500
- return {
501
- ismAddress: req.ismAddress || '',
502
- };
503
- }
504
- async setTokenHook(req) {
505
- const tx = await this.getSetTokenHookTransaction({
506
- ...req,
507
- signer: this.getSignerAddress(),
508
- });
509
- await this.sendAndConfirmTransaction(tx);
510
- return {
511
- hookAddress: req.hookAddress || '',
512
- };
513
- }
514
- async enrollRemoteRouter(req) {
515
- const tx = await this.getEnrollRemoteRouterTransaction({
516
- ...req,
517
- signer: this.getSignerAddress(),
518
- });
519
- await this.sendAndConfirmTransaction(tx);
520
- const token = this.tronweb.contract(HypNativeAbi.abi, req.tokenAddress);
521
- await token
522
- .setDestinationGas(req.remoteRouter.receiverDomainId, req.remoteRouter.gas)
523
- .send({
524
- shouldPollResponse: true,
525
- });
526
- return {
527
- receiverDomainId: req.remoteRouter.receiverDomainId,
528
- };
529
- }
530
- async unenrollRemoteRouter(req) {
531
- const tx = await this.getUnenrollRemoteRouterTransaction({
532
- ...req,
533
- signer: this.getSignerAddress(),
534
- });
535
- await this.sendAndConfirmTransaction(tx);
536
- return {
537
- receiverDomainId: req.receiverDomainId,
538
- };
539
- }
540
- async transfer(req) {
541
- const tx = await this.getTransferTransaction({
542
- ...req,
543
- signer: this.getSignerAddress(),
544
- });
545
- await this.sendAndConfirmTransaction(tx);
546
- return {
547
- recipient: req.recipient,
548
- };
549
- }
550
- async remoteTransfer(req) {
551
- const tx = await this.getRemoteTransferTransaction({
552
- ...req,
553
- signer: this.getSignerAddress(),
554
- });
555
- await this.sendAndConfirmTransaction(tx);
556
- return {
557
- tokenAddress: req.tokenAddress,
558
- };
559
- }
560
37
  }
561
38
  //# sourceMappingURL=signer.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"signer.js","sourceRoot":"","sources":["../../src/clients/signer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"signer.js","sourceRoot":"","sources":["../../src/clients/signer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAI9C,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAE7C,MAAM,OAAO,UACX,SAAQ,YAAY;IAGpB,MAAM,CAAC,KAAK,CAAC,iBAAiB,CAC5B,OAAiB,EACjB,UAAkB,EAClB,WAAiC;QAEjC,MAAM,CAAC,WAAW,EAAE,0BAA0B,CAAC,CAAC;QAEhD,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAmC,CAAC;QACjE,MAAM,CAAC,QAAQ,EAAE,sCAAsC,CAAC,CAAC;QAEzD,OAAO,IAAI,UAAU,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;IAC7C,CAAC;IAED,YAAsB,OAAiB,EAAE,UAAkB;QACzD,KAAK,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;IAC7B,CAAC;IAED,gBAAgB;QACd,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,MAAM,IAAI,EAAE,CAAC;IAClD,CAAC;IAED,UAAU;QACR,OAAO,IAAI,CAAC,OAAO,CAAC;IACtB,CAAC;IAED,2BAA2B;QACzB,OAAO,KAAK,CAAC;IACf,CAAC;IAED,KAAK,CAAC,0BAA0B,CAC9B,WAA4B;QAE5B,OAAO,WAAW,CAAC;IACrB,CAAC;IAED,KAAK,CAAC,yBAAyB,CAC7B,WAA4B;QAE5B,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1D,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;QAEnE,IAAI,CAAC,MAAM,EAAE,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;YACpC,MAAM,IAAI,KAAK,CACb,oCAAoC,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,OAAO,IAAI,eAAe,EAAE,CACvF,CAAC;QACJ,CAAC;QAED,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAE3D,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,KAAK,CAAC,+BAA+B,CACnC,aAAgC;QAEhC,MAAM,IAAI,KAAK,CAAC,GAAG,UAAU,CAAC,IAAI,wCAAwC,CAAC,CAAC;IAC9E,CAAC;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperlane-xyz/tron-sdk",
3
- "version": "22.1.13",
3
+ "version": "23.0.0",
4
4
  "description": "Hyperlane TypeScript SDK for Tron",
5
5
  "keywords": [
6
6
  "blockchain",
@@ -39,8 +39,8 @@
39
39
  "ethers": "^5.8.0",
40
40
  "tronweb": "^6.1.1",
41
41
  "@hyperlane-xyz/core": "11.3.1",
42
- "@hyperlane-xyz/provider-sdk": "4.3.3",
43
- "@hyperlane-xyz/utils": "31.2.0"
42
+ "@hyperlane-xyz/provider-sdk": "5.0.0",
43
+ "@hyperlane-xyz/utils": "32.0.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/chai": "^4.3.11",
@@ -58,7 +58,7 @@
58
58
  "ts-node": "^10.9.2",
59
59
  "tsx": "^4.19.1",
60
60
  "typescript": "6.0.2",
61
- "@hyperlane-xyz/tsconfig": "^31.2.0"
61
+ "@hyperlane-xyz/tsconfig": "^32.0.0"
62
62
  },
63
63
  "scripts": {
64
64
  "build": "rm -rf ./dist && tsc",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=1_interchain_security.e2e-test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"1_interchain_security.e2e-test.d.ts","sourceRoot":"","sources":["../../src/tests/1_interchain_security.e2e-test.ts"],"names":[],"mappings":""}