@@ -32,7 +32,7 @@ describe('EVM Coin Utils', function () {
3232 } ,
3333 } ;
3434
35- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
35+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
3636
3737 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
3838
@@ -49,7 +49,7 @@ describe('EVM Coin Utils', function () {
4949
5050 const mockResponse = { } ;
5151
52- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
52+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
5353
5454 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
5555
@@ -64,7 +64,7 @@ describe('EVM Coin Utils', function () {
6464 address : mockAddress ,
6565 } ;
6666
67- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 500 , 'Internal Server Error' ) ;
67+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 500 , 'Internal Server Error' ) ;
6868
6969 try {
7070 await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
@@ -88,7 +88,7 @@ describe('EVM Coin Utils', function () {
8888 ethereum_nonce : 42 ,
8989 } ;
9090
91- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
91+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
9292
9393 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
9494
@@ -105,7 +105,7 @@ describe('EVM Coin Utils', function () {
105105
106106 const mockResponse = { } ;
107107
108- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
108+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
109109
110110 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
111111
@@ -331,7 +331,7 @@ describe('EVM Coin Utils', function () {
331331 } ;
332332
333333 nock ( mockExplorerUrl ) // Note: nock should match without trailing slash
334- . get ( `/accounts/${ mockAddress } ` )
334+ . get ( `/accounts/${ mockAddress } ?transactions=false ` )
335335 . reply ( 200 , mockResponse ) ;
336336
337337 const result = await recovery_HBAREVM_BlockchainExplorerQuery (
@@ -362,7 +362,7 @@ describe('EVM Coin Utils', function () {
362362 } ,
363363 } ;
364364
365- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
365+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
366366
367367 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
368368
@@ -389,7 +389,7 @@ describe('EVM Coin Utils', function () {
389389 } ,
390390 } ;
391391
392- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
392+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
393393
394394 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
395395
@@ -410,7 +410,7 @@ describe('EVM Coin Utils', function () {
410410 } ,
411411 } ;
412412
413- nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ` ) . reply ( 200 , mockResponse ) ;
413+ nock ( mockExplorerUrl ) . get ( `/accounts/${ mockAddress } ?transactions=false ` ) . reply ( 200 , mockResponse ) ;
414414
415415 const result = await recovery_HBAREVM_BlockchainExplorerQuery ( query , mockRpcUrl , mockExplorerUrl , mockToken ) ;
416416
0 commit comments