@@ -367,7 +367,7 @@ function monero_fetch(rd, api_data, rdo) {
367
367
if ( xid_match ) {
368
368
if ( txd . ccval && txd . transactiontime > rdo . request_timestamp ) {
369
369
txdat = txd ;
370
- if ( source === "list " ) {
370
+ if ( source === "requests " ) {
371
371
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
372
372
if ( tx_listitem ) {
373
373
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -445,7 +445,7 @@ function blockchair_xmr_poll(rd, api_data, rdo) {
445
445
const txd = blockchair_xmr_data ( dat , rdo . setconfirmations ) ;
446
446
if ( txd . txhash === txhash && txd . ccval ) {
447
447
txdat = txd , counter = 1 ;
448
- if ( rdo . source === "list " ) {
448
+ if ( rdo . source === "requests " ) {
449
449
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
450
450
if ( tx_listitem ) {
451
451
const transactionlist = rdo . transactionlist ;
@@ -555,7 +555,7 @@ function blockchaininfo_fetch(rd, api_data, rdo, latestblock) {
555
555
const txd = blockchaininfo_scan_data ( val , rdo . setconfirmations , rd . currencysymbol , rd . address , latestblock ) ;
556
556
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) { // get all transactions after requestdate
557
557
txdat = txd ;
558
- if ( source === "list " ) {
558
+ if ( source === "requests " ) {
559
559
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
560
560
if ( tx_listitem ) {
561
561
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -612,7 +612,7 @@ function blockchaininfo_fetch(rd, api_data, rdo, latestblock) {
612
612
const txd = blockchaininfo_scan_data ( data , rdo . setconfirmations , rd . currencysymbol , rd . address , latestblock ) ;
613
613
if ( txd . ccval ) {
614
614
txdat = txd , counter = 1 ;
615
- if ( source === "list " ) {
615
+ if ( source === "requests " ) {
616
616
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
617
617
if ( tx_listitem ) {
618
618
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -674,7 +674,7 @@ function blockcypher_fetch(rd, api_data, rdo) {
674
674
const txd = blockcypher_scan_data ( value , rdo . setconfirmations , rd . currencysymbol , rd . payment ) ;
675
675
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) {
676
676
txdat = txd ;
677
- if ( rdo . source === "list " ) {
677
+ if ( rdo . source === "requests " ) {
678
678
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
679
679
if ( tx_listitem ) {
680
680
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -723,7 +723,7 @@ function blockcypher_fetch(rd, api_data, rdo) {
723
723
const txd = blockcypher_poll_data ( data , rdo . setconfirmations , rd . currencysymbol , rd . address ) ;
724
724
if ( txd . ccval ) {
725
725
txdat = txd , counter = 1 ;
726
- if ( rdo . source === "list " ) {
726
+ if ( rdo . source === "requests " ) {
727
727
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
728
728
if ( tx_listitem ) {
729
729
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -788,7 +788,7 @@ function ethplorer_fetch(rd, api_data, rdo) {
788
788
rt_compensate = ( rd . inout === "local" && rd . status === "insufficient" ) ? rdo . request_timestamp - 30000 : rdo . request_timestamp ; // substract extra 30 seconds (extra compensation)
789
789
if ( str_match ( value . to , rd . address ) === true && txd . transactiontime > rt_compensate && str_match ( rd . currencysymbol , q_obj ( value , "tokenInfo.symbol" ) ) === true && txd . ccval ) {
790
790
txdat = txd ;
791
- if ( source === "list " ) {
791
+ if ( source === "requests " ) {
792
792
api_src ( thislist , api_data ) ; // !!overwrite
793
793
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
794
794
if ( tx_listitem ) {
@@ -848,7 +848,7 @@ function ethplorer_fetch(rd, api_data, rdo) {
848
848
txd = infura_erc20_poll_data ( txdata , rdo . setconfirmations , rd . currencysymbol , l2 ) ;
849
849
if ( txd . ccval ) {
850
850
txdat = txd , counter = 1 ;
851
- if ( source === "list " ) {
851
+ if ( source === "requests " ) {
852
852
api_src ( thislist , api_data ) ; // !!overwrite
853
853
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
854
854
if ( tx_listitem ) {
@@ -928,7 +928,7 @@ function omniscan_fetch(rd, api_data, rdo, contract, chainid) {
928
928
rt_compensate = ( rd . inout === "local" && rd . status === "insufficient" ) ? rdo . request_timestamp - 30000 : rdo . request_timestamp ; // substract extra 30 seconds (extra compensation)
929
929
if ( str_match ( value . to , rd . address ) && ( txd . transactiontime > rt_compensate ) && txd . ccval ) {
930
930
txdat = txd ;
931
- if ( source === "list " ) {
931
+ if ( source === "requests " ) {
932
932
api_src ( thislist , api_data ) ; // !!overwrite
933
933
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
934
934
if ( tx_listitem ) {
@@ -975,7 +975,7 @@ function omniscan_fetch(rd, api_data, rdo, contract, chainid) {
975
975
rt_compensate = ( rd . inout === "local" && rd . status === "insufficient" ) ? rdo . request_timestamp - 30000 : rdo . request_timestamp ; // substract extra 30 seconds (extra compensation)
976
976
if ( str_match ( value . to , rd . address ) && ( txd . transactiontime > rt_compensate ) && txd . ccval ) {
977
977
txdat = txd ;
978
- if ( source === "list " ) {
978
+ if ( source === "requests " ) {
979
979
api_src ( thislist , api_data ) ; // !!overwrite
980
980
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
981
981
if ( tx_listitem ) {
@@ -1027,7 +1027,7 @@ function omniscan_fetch(rd, api_data, rdo, contract, chainid) {
1027
1027
const txd = omniscan_scan_data_eth ( value , rdo . setconfirmations , network ) ;
1028
1028
if ( txd . ccval ) {
1029
1029
txdat = txd , counter = 1 ;
1030
- if ( source === "list " ) {
1030
+ if ( source === "requests " ) {
1031
1031
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1032
1032
if ( tx_listitem ) {
1033
1033
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1074,7 +1074,7 @@ function omniscan_fetch(rd, api_data, rdo, contract, chainid) {
1074
1074
const txd = omniscan_scan_data ( value , rdo . setconfirmations , rd . currencysymbol , network ) ;
1075
1075
if ( txd . ccval ) {
1076
1076
txdat = txd , counter = 1 ;
1077
- if ( source === "list " ) {
1077
+ if ( source === "requests " ) {
1078
1078
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1079
1079
if ( tx_listitem ) {
1080
1080
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1159,7 +1159,7 @@ function blockchair_fetch(rd, api_data, rdo) {
1159
1159
const txd = blockchair_erc20_scan_data ( val , rdo . setconfirmations , ccsymbol , latestblock ) ;
1160
1160
if ( ( txd . transactiontime > rdo . request_timestamp ) && ( str_match ( txd . recipient , address ) === true ) && ( str_match ( txd . token_symbol , ccsymbol ) === true ) && txd . ccval ) {
1161
1161
txdat = txd ;
1162
- if ( source === "list " ) {
1162
+ if ( source === "requests " ) {
1163
1163
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1164
1164
if ( tx_listitem ) {
1165
1165
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1182,7 +1182,7 @@ function blockchair_fetch(rd, api_data, rdo) {
1182
1182
const txd = blockchair_eth_scan_data ( val , rdo . setconfirmations , ccsymbol , latestblock ) ;
1183
1183
if ( txd . ccval && txd . transactiontime > rdo . request_timestamp && str_match ( txd . recipient , address ) ) {
1184
1184
txdat = txd ;
1185
- if ( source === "list " ) {
1185
+ if ( source === "requests " ) {
1186
1186
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1187
1187
if ( tx_listitem ) {
1188
1188
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1218,7 +1218,7 @@ function blockchair_fetch(rd, api_data, rdo) {
1218
1218
const txd = blockchair_scan_data ( val , rdo . setconfirmations , ccsymbol , address , latestblock ) ;
1219
1219
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) { // get all transactions after requestdate
1220
1220
txdat = txd ;
1221
- if ( source === "list " ) {
1221
+ if ( source === "requests " ) {
1222
1222
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1223
1223
if ( tx_listitem ) {
1224
1224
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1284,7 +1284,7 @@ function blockchair_fetch(rd, api_data, rdo) {
1284
1284
blockchair_scan_data ( trxs , rdo . setconfirmations , ccsymbol , address , latestblock ) ;
1285
1285
if ( txd . ccval ) {
1286
1286
txdat = txd , counter = 1 ;
1287
- if ( source === "list " ) {
1287
+ if ( source === "requests " ) {
1288
1288
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1289
1289
if ( tx_listitem ) {
1290
1290
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1348,7 +1348,7 @@ function nimiq_fetch(rd, api_data, rdo) {
1348
1348
const txd = nimiq_scan_data ( value , rdo . setconfirmations ) ;
1349
1349
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) {
1350
1350
txdat = txd ;
1351
- if ( source === "list " ) {
1351
+ if ( source === "requests " ) {
1352
1352
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1353
1353
if ( tx_listitem ) {
1354
1354
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1401,7 +1401,7 @@ function nimiq_fetch(rd, api_data, rdo) {
1401
1401
if ( txd ) {
1402
1402
if ( txd . ccval ) {
1403
1403
txdat = txd , counter = 1 ;
1404
- if ( source === "list " ) {
1404
+ if ( source === "requests " ) {
1405
1405
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1406
1406
if ( tx_listitem ) {
1407
1407
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1458,7 +1458,7 @@ function nimiq_fetch(rd, api_data, rdo) {
1458
1458
if ( txd ) {
1459
1459
if ( txd . ccval ) {
1460
1460
txdat = txd , counter = 1 ;
1461
- if ( source === "list " ) {
1461
+ if ( source === "requests " ) {
1462
1462
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1463
1463
if ( tx_listitem ) {
1464
1464
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1564,7 +1564,7 @@ function kaspa_fetch(rd, api_data, rdo, blockheight) {
1564
1564
const txd = kaspa_scan_data ( value , rd . address , rdo . setconfirmations , blockheight ) ;
1565
1565
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) {
1566
1566
txdat = txd ;
1567
- if ( source === "list " ) {
1567
+ if ( source === "requests " ) {
1568
1568
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1569
1569
if ( tx_listitem ) {
1570
1570
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1613,7 +1613,7 @@ function kaspa_fetch(rd, api_data, rdo, blockheight) {
1613
1613
if ( txd ) {
1614
1614
if ( txd . ccval ) {
1615
1615
txdat = txd , counter = 1 ;
1616
- if ( source === "list " ) {
1616
+ if ( source === "requests " ) {
1617
1617
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1618
1618
if ( tx_listitem ) {
1619
1619
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1672,7 +1672,7 @@ function insight_fetch_dash(rd, api_data, rdo) {
1672
1672
const txd = insight_scan_data ( value , rdo . setconfirmations , rd . address ) ;
1673
1673
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) {
1674
1674
txdat = txd ;
1675
- if ( rdo . source === "list " ) {
1675
+ if ( rdo . source === "requests " ) {
1676
1676
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1677
1677
if ( tx_listitem ) {
1678
1678
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1719,7 +1719,7 @@ function insight_fetch_dash(rd, api_data, rdo) {
1719
1719
const txd = insight_scan_data ( data , rdo . setconfirmations , rd . address ) ;
1720
1720
if ( txd . ccval ) {
1721
1721
txdat = txd , counter = 1 ;
1722
- if ( rdo . source === "list " ) {
1722
+ if ( rdo . source === "requests " ) {
1723
1723
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1724
1724
if ( tx_listitem ) {
1725
1725
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1822,7 +1822,7 @@ function mempoolspace_rpc(rd, api_data, rdo, rpc, latestblock) {
1822
1822
const txd = mempoolspace_scan_data ( value , rdo . setconfirmations , rd . currencysymbol , rd . address , latestblock ) ;
1823
1823
if ( txd . transactiontime > rdo . request_timestamp && txd . ccval ) {
1824
1824
txdat = txd ;
1825
- if ( source === "list " ) {
1825
+ if ( source === "requests " ) {
1826
1826
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1827
1827
if ( tx_listitem ) {
1828
1828
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1859,7 +1859,7 @@ function mempoolspace_rpc(rd, api_data, rdo, rpc, latestblock) {
1859
1859
if ( txd ) {
1860
1860
if ( txd . ccval ) {
1861
1861
txdat = txd , counter = 1 ;
1862
- if ( source === "list " ) {
1862
+ if ( source === "requests " ) {
1863
1863
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1864
1864
if ( tx_listitem ) {
1865
1865
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -1962,7 +1962,7 @@ function infura_txd_rpc(rd, api_data, rdo, contract, chainid) {
1962
1962
}
1963
1963
if ( txd . ccval ) {
1964
1964
txdat = txd , counter = 1 ;
1965
- if ( rdo . source === "list " ) {
1965
+ if ( rdo . source === "requests " ) {
1966
1966
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
1967
1967
if ( tx_listitem ) {
1968
1968
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -2095,7 +2095,7 @@ function nano_rpc(rd, api_data, rdo) {
2095
2095
const txd = nano_scan_data ( value , rdo . setconfirmations , rd . currencysymbol ) ;
2096
2096
if ( ( txd . transactiontime > rdo . request_timestamp ) && txd . ccval && ( value . subtype === "receive" || value . receivable ) ) {
2097
2097
txdat = txd ;
2098
- if ( source === "list " ) {
2098
+ if ( source === "requests " ) {
2099
2099
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
2100
2100
if ( tx_listitem ) {
2101
2101
transactionlist . append ( tx_listitem . data ( txd ) ) ;
@@ -2148,7 +2148,7 @@ function nano_rpc(rd, api_data, rdo) {
2148
2148
const txd = nano_scan_data ( data , rdo . setconfirmations , rd . currencysymbol , rd . txhash ) ;
2149
2149
if ( txd . ccval ) {
2150
2150
txdat = txd , counter = 1 ;
2151
- if ( source === "list " ) {
2151
+ if ( source === "requests " ) {
2152
2152
const tx_listitem = append_tx_li ( txd , rd . requesttype ) ;
2153
2153
if ( tx_listitem ) {
2154
2154
transactionlist . append ( tx_listitem . data ( txd ) ) ;
0 commit comments