-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEthplorer — Monitor API Guide.mhtml
17651 lines (13208 loc) · 788 KB
/
Ethplorer — Monitor API Guide.mhtml
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by Blink>
Snapshot-Content-Location: https://docs.ethplorer.io/monitor#tag/Bulk-API-Monitor-Endpoints/paths/~1clearPoolAddresses/post
Subject: =?utf-8?Q?Ethplorer=20=E2=80=94=20Monitor=20API=20Guide?=
Date: Sat, 9 Oct 2021 17:55:07 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--QQnGbiLLuyCRGoaR3tnEitqlOFAzjhlT9Dh87DDzDh----"
------MultipartBoundary--QQnGbiLLuyCRGoaR3tnEitqlOFAzjhlT9Dh87DDzDh----
Content-Type: text/html
Content-ID: <frame-13AB978FEDF6890100E574971ABC705C@mhtml.blink>
Content-Transfer-Encoding: quoted-printable
Content-Location: https://docs.ethplorer.io/monitor#tag/Bulk-API-Monitor-Endpoints/paths/~1clearPoolAddresses/post
<!DOCTYPE html><html class=3D"h-100" lang=3D"en"><head><meta http-equiv=3D"=
Content-Type" content=3D"text/html; charset=3DUTF-8"><link rel=3D"styleshee=
t" type=3D"text/css" href=3D"cid:css-4be30b02-6341-4b5d-b149-5190969dce15@m=
html.blink" />
=20
=20
<meta http-equiv=3D"X-XSS-Protection" content=3D"1;mode=3Dblock">
<meta http-equiv=3D"Strict-Transport-Security" content=3D"max-age=3D315=
36000; includeSubDomains; preload">
<meta http-equiv=3D"X-Content-Type-Options" content=3D"nosniff">
<meta http-equiv=3D"x-dns-prefetch-control" content=3D"on">
<meta http-equiv=3D"x-ua-compatible" content=3D"ie=3Dedge">
<meta name=3D"viewport" content=3D"width=3Ddevice-width,initial-scale=
=3D1,shrink-to-fit=3Dno">
<meta name=3D"fb:app_id" content=3D"257953674358265">
<meta name=3D"theme-color" content=3D"#051322">
<meta name=3D"mobile-web-app-capable" content=3D"yes">
<meta name=3D"format-detection" content=3D"telephone=3Dno">
<meta name=3D"og:type" content=3D"website">
<meta name=3D"og:image" content=3D"https://ethplorer.io/images/logo.jpg=
?1">
<meta name=3D"description" content=3D"">
<meta name=3D"og:url" content=3D"https://docs.ethplorer.iohttps://ethpl=
orer.io/monitor">
<meta name=3D"og:title" content=3D"Ethplorer =E2=80=94 Monitor API Guid=
e">
<meta name=3D"og:description" content=3D"">
<meta name=3D"og:image" content=3D"/images/332fab4ad033b0429cd5414de592=
55d3.jpg">
<title>Ethplorer =E2=80=94 Monitor API Guide</title>
<link href=3D"https://fonts.googleapis.com/css?family=3DRoboto:300,400,=
700|Montserrat:400,700" rel=3D"stylesheet">
<meta name=3D"mobile-web-app-capable" content=3D"yes">
<meta name=3D"theme-color" content=3D"#fff">
<meta name=3D"application-name" content=3D"Ethplorer">
<link rel=3D"apple-touch-icon" sizes=3D"57x57" href=3D"https://docs.eth=
plorer.io/icons-29d214c3/apple-touch-icon-57x57.png">
<link rel=3D"apple-touch-icon" sizes=3D"60x60" href=3D"https://docs.eth=
plorer.io/icons-29d214c3/apple-touch-icon-60x60.png">
<link rel=3D"apple-touch-icon" sizes=3D"72x72" href=3D"https://docs.eth=
plorer.io/icons-29d214c3/apple-touch-icon-72x72.png">
<link rel=3D"apple-touch-icon" sizes=3D"76x76" href=3D"https://docs.eth=
plorer.io/icons-29d214c3/apple-touch-icon-76x76.png">
<link rel=3D"apple-touch-icon" sizes=3D"114x114" href=3D"https://docs.e=
thplorer.io/icons-29d214c3/apple-touch-icon-114x114.png">
<link rel=3D"apple-touch-icon" sizes=3D"120x120" href=3D"https://docs.e=
thplorer.io/icons-29d214c3/apple-touch-icon-120x120.png">
<link rel=3D"apple-touch-icon" sizes=3D"144x144" href=3D"https://docs.e=
thplorer.io/icons-29d214c3/apple-touch-icon-144x144.png">
<link rel=3D"apple-touch-icon" sizes=3D"152x152" href=3D"https://docs.e=
thplorer.io/icons-29d214c3/apple-touch-icon-152x152.png">
<link rel=3D"apple-touch-icon" sizes=3D"180x180" href=3D"https://docs.e=
thplorer.io/icons-29d214c3/apple-touch-icon-180x180.png">
<meta name=3D"apple-mobile-web-app-capable" content=3D"yes">
<meta name=3D"apple-mobile-web-app-status-bar-style" content=3D"black-t=
ranslucent">
<meta name=3D"apple-mobile-web-app-title" content=3D"Ethplorer">
<link rel=3D"icon" type=3D"image/png" sizes=3D"32x32" href=3D"https://d=
ocs.ethplorer.io/icons-29d214c3/favicon-32x32.png">
<link rel=3D"icon" type=3D"image/png" sizes=3D"16x16" href=3D"https://d=
ocs.ethplorer.io/icons-29d214c3/favicon-16x16.png">
<link rel=3D"shortcut icon" href=3D"https://docs.ethplorer.io/icons-29d=
214c3/favicon.ico">
<link href=3D"https://docs.ethplorer.io/css/style-852cf982bfbdc68ab8ee.=
css" rel=3D"stylesheet">
<link rel=3D"stylesheet" type=3D"text/css" href=3D"https://docs.ethplorer=
.io/api/widget.css?v=3D24"></head>
<body class=3D"d-flex flex-column h-100" data-page=3D"docs">
<nav class=3D"navbar navbar-light navbar-expand-lg flex-shrink-0">
<div class=3D"container">
<div class=3D"d-flex align-items-start align-items-sm-center flex-c=
olumn flex-sm-row brand-logo-order"><a class=3D"navbar-brand back-history" =
href=3D"https://ethplorer.io/"><img src=3D"https://docs.ethplorer.io/images=
/6c4011bd34a5c4564973bea662033b56.png" class=3D"navbar-brand-logo" decoding=
=3D"async" importance=3D"low" alt=3D"Ethplorer"></a>
<div class=3D"d-flex align-items-center mt-1 mt-sm-0 navbar-brand=
-extra">
<div class=3D"dropdown switch-env d-none d-sm-inline-flex"><but=
ton type=3D"button" class=3D"btn btn-sm switch-env-control" id=3D"dropdownM=
enuButton" data-toggle=3D"dropdown" data-offset=3D"10,20" aria-haspopup=3D"=
true" aria-expanded=3D"false"><svg aria-hidden=3D"true" focusable=3D"false"=
data-prefix=3D"far" data-icon=3D"angle-down" role=3D"img" xmlns=3D"http://=
www.w3.org/2000/svg" viewBox=3D"0 0 320 512" width=3D"10">
<path fill=3D"currentColor" d=3D"M151.5 347.8L3.5 201c-4.=
7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4=
.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12=
.3 4.7-17 0z"></path>
</svg></button>
<div class=3D"dropdown-menu switch-env-menu" aria-labelledby=
=3D"dropdownMenuButton">
<h6 class=3D"dropdown-header">See also:</h6><a class=3D"dro=
pdown-item text-secondary" href=3D"https://kovan.ethplorer.io/" target=3D"_=
blank" data-ga=3D"navigation:click:kovan"><img src=3D"https://docs.ethplore=
r.io/images/6c4011bd34a5c4564973bea662033b56.png" decoding=3D"async" import=
ance=3D"low" alt=3D"Kovan" height=3D"16" width=3D"96" class=3D"mr-2"> <span=
class=3D"badge badge-red-15 text-red font-weight-normal px-2 py-1 mr-2">Ko=
van testnet </span><span class=3D"icon"><svg class=3D"d-block" width=3D"12"=
role=3D"img" xmlns=3D"http://www.w3.org/2000/svg" viewBox=3D"0 0 512 512">
<path fill=3D"currentColor" d=3D"M432,288H416a16,16,0=
,0,0-16,16V458a6,6,0,0,1-6,6H54a6,6,0,0,1-6-6V118a6,6,0,0,1,6-6H208a16,16,0=
,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H=
400a48,48,0,0,0,48-48V304A16,16,0,0,0,432,288ZM500,0H364a12,12,0,0,0-8.48,2=
0.48l48.19,48.21L131.51,340.89a12,12,0,0,0,0,17l22.63,22.63a12,12,0,0,0,17,=
0l272.2-272.21,48.21,48.2A12,12,0,0,0,512,148V12A12,12,0,0,0,500,0Z"></path=
>
</svg> </span> </a><a class=3D"dropdown-item text=
-secondary" href=3D"https://indiem.info/" target=3D"_blank" data-ga=3D"navi=
gation:click:inlibra"><img src=3D"https://docs.ethplorer.io/images/812b00c0=
69274b621ce0dd0aaa942c78.png" decoding=3D"async" importance=3D"low" alt=3D"=
InDiem" height=3D"22" class=3D"mr-2"> <span class=3D"icon"><svg class=3D"d-=
block" width=3D"12" role=3D"img" xmlns=3D"http://www.w3.org/2000/svg" viewB=
ox=3D"0 0 512 512">
<path fill=3D"currentColor" d=3D"M432,288H416a16,16,0=
,0,0-16,16V458a6,6,0,0,1-6,6H54a6,6,0,0,1-6-6V118a6,6,0,0,1,6-6H208a16,16,0=
,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H=
400a48,48,0,0,0,48-48V304A16,16,0,0,0,432,288ZM500,0H364a12,12,0,0,0-8.48,2=
0.48l48.19,48.21L131.51,340.89a12,12,0,0,0,0,17l22.63,22.63a12,12,0,0,0,17,=
0l272.2-272.21,48.21,48.2A12,12,0,0,0,512,148V12A12,12,0,0,0,500,0Z"></path=
>
</svg> </span> </a>
</div>
</div>
</div>
</div><button type=3D"button" class=3D"navbar-toggler navbar-toggle=
r-order" data-toggle=3D"collapse" data-target=3D"#navbar" aria-controls=3D"=
navbar" aria-expanded=3D"false" aria-label=3D"Toggle navigation"><span clas=
s=3D"navbar-toggler-icon"></span></button>
<div id=3D"navbar" class=3D"collapse navbar-collapse navbar-collaps=
e-order">
<form id=3D"nav-search-form-menu" class=3D"nav-search-form d-flex=
d-lg-none form-inline my-3" action=3D"https://docs.ethplorer.io/search/" m=
ethod=3D"POST" novalidate=3D"" data-ga=3D"navHeader:submit:search" data-sug=
gest=3D"">
<div class=3D"input-group flex-grow-1 shadow-sm-inner flex-nowr=
ap rounded"><input type=3D"text" name=3D"data" class=3D"form-control border=
-right-0 ui-autocomplete-input" placeholder=3D"Token name or symbol / addre=
ss / tx hash / tag / note" aria-label=3D"Search" autocomplete=3D"off" requi=
red=3D"">
<div class=3D"input-group-append"><button type=3D"submit" cla=
ss=3D"btn btn-link input-group-text border-left-0 text-secondary"><i class=
=3D"fas fa-search"></i></button></div>
</div>
</form>
<ul class=3D"navbar-nav my-3 my-lg-0 mr-lg-2 text-nowrap">
<li class=3D"nav-item dropdown"><a class=3D"nav-link dropdown-t=
oggle" data-ga=3D"navHeader:click:tokens" id=3D"navbar-dropdown-tokens" hre=
f=3D"https://docs.ethplorer.io/monitor#" data-toggle=3D"dropdown" aria-hasp=
opup=3D"true" aria-expanded=3D"false"><span class=3D"position-relative">Tok=
ens<sup class=3D"account-menu-new">New</sup></span></a>
<div class=3D"dropdown-menu dropdown-menu-lg-right mb-3" aria=
-labelledby=3D"navbar-dropdown-tokens"><a class=3D"dropdown-item" data-ga=
=3D"navHeader:click:top" href=3D"https://ethplorer.io/top?from=3Detop">Top =
tokens by Cap/Trade/Operations </a><a class=3D"dropdown-item align-items-ba=
seline" data-ga=3D"navHeader:click:newTokens" href=3D"https://ethplorer.io/=
tokens-new?from=3Detop"><span class=3D"position-relative">New tradable toke=
ns<sup class=3D"account-menu-new">New</sup></span></a></div>
</li>
<li class=3D"nav-item"><a class=3D"nav-link" data-ga=3D"navHead=
er:click:index" href=3D"https://ethplorer.io/index?from=3Detop">Capitalizat=
ion</a></li>
<li class=3D"nav-item"><a class=3D"nav-link" data-ga=3D"navHead=
er:click:last" href=3D"https://ethplorer.io/last?from=3Detop">Last Tx</a></=
li>
<li class=3D"nav-item"><a class=3D"nav-link" data-ga=3D"navHead=
er:click:api" href=3D"https://github.com/EverexIO/Ethplorer/wiki/Ethplorer-=
API" target=3D"_blank" rel=3D"noopener nofollow">API</a></li>
<li class=3D"nav-item dropdown"><a class=3D"nav-link dropdown-t=
oggle" data-ga=3D"navHeaderMore:click:more" id=3D"navbar-dropdown" href=3D"=
https://docs.ethplorer.io/monitor#" data-toggle=3D"dropdown" aria-haspopup=
=3D"true" aria-expanded=3D"false">More</a>
<div class=3D"dropdown-menu dropdown-menu-lg-right mb-3" aria=
-labelledby=3D"navbar-dropdown"><a class=3D"dropdown-item" data-ga=3D"navHe=
aderMore:click:tags" href=3D"https://ethplorer.io/account#!/tags">My Addres=
ses/TXs </a><a class=3D"dropdown-item align-items-baseline" data-ga=3D"navH=
eaderMore:click:apiPanel" href=3D"https://docs.ethplorer.io/wallet/#screen=
=3Dapi&lang=3Den"><span class=3D"position-relative">API Panel<sup class=
=3D"account-menu-new">New</sup></span></a>
<div class=3D"dropdown-divider"></div><a class=3D"dropdown-=
item" data-ga=3D"navHeaderMore:click:knowledge_base" href=3D"https://ethplo=
rer.zendesk.com/" target=3D"_blank" rel=3D"noopener nofollow">Knowledge Bas=
e </a><a class=3D"dropdown-item" data-ga=3D"navHeaderMore:click:api" href=
=3D"https://github.com/EverexIO/Ethplorer/wiki/Ethplorer-API" target=3D"_bl=
ank" rel=3D"noopener nofollow">API </a><a class=3D"dropdown-item" data-ga=
=3D"navHeaderMore:click:widgets" href=3D"https://ethplorer.io/widgets?from=
=3Dehomefoot">Widgets</a>
<div class=3D"dropdown-divider"></div><a class=3D"dropdown-=
item" data-ga=3D"navHeaderMore:click:twitter" href=3D"https://twitter.com/e=
thplorer" target=3D"_blank" rel=3D"noopener nofollow">Twitter </a><a class=
=3D"dropdown-item" data-ga=3D"navHeaderMore:click:subscribe" href=3D"https:=
//docs.ethplorer.io/monitor#subscribe" data-toggle=3D"modal" data-target=3D=
"#modal-subscribe">Subscribe </a><a class=3D"dropdown-item" data-ga=3D"navH=
eaderMore:click:reddit" href=3D"https://www.reddit.com/r/ethplorer/" target=
=3D"_blank" rel=3D"noopener nofollow">Reddit</a>
<div class=3D"dropdown-divider"></div><a class=3D"dropdown-=
item" data-ga=3D"navHeaderMore:click:update_token_info" href=3D"http://bit.=
ly/ethp-contact" target=3D"_blank" rel=3D"noopener nofollow">Update your To=
ken info </a><a class=3D"dropdown-item" data-ga=3D"navHeaderMore:click:feed=
back" href=3D"https://ethplorer.zendesk.com/hc/en-us/community/topics" targ=
et=3D"_blank" rel=3D"noopener nofollow">Feedback </a><a class=3D"dropdown-i=
tem" data-ga=3D"navHeaderMore:click:contact" href=3D"http://bit.ly/ethp-con=
tact" target=3D"_blank" rel=3D"noopener nofollow">Contact </a><a class=3D"d=
ropdown-item" data-ga=3D"navFooter:click:posts" href=3D"https://ethplorer.i=
o/posts">Updates</a>
</div>
</li>
</ul>
<div class=3D"dropdown switch-env switch-env__inline d-lg-none">
<div class=3D"dropdown-menu switch-env-menu" aria-labelledby=3D=
"dropdownMenuButton">
<h6 class=3D"dropdown-header">See also:</h6><a class=3D"dropd=
own-item text-secondary" href=3D"https://kovan.ethplorer.io/" target=3D"_bl=
ank" data-ga=3D"navigation:click:kovan"><img src=3D"https://docs.ethplorer.=
io/images/6c4011bd34a5c4564973bea662033b56.png" decoding=3D"async" importan=
ce=3D"low" alt=3D"Kovan" height=3D"16" width=3D"96" class=3D"mr-2"> <span c=
lass=3D"badge badge-red-15 text-red font-weight-normal px-2 py-1 mr-2">Kova=
n testnet </span><span class=3D"icon"><svg class=3D"d-block" width=3D"12" r=
ole=3D"img" xmlns=3D"http://www.w3.org/2000/svg" viewBox=3D"0 0 512 512">
<path fill=3D"currentColor" d=3D"M432,288H416a16,16,0,0=
,0-16,16V458a6,6,0,0,1-6,6H54a6,6,0,0,1-6-6V118a6,6,0,0,1,6-6H208a16,16,0,0=
,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H40=
0a48,48,0,0,0,48-48V304A16,16,0,0,0,432,288ZM500,0H364a12,12,0,0,0-8.48,20.=
48l48.19,48.21L131.51,340.89a12,12,0,0,0,0,17l22.63,22.63a12,12,0,0,0,17,0l=
272.2-272.21,48.21,48.2A12,12,0,0,0,512,148V12A12,12,0,0,0,500,0Z"></path>
</svg> </span> </a><a class=3D"dropdown-item text-s=
econdary" href=3D"https://indiem.info/" target=3D"_blank" data-ga=3D"naviga=
tion:click:inlibra"><img src=3D"https://docs.ethplorer.io/images/812b00c069=
274b621ce0dd0aaa942c78.png" decoding=3D"async" importance=3D"low" alt=3D"In=
Diem" height=3D"22" class=3D"mr-2"> <span class=3D"icon"><svg class=3D"d-bl=
ock" width=3D"12" role=3D"img" xmlns=3D"http://www.w3.org/2000/svg" viewBox=
=3D"0 0 512 512">
<path fill=3D"currentColor" d=3D"M432,288H416a16,16,0,0=
,0-16,16V458a6,6,0,0,1-6,6H54a6,6,0,0,1-6-6V118a6,6,0,0,1,6-6H208a16,16,0,0=
,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H40=
0a48,48,0,0,0,48-48V304A16,16,0,0,0,432,288ZM500,0H364a12,12,0,0,0-8.48,20.=
48l48.19,48.21L131.51,340.89a12,12,0,0,0,0,17l22.63,22.63a12,12,0,0,0,17,0l=
272.2-272.21,48.21,48.2A12,12,0,0,0,512,148V12A12,12,0,0,0,500,0Z"></path>
</svg> </span> </a>
</div>
</div>
<form id=3D"nav-search-form" class=3D"nav-search-form d-none d-lg=
-flex form-inline p-1 my-n1" action=3D"https://docs.ethplorer.io/search/" m=
ethod=3D"POST" novalidate=3D"" data-ga=3D"navHeader:submit:search" data-sug=
gest=3D"">
<div class=3D"input-group input-group-reset flex-grow-1"><input=
type=3D"text" name=3D"data" class=3D"form-control rounded-lg ui-autocomple=
te-input" placeholder=3D"Token name or symbol / address / tx hash / tag / n=
ote" aria-label=3D"Search" autocomplete=3D"off" required=3D"">
<div class=3D"input-group-append input-group-reset-button"><b=
utton class=3D"btn input-group-reset-button-control" type=3D"button"><span =
aria-hidden=3D"true">=C3=97</span></button></div>
</div>
</form>
</div><button id=3D"nav-search-form-toggle" class=3D"btn d-none d-l=
g-inline-block nav-link nav-search-form-toggle-order" data-ga=3D"navHeader:=
click:search"><i class=3D"fas fa-search"></i></button>
<div class=3D"d-inline-block profile-menu-order">
<div class=3D"dropdown nav-account-auth"><a class=3D"btn nav-link=
account-dropdown-menu" href=3D"https://docs.ethplorer.io/monitor#" role=3D=
"button" data-toggle=3D"dropdown" aria-haspopup=3D"true" aria-expanded=3D"f=
alse"><span class=3D"text-nowrap"><i class=3D"fas fa-user-circle user-statu=
s"></i> <sup class=3D"account-menu-new ml-0">New</sup></span></a>
<div class=3D"dropdown-menu dropdown-menu-right"><a class=3D"dr=
opdown-item account-visible-block back-history" href=3D"https://ethplorer.i=
o/" data-ga=3D"navHeaderAccount:click:ethplorer_back">Back to Ethplorer</a>
<div class=3D"dropdown-divider account-visible-block"></div><=
a class=3D"dropdown-item" href=3D"https://ethplorer.io/account#!/tags" data=
-ga=3D"navHeaderAccount:click:tags"><span class=3D"position-relative">My Ad=
dresses/TXs</span></a> <a class=3D"dropdown-item" href=3D"https://docs.ethp=
lorer.io/wallet/#screen=3Dprofile&lang=3Den" data-ga=3D"navHeaderAccoun=
t:click:profile">Profile</a> <a class=3D"dropdown-item align-items-baseline=
" href=3D"https://docs.ethplorer.io/wallet/#screen=3Dapi&lang=3Den" dat=
a-ga=3D"navHeaderAccount:click:apiPanel"><span class=3D"position-relative">=
API Panel<sup class=3D"account-menu-new">New</sup></span></a> <a class=3D"o=
nly-auth d-none dropdown-item align-items-center justify-content-between" h=
ref=3D"https://docs.ethplorer.io/wallet/#logout&lang=3Den" data-ga=3D"n=
avHeaderAccount:click:logout">Logout <i class=3D"fas fa-sign-out-alt fa-fw"=
></i></a> <a class=3D"only-noauth d-none dropdown-item disabled" data-ga=3D=
"navHeaderAccount:click:login" tabindex=3D"-1" aria-disabled=3D"true">Login=
/Signup</a>
</div>
</div>
</div>
</div>
</nav>
<main role=3D"main" class=3D"d-flex flex-column flex-fill flex-shrink-0=
position-relative">
<div id=3D"ethplorer-note" class=3D"alert alert-primary m-0 bg-primar=
y border-0 rounded-0 py-2 text-center text-light" role=3D"alert" style=3D"d=
isplay:none;"><div class=3D"ethplorer-note"></div></div>
<div id=3D"redoc-container"><div class=3D"sc-kiIAaw hkDXOr redoc-wrap=
"><div class=3D"sc-jtXFOG iDoAPg menu-content" style=3D"top: 0px; height: c=
alc(100vh - 0px);"><div role=3D"search" class=3D"sc-gslxyl yrhAb"><svg clas=
s=3D"sc-kmQMkS ftDwtd search-icon" version=3D"1.1" viewBox=3D"0 0 1000 1000=
" x=3D"0px" xmlns=3D"http://www.w3.org/2000/svg" y=3D"0px"><path d=3D"M968.=
2,849.4L667.3,549c83.9-136.5,66.7-317.4-51.7-435.6C477.1-25,252.5-25,113.9,=
113.4c-138.5,138.3-138.5,362.6,0,501C219.2,730.1,413.2,743,547.6,666.5l301.=
9,301.4c43.6,43.6,76.9,14.9,104.2-12.4C981,928.3,1011.8,893,968.2,849.4z M5=
24.5,522c-88.9,88.7-233,88.7-321.8,0c-88.9-88.7-88.9-232.6,0-321.3c88.9-88.=
7,233-88.7,321.8,0C613.4,289.4,613.4,433.3,524.5,522z"></path></svg><input =
placeholder=3D"Search..." aria-label=3D"Search" type=3D"text" class=3D"sc-a=
vfBU gTdVkJ search-input" value=3D""></div><div class=3D"sc-bBHHQT iVWrCP s=
crollbar-container undefined ps ps--active-y"><ul class=3D"sc-fHeRAw foYcaY=
" role=3D"navigation"><li data-item-id=3D"section/Introduction" class=3D"sc=
-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuitem" class=3D"sc-dkYRi=
W hArcGY -depth1"><span title=3D"Introduction" class=3D"sc-XxOsz khYPRO">In=
troduction</span></label></li><li data-item-id=3D"section/Quick-start" clas=
s=3D"sc-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuitem" class=3D"s=
c-dkYRiW hArcGY -depth1"><span title=3D"Quick start" class=3D"sc-XxOsz khYP=
RO">Quick start</span></label></li><li data-item-id=3D"section/Common-Use-C=
ases" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuitem" =
class=3D"sc-dkYRiW hArcGY -depth1"><span title=3D"Common Use Cases" class=
=3D"sc-XxOsz khYPRO">Common Use Cases</span><svg class=3D"sc-egiSv ekRynv" =
version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.org/20=
00/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"17.3 8.3 12 13.6 6.=
7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class=3D"sc-fH=
eRAw eJSjQl"><li data-item-id=3D"section/Common-Use-Cases/Track-transaction=
s-for-a-list-of-addresses" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"sectio=
n" role=3D"menuitem" class=3D"sc-dkYRiW eFtrIG -depth2"><span title=3D"Trac=
k transactions for a list of addresses" class=3D"sc-XxOsz khYPRO">Track tra=
nsactions for a list of addresses</span></label></li><li data-item-id=3D"se=
ction/Common-Use-Cases/Track-a-limited-number-of-tokens" class=3D"sc-dtDOJZ=
gpNMRA"><label type=3D"section" role=3D"menuitem" class=3D"sc-dkYRiW eFtrI=
G -depth2"><span title=3D"Track a limited number of tokens" class=3D"sc-XxO=
sz khYPRO">Track a limited number of tokens</span></label></li><li data-ite=
m-id=3D"section/Common-Use-Cases/Track-a-large-number-of-addresses-but-a-li=
mited-number-of-tokens" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"section" =
role=3D"menuitem" class=3D"sc-dkYRiW eFtrIG -depth2"><span title=3D"Track a=
large number of addresses but a limited number of tokens" class=3D"sc-XxOs=
z khYPRO">Track a large number of addresses but a limited number of tokens<=
/span></label></li></ul></li><li data-item-id=3D"section/Balances-and-rawBa=
lances-fields-explanation" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"sectio=
n" role=3D"menuitem" class=3D"sc-dkYRiW hArcGY -depth1"><span title=3D"Bala=
nces and rawBalances fields explanation" class=3D"sc-XxOsz khYPRO">Balances=
and rawBalances fields explanation</span><svg class=3D"sc-egiSv ekRynv" ve=
rsion=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.org/2000=
/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"17.3 8.3 12 13.6 6.7 =
8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></label><ul class=3D"sc-fHeR=
Aw eJSjQl"><li data-item-id=3D"section/Balances-and-rawBalances-fields-expl=
anation/balances-in-getPoolLastOperations" class=3D"sc-dtDOJZ gpNMRA"><labe=
l type=3D"section" role=3D"menuitem" class=3D"sc-dkYRiW eFtrIG -depth2"><sp=
an title=3D"balances in getPoolLastOperations" class=3D"sc-XxOsz khYPRO">ba=
lances in getPoolLastOperations</span></label></li><li data-item-id=3D"sect=
ion/Balances-and-rawBalances-fields-explanation/balances-in-getPoolLastTran=
sactions" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuit=
em" class=3D"sc-dkYRiW eFtrIG -depth2"><span title=3D"balances in getPoolLa=
stTransactions" class=3D"sc-XxOsz khYPRO">balances in getPoolLastTransactio=
ns</span></label></li></ul></li><li data-item-id=3D"section/Billing-and-lim=
its-for-the-API-monitor" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"section"=
role=3D"menuitem" class=3D"sc-dkYRiW hArcGY -depth1"><span title=3D"Billin=
g and limits for the API monitor" class=3D"sc-XxOsz khYPRO">Billing and lim=
its for the API monitor</span><svg class=3D"sc-egiSv ekRynv" version=3D"1.1=
" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.org/2000/svg" y=3D"0=
" aria-hidden=3D"true"><polygon points=3D"17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 =
12 16.4 18.7 9.7 "></polygon></svg></label><ul class=3D"sc-fHeRAw eJSjQl"><=
li data-item-id=3D"section/Billing-and-limits-for-the-API-monitor/Billing-p=
lans" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuitem" =
class=3D"sc-dkYRiW eFtrIG -depth2"><span title=3D"Billing plans" class=3D"s=
c-XxOsz khYPRO">Billing plans</span></label></li><li data-item-id=3D"sectio=
n/Billing-and-limits-for-the-API-monitor/Calculation-examples*" class=3D"sc=
-dtDOJZ gpNMRA"><label type=3D"section" role=3D"menuitem" class=3D"sc-dkYRi=
W eFtrIG -depth2"><span title=3D"Calculation examples*" class=3D"sc-XxOsz k=
hYPRO">Calculation examples*</span></label></li></ul></li><li data-item-id=
=3D"section/API-Servers-mainnettestnet" class=3D"sc-dtDOJZ gpNMRA"><label t=
ype=3D"section" role=3D"menuitem" class=3D"sc-dkYRiW hArcGY -depth1"><span =
title=3D"API Servers, mainnet/testnet" class=3D"sc-XxOsz khYPRO">API Server=
s, mainnet/testnet</span></label></li><li data-item-id=3D"tag/Bulk-API-Moni=
tor-Endpoints" class=3D"sc-dtDOJZ gpNMRA"><label type=3D"tag" role=3D"menui=
tem" class=3D"sc-dkYRiW hArcGY -depth1"><span title=3D"Bulk API Monitor End=
points" class=3D"sc-XxOsz khYPRO">Bulk API Monitor Endpoints</span><svg cla=
ss=3D"sc-egiSv eXDkEt" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=
=3D"http://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true"><polygon point=
s=3D"17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg></=
label><ul class=3D"sc-fHeRAw foYcaY"><li data-item-id=3D"tag/Bulk-API-Monit=
or-Endpoints/paths/~1createPool/post" class=3D"sc-dtDOJZ gpNMRA"><label rol=
e=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><span type=3D"post" class=
=3D"sc-evcjBb gKWQZW operation-type post">post</span><span width=3D"calc(10=
0% - 38px)" class=3D"sc-XxOsz jdyuMv">Create pool</span></label></li><li da=
ta-item-id=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1deletePool/post" class=
=3D"sc-dtDOJZ gpNMRA"><label role=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -d=
epth2"><span type=3D"post" class=3D"sc-evcjBb gKWQZW operation-type post">p=
ost</span><span width=3D"calc(100% - 38px)" class=3D"sc-XxOsz jdyuMv">Delet=
e pool</span></label></li><li data-item-id=3D"tag/Bulk-API-Monitor-Endpoint=
s/paths/~1addPoolAddresses/post" class=3D"sc-dtDOJZ gpNMRA"><label role=3D"=
menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><span type=3D"post" class=3D"s=
c-evcjBb gKWQZW operation-type post">post</span><span width=3D"calc(100% - =
38px)" class=3D"sc-XxOsz jdyuMv">Add addresses to the pool</span></label></=
li><li data-item-id=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1clearPoolAddr=
esses/post" class=3D"sc-dtDOJZ gpNMRA"><label role=3D"menuitem" class=3D"sc=
-dkYRiW lmjqcD -depth2 active"><span type=3D"post" class=3D"sc-evcjBb gKWQZ=
W operation-type post">post</span><span width=3D"calc(100% - 38px)" class=
=3D"sc-XxOsz jdyuMv">Clear pool</span></label></li><li data-item-id=3D"tag/=
Bulk-API-Monitor-Endpoints/paths/~1deletePoolAddresses/post" class=3D"sc-dt=
DOJZ gpNMRA"><label role=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><s=
pan type=3D"post" class=3D"sc-evcjBb gKWQZW operation-type post">post</span=
><span width=3D"calc(100% - 38px)" class=3D"sc-XxOsz jdyuMv">Remove address=
es from the pool</span></label></li><li data-item-id=3D"tag/Bulk-API-Monito=
r-Endpoints/paths/~1getPoolAddresses~1{poolId}/get" class=3D"sc-dtDOJZ gpNM=
RA"><label role=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><span type=
=3D"get" class=3D"sc-evcjBb gKWQZW operation-type get">get</span><span widt=
h=3D"calc(100% - 38px)" class=3D"sc-XxOsz jdyuMv">Get list of the pool addr=
esses</span></label></li><li data-item-id=3D"tag/Bulk-API-Monitor-Endpoints=
/paths/~1getPoolUpdates~1{poolId}/get" class=3D"sc-dtDOJZ gpNMRA"><label ro=
le=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><span type=3D"get" class=
=3D"sc-evcjBb gKWQZW operation-type get">get</span><span width=3D"calc(100%=
- 38px)" class=3D"sc-XxOsz jdyuMv">Get pool updates</span></label></li><li=
data-item-id=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1getPoolLastOperatio=
ns~1{poolId}/get" class=3D"sc-dtDOJZ gpNMRA"><label role=3D"menuitem" class=
=3D"sc-dkYRiW fEpzHo -depth2"><span type=3D"get" class=3D"sc-evcjBb gKWQZW =
operation-type get">get</span><span width=3D"calc(100% - 38px)" class=3D"sc=
-XxOsz jdyuMv">Get pool last operations</span></label></li><li data-item-id=
=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1getPoolLastTransactions~1{poolId=
}/get" class=3D"sc-dtDOJZ gpNMRA"><label role=3D"menuitem" class=3D"sc-dkYR=
iW fEpzHo -depth2"><span type=3D"get" class=3D"sc-evcjBb gKWQZW operation-t=
ype get">get</span><span width=3D"calc(100% - 38px)" class=3D"sc-XxOsz jdyu=
Mv">Get pool last transactions</span></label></li><li data-item-id=3D"tag/B=
ulk-API-Monitor-Endpoints/paths/~1getLastBlock/get" class=3D"sc-dtDOJZ gpNM=
RA"><label role=3D"menuitem" class=3D"sc-dkYRiW fEpzHo -depth2"><span type=
=3D"get" class=3D"sc-evcjBb gKWQZW operation-type get">get</span><span widt=
h=3D"calc(100% - 38px)" class=3D"sc-XxOsz jdyuMv">Get last block</span></la=
bel></li></ul></li></ul><div class=3D"sc-ilftOa Dltde"><a target=3D"_blank"=
rel=3D"noopener noreferrer" href=3D"https://github.com/Redocly/redoc">Docu=
mentation Powered by ReDoc</a></div><div class=3D"ps__rail-x" style=3D"left=
: 0px; bottom: -95px;"><div class=3D"ps__thumb-x" tabindex=3D"0" style=3D"l=
eft: 0px; width: 0px;"></div></div><div class=3D"ps__rail-y" style=3D"top: =
95px; right: 0px; height: 788px;"><div class=3D"ps__thumb-y" tabindex=3D"0"=
style=3D"top: 85px; height: 703px;"></div></div></div></div><div class=3D"=
sc-eldixR cJoVIX"><div class=3D"sc-dwsomb hLSBrP"><svg class=3D"" viewBox=
=3D"0 0 926.23699 573.74994" version=3D"1.1" x=3D"0px" y=3D"0px" width=3D"1=
5" height=3D"15" style=3D"transform: translate(2px, -4px) rotate(180deg); t=
ransition: transform 0.2s ease 0s;"><g transform=3D"translate(904.92214,-87=
9.1482)"><path d=3D"
m -673.67664,1221.6502 -231.2455,-231.24803 55.6165,
-55.627 c 30.5891,-30.59485 56.1806,-55.627 56.8701,-55.627 0.689=
4,
0 79.8637,78.60862 175.9427,174.68583 l 174.6892,174.6858 174.689=
2,
-174.6858 c 96.079,-96.07721 175.253196,-174.68583 175.942696,
-174.68583 0.6895,0 26.281,25.03215 56.8701,
55.627 l 55.6165,55.627 -231.245496,231.24803 c -127.185,127.1864
-231.5279,231.248 -231.873,231.248 -0.3451,0 -104.688,
-104.0616 -231.873,-231.248 z
" fill=3D"currentColor"></path></g></svg><svg class=3D"" viewBox=3D=
"0 0 926.23699 573.74994" version=3D"1.1" x=3D"0px" y=3D"0px" width=3D"15" =
height=3D"15" style=3D"transform: translate(2px, 4px); transition: transfor=
m 0.2s ease 0s;"><g transform=3D"translate(904.92214,-879.1482)"><path d=3D=
"
m -673.67664,1221.6502 -231.2455,-231.24803 55.6165,
-55.627 c 30.5891,-30.59485 56.1806,-55.627 56.8701,-55.627 0.689=
4,
0 79.8637,78.60862 175.9427,174.68583 l 174.6892,174.6858 174.689=
2,
-174.6858 c 96.079,-96.07721 175.253196,-174.68583 175.942696,
-174.68583 0.6895,0 26.281,25.03215 56.8701,
55.627 l 55.6165,55.627 -231.245496,231.24803 c -127.185,127.1864
-231.5279,231.248 -231.873,231.248 -0.3451,0 -104.688,
-104.0616 -231.873,-231.248 z
" fill=3D"currentColor"></path></g></svg></div></div><div class=3D"=
sc-cLpA-Dr bMDwOn api-content"><div class=3D"sc-eCImvq kVSpZg"><div class=
=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCoD cVhUsV api-info"><h1 class=3D"=
sc-furvIG sc-GEcJY gyqZiF eLjYMx">Bulk API Monitor Guide <span>(0.5.0)</spa=
n></h1><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM"></div><div class=3D=
"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM" data-role=3D"redoc-description"></div><=
/div></div></div><div id=3D"section/Introduction" data-section-id=3D"sectio=
n/Introduction" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><=
div class=3D"sc-hKwCoD cVhUsV"><h1 class=3D"sc-furvIG gyqZiF"><a class=3D"s=
c-crHlIS STZed" href=3D"https://docs.ethplorer.io/monitor#section/Introduct=
ion" aria-label=3D"section/Introduction"></a>Introduction</h1></div></div><=
div class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feH=
CRM redoc-markdown "><p>The Bulk API Monitor allows tracking unlimited numb=
er of ethereum tokens and addresses, even hundreds of thousands or millions=
. A minimal resources and coding is enough. Just inserting the addresses or=
contracts needed for monitoring into pools will return all operations rela=
ted to these addresses right after any transaction in them happens.</p>
<p>This tool is Ideal for wallets, address monitoring services, exchanges, =
airdrops and other services that work with a large number of blockchain add=
resses.</p>
<p><em>By using Ethplorer code fully or partially, API, widgets or any othe=
r service on your website or app you hereby agree with <a href=3D"https://e=
thplorer.io/privacy">Terms of Usage and Privacy Policy</a></em></p>
</div></div></div><div id=3D"section/Quick-start" data-section-id=3D"sectio=
n/Quick-start" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><d=
iv class=3D"sc-hKwCoD cVhUsV"><h1 class=3D"sc-furvIG gyqZiF"><a class=3D"sc=
-crHlIS STZed" href=3D"https://docs.ethplorer.io/monitor#section/Quick-star=
t" aria-label=3D"section/Quick-start"></a>Quick start</h1></div></div><div =
class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM =
redoc-markdown "><p><em>There is a <a href=3D"https://github.com/amilabs/et=
h-bulk-monitor-client-nodejs"><strong>nodeJS toolkit</strong></a> with whic=
h you can start using the Monitor easily. To do this, get an API key, initi=
alize the npm package and add the addresses you want to observe.</em>
<em>That's it! Now you get transactions as they occur at those addresses. T=
he toolkit does the background work for you.</em></p>
<p><em>In addition, you'll find basic code examples and even a workable exa=
mple of a</em> <a href=3D"https://github.com/amilabs/crypto-exchanger"><em>=
simple crypto exchanger implementation</em></a> <em>in the repository.</em>=
</p>
<pre><code><span class=3D"token comment">/**
* Bulk API Monitor client library basic usage example.
*/</span>
const <span class=3D"token punctuation">{</span> MonitorApp <span class=3D"=
token punctuation">}</span> <span class=3D"token operator">=3D</span> <span=
class=3D"token function">require</span><span class=3D"token punctuation">(=
</span><span class=3D"token string">'../index'</span><span class=3D"token p=
unctuation">)</span><span class=3D"token punctuation">;</span>
<span class=3D"token comment">/**
* Initialize client application.
*
* @type MonitorApp
*/</span>
const monitorApp <span class=3D"token operator">=3D</span> <span class=3D"t=
oken keyword">new</span> <span class=3D"token class-name">MonitorApp</span>=
<span class=3D"token punctuation">(</span><span class=3D"token string">'put=
your API key here'</span><span class=3D"token punctuation">)</span><span c=
lass=3D"token punctuation">;</span>
<span class=3D"token comment">/**
* Watch for the addresses new transactions/operations and print out any up=
date
*/</span>
monitorApp<span class=3D"token punctuation">.</span><span class=3D"token fu=
nction">init</span><span class=3D"token punctuation">(</span><span class=3D=
"token punctuation">[</span>
<span class=3D"token string">'0x000000000000000000000000000000000000000=
1'</span><span class=3D"token punctuation">,</span>
<span class=3D"token string">'0x000000000000000000000000000000000000000=
2'</span><span class=3D"token punctuation">,</span>
<span class=3D"token string">'0x000000000000000000000000000000000000000=
3'</span>
<span class=3D"token punctuation">]</span><span class=3D"token punctuation"=
>)</span><span class=3D"token punctuation">.</span><span class=3D"token fun=
ction">then</span><span class=3D"token punctuation">(</span><span class=3D"=
token punctuation">(</span><span class=3D"token punctuation">)</span> <span=
class=3D"token operator">=3D</span><span class=3D"token operator">></sp=
an> monitorApp<span class=3D"token punctuation">.</span><span class=3D"toke=
n function">watch</span><span class=3D"token punctuation">(</span><span cla=
ss=3D"token punctuation">(</span>data<span class=3D"token punctuation">)</s=
pan> <span class=3D"token operator">=3D</span><span class=3D"token operator=
">></span> console<span class=3D"token punctuation">.</span><span class=
=3D"token function">log</span><span class=3D"token punctuation">(</span>dat=
a<span class=3D"token punctuation">)</span><span class=3D"token punctuation=
">)</span><span class=3D"token punctuation">.</span><span class=3D"token ke=
yword">catch</span><span class=3D"token punctuation">(</span><span class=3D=
"token punctuation">(</span>err<span class=3D"token punctuation">)</span> <=
span class=3D"token operator">=3D</span><span class=3D"token operator">>=
</span> console<span class=3D"token punctuation">.</span><span class=3D"tok=
en function">log</span><span class=3D"token punctuation">(</span>err<span c=
lass=3D"token punctuation">)</span><span class=3D"token punctuation">)</spa=
n><span class=3D"token punctuation">)</span><span class=3D"token punctuatio=
n">;</span></code></pre></div></div></div><div id=3D"section/Common-Use-Cas=
es" data-section-id=3D"section/Common-Use-Cases" class=3D"sc-eCImvq kVSpZg"=
><div class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCoD cVhUsV"><h1 class=
=3D"sc-furvIG gyqZiF"><a class=3D"sc-crHlIS STZed" href=3D"https://docs.eth=
plorer.io/monitor#section/Common-Use-Cases" aria-label=3D"section/Common-Us=
e-Cases"></a>Common Use Cases</h1></div></div></div><div id=3D"section/Comm=
on-Use-Cases/Track-transactions-for-a-list-of-addresses" data-section-id=3D=
"section/Common-Use-Cases/Track-transactions-for-a-list-of-addresses" class=
=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCo=
D cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc-crHlIS STZed" href=
=3D"https://docs.ethplorer.io/monitor#section/Common-Use-Cases/Track-transa=
ctions-for-a-list-of-addresses" aria-label=3D"section/Common-Use-Cases/Trac=
k-transactions-for-a-list-of-addresses"></a>Track transactions for a list o=
f addresses</h2></div></div><div class=3D"sc-hKwCoD gZlYXm"><div class=3D"s=
c-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc-markdown "><ul>
<li>Create a pool with your API key, save pool-id.</li>
<li>Add addresses to the pool using pool-id (you may also do it at same req=
uest with the pool creation).</li>
<li>Ask getPoolLastOperations every minute and set the period to 2-5 minute=
s to avoid missing any operations.<ul>
<li>You will receive all ERC20 token operations for any address in the pool=
for the specified time period.</li>
<li>Skip operations with blocks you processed before.</li>
<li>Transaction will return token value of operation, token balance of the =
address and contract address of the ERC20 token.</li>
<li>Keep the block numbers or operation=E2=80=99s hashes to avoid duplicate=
s.</li>
<li>Request any additional info about the address or token using general AP=
I if necessary.</li>
<li>Caching contract information is recommended.</li>
</ul>
</li>
<li>If you need to also monitor ETH transactions, then ask getPoolLastTrans=
actions every minute and set the period to 2-5 minutes to avoid missing tra=
nsactions.<ul>
<li>Make same steps as with ERC20 operations, but with ETH balances.</li>
</ul>
</li>
<li>Add new address or delete existing one from the pool if necessary.</li>
<li>If you missed some time period of monitoring you may request a wider ti=
me range using larger period value. It=E2=80=99s not recommended to do it w=
ithout a reason.</li>
</ul>
</div></div></div><div id=3D"section/Common-Use-Cases/Track-a-limited-numbe=
r-of-tokens" data-section-id=3D"section/Common-Use-Cases/Track-a-limited-nu=
mber-of-tokens" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><=
div class=3D"sc-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc=
-crHlIS STZed" href=3D"https://docs.ethplorer.io/monitor#section/Common-Use=
-Cases/Track-a-limited-number-of-tokens" aria-label=3D"section/Common-Use-C=
ases/Track-a-limited-number-of-tokens"></a>Track a limited number of tokens=
</h2></div></div><div class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc=
-cNKpQo jRMZyJ feHCRM redoc-markdown "><p>Add the contract addresses of obs=
erved tokens to the pool using your API key and pool-id. Let=E2=80=99s call=
it General List. Once done, you will see ALL operations related to these t=
okens for all addresses regardless if these addresses were added to the poo=
l.</p>
</div></div></div><div id=3D"section/Common-Use-Cases/Track-a-large-number-=
of-addresses-but-a-limited-number-of-tokens" data-section-id=3D"section/Com=
mon-Use-Cases/Track-a-large-number-of-addresses-but-a-limited-number-of-tok=
ens" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=
=3D"sc-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc-crHlIS S=
TZed" href=3D"https://docs.ethplorer.io/monitor#section/Common-Use-Cases/Tr=
ack-a-large-number-of-addresses-but-a-limited-number-of-tokens" aria-label=
=3D"section/Common-Use-Cases/Track-a-large-number-of-addresses-but-a-limite=
d-number-of-tokens"></a>Track a large number of addresses but a limited num=
ber of tokens</h2></div></div><div class=3D"sc-hKwCoD gZlYXm"><div class=3D=
"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc-markdown "><p>If you have a number=
of addresses where you want to track all their token operations (not only =
those from the General List), you can manually add them to the same pool wh=
ere the General List is stored. (No need to add addresses included in Gener=
al List). As result, you will get all operations for the General List token=
s and all operations for non-General list addresses, regardless of what tok=
en they have.</p>
</div></div></div><div id=3D"section/Balances-and-rawBalances-fields-explan=
ation" data-section-id=3D"section/Balances-and-rawBalances-fields-explanati=
on" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=3D=
"sc-hKwCoD cVhUsV"><h1 class=3D"sc-furvIG gyqZiF"><a class=3D"sc-crHlIS STZ=
ed" href=3D"https://docs.ethplorer.io/monitor#section/Balances-and-rawBalan=
ces-fields-explanation" aria-label=3D"section/Balances-and-rawBalances-fiel=
ds-explanation"></a>Balances and rawBalances fields explanation</h1></div><=
/div><div class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZ=
yJ feHCRM redoc-markdown "><p>Each record in <code>getPoolLastOperations</c=
ode> and <code>getPoolLastTransactions</code> methods output has <code>bala=
nces</code> and <code>rawBalances</code> fields.</p>
<p>Both fields contain the actual balances of the addresses involved in the=
corresponding record. Field <code>balances</code> uses float type for the =
values. It is easy to use and does not require complex calculations with bi=
g numbers. But you should understand that it is accurate up to 15 significa=
nt digits only (depends on language).</p>
<p>If you need an exact value for a function like =E2=80=9Csend all=E2=80=
=9D, you should use <code>rawBalances</code> field and operate with big num=
bers.</p>
</div></div></div><div id=3D"section/Balances-and-rawBalances-fields-explan=
ation/balances-in-getPoolLastOperations" data-section-id=3D"section/Balance=
s-and-rawBalances-fields-explanation/balances-in-getPoolLastOperations" cla=
ss=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKw=
CoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc-crHlIS STZed" href=
=3D"https://docs.ethplorer.io/monitor#section/Balances-and-rawBalances-fiel=
ds-explanation/balances-in-getPoolLastOperations" aria-label=3D"section/Bal=
ances-and-rawBalances-fields-explanation/balances-in-getPoolLastOperations"=
></a>balances in getPoolLastOperations</h2></div></div><div class=3D"sc-hKw=
CoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc-markdown =
"><p><code>balances</code>: Contains float non-zero values of the token bal=
ances for the operation=E2=80=99s <code>from</code> and <code>to</code> add=
resses. You still need to divide them on token decimals count to get the re=
al token balances for the addresses.</p>
<p><code>rawBalances</code>: Contains raw string values of the token balanc=
es for the operation's <code>from</code> and <code>to</code> addresses. You=
still need to divide them on the corresponding token decimals count to get=
the real token balances.</p>
</div></div></div><div id=3D"section/Balances-and-rawBalances-fields-explan=
ation/balances-in-getPoolLastTransactions" data-section-id=3D"section/Balan=
ces-and-rawBalances-fields-explanation/balances-in-getPoolLastTransactions"=
class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc=
-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc-crHlIS STZed" =
href=3D"https://docs.ethplorer.io/monitor#section/Balances-and-rawBalances-=
fields-explanation/balances-in-getPoolLastTransactions" aria-label=3D"secti=
on/Balances-and-rawBalances-fields-explanation/balances-in-getPoolLastTrans=
actions"></a>balances in getPoolLastTransactions</h2></div></div><div class=
=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc=
-markdown "><p><code>balances</code>: Contains float values of the Ethereum=
balances for the transaction's <code>from</code> and <code>to</code> addre=
sses. These values are in ETH.</p>
<p><code>rawBalances</code>: Contains raw string values of the Ethereum bal=
ances for the transaction's <code>from</code> and <code>to</code> addresses=
. These values are in WEI, and you'll need to divide them on 10^18 to get t=
he ETH balances.</p>
</div></div></div><div id=3D"section/Billing-and-limits-for-the-API-monitor=
" data-section-id=3D"section/Billing-and-limits-for-the-API-monitor" class=
=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCo=
D cVhUsV"><h1 class=3D"sc-furvIG gyqZiF"><a class=3D"sc-crHlIS STZed" href=
=3D"https://docs.ethplorer.io/monitor#section/Billing-and-limits-for-the-AP=
I-monitor" aria-label=3D"section/Billing-and-limits-for-the-API-monitor"></=
a>Billing and limits for the API monitor</h1></div></div><div class=3D"sc-h=
KwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc-markdow=
n "><p><em>* tick =3D credit point</em></p>
<p>There are a few things to know about how your API key is billed:</p>
<ul>
<li>Transactions tracked in your pools: 1 tick for each found.</li>
<li>Calculation of the maximal number of addresses and contracts in your po=
ols per day: 1 tick per 5 addresses daily (whole or not)</li>
<li>Creating a pool: 100 ticks per each</li>
<li>Put address or contract into a pool: 10 ticks per address, 100 ticks pe=
r contract</li>
</ul>
<p>Note, that adding any popular contract (USDT for example) or address (ad=
dress of a popular exchange for example) to the pool will produce a lot of =
transactions and most likely burn your balance</p>
<p>Average daily count of transaction in Ethereum blockchain is 1,000k. Thi=
s is not the same for token operations, but this gives rough estimates of w=
hat the maximum costs might be.</p>
</div></div></div><div id=3D"section/Billing-and-limits-for-the-API-monitor=
/Billing-plans" data-section-id=3D"section/Billing-and-limits-for-the-API-m=
onitor/Billing-plans" class=3D"sc-eCImvq kVSpZg"><div class=3D"sc-iCfLBT Bv=
bdQ"><div class=3D"sc-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=
=3D"sc-crHlIS STZed" href=3D"https://docs.ethplorer.io/monitor#section/Bill=
ing-and-limits-for-the-API-monitor/Billing-plans" aria-label=3D"section/Bil=
ling-and-limits-for-the-API-monitor/Billing-plans"></a>Billing plans</h2></=
div></div><div class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo=
jRMZyJ feHCRM redoc-markdown "><p><strong>FREE:</strong> up to 1,000 ticks=
/month, 1 hour transaction history
<strong>Basic: $14.9</strong> up to 50,000 ticks/month, 1 day transaction h=
istory
<strong>Medium: $79</strong> up to 1,000,000 ticks/month, 5 days transactio=
n history
<strong>Advanced: $399</strong> up to 10,000,000 ticks/month, 10 days trans=
action history
<strong>Ultimate: $699</strong> up to 100,000,000 ticks/month, 30 days tran=
saction history</p>
</div></div></div><div id=3D"section/Billing-and-limits-for-the-API-monitor=
/Calculation-examples*" data-section-id=3D"section/Billing-and-limits-for-t=
he-API-monitor/Calculation-examples*" class=3D"sc-eCImvq kVSpZg"><div class=
=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma =
ccQgNU"><a class=3D"sc-crHlIS STZed" href=3D"https://docs.ethplorer.io/moni=
tor#section/Billing-and-limits-for-the-API-monitor/Calculation-examples*" a=
ria-label=3D"section/Billing-and-limits-for-the-API-monitor/Calculation-exa=
mples*"></a>Calculation examples*</h2></div></div><div class=3D"sc-hKwCoD g=
ZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM redoc-markdown "><p>=
<strong>Tracking 50 addresses</strong> which produce about <strong>500 tran=
sactions</strong>
Transactions charge: 500 ticks
Pool charge: 50/5 * 30 days =3D 300 ticks
<strong>Monthly amount</strong>: 500 + 300 =3D <strong>800 ticks</strong></=
p>
<p><strong>Tracking 1,000 addresses</strong> which produce about <strong>40=
,000 transactions</strong>
Transactions charge: 40,000 ticks
Pool charge: 1,000/5 * 30 days =3D 6,000 ticks
<strong>Monthly amount</strong>: 40,000 + 6,000 =3D <strong>46,000 ticks</s=
trong></p>
<p><strong>Tracking 100,000 of addresses</strong> which produces about <str=
ong>300,000 transactions</strong>
Transactions charge: 300,000 ticks
Pool charge: 100,000/5 * 30 days =3D 600,000 ticks
<strong>Monthly amount</strong>: 300,000 + 600,000 =3D <strong>900,000 tick=
s</strong></p>
<p><strong>Tracking 1,000,000 of addresses</strong> which produces about <s=
trong>3,000,000 transactions</strong>
Transactions charge: 3,000,000 ticks
Pool charge: 1,000,000/5 * 30 days =3D 6,000,000 ticks
<strong>Monthly amount</strong>: 3,000,000 + 6,000,000 =3D <strong>9,000,00=
0 ticks</strong></p>
<p><strong>Tracking 1,000,000 of addresses</strong> which produces about <s=
trong>30,000,000 transactions</strong>
Transactions charge: 30,000,000 ticks
Pool charge: 1,000,000/5 * 30 days =3D 6,000,000 ticks
<strong>Monthly amount</strong>: 30,000,000 + 6,000,000 =3D <strong>36,000=
,000 ticks</strong></p>
<p><em>* the above fee estimations does not include creating pools and addr=
ess changes within the pools.</em></p>
</div></div></div><div id=3D"section/API-Servers-mainnettestnet" data-secti=
on-id=3D"section/API-Servers-mainnettestnet" class=3D"sc-eCImvq kVSpZg"><di=
v class=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCoD cVhUsV"><h1 class=3D"sc=
-furvIG gyqZiF"><a class=3D"sc-crHlIS STZed" href=3D"https://docs.ethplorer=
.io/monitor#section/API-Servers-mainnettestnet" aria-label=3D"section/API-S=
ervers-mainnettestnet"></a>API Servers, mainnet/testnet</h1></div></div><di=
v class=3D"sc-hKwCoD gZlYXm"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCR=
M redoc-markdown "><p>Target domains:
<a href=3D"https://api-mon.ethplorer.io/">https://api-mon.ethplorer.io/</a>=
for mainnet;
<a href=3D"https://kovan-api-mon.ethplorer.io/">https://kovan-api-mon.ethpl=
orer.io/</a> for testnet (Kovan).</p>
<p>Pools databases are individual for each type of network.</p>
<p>Each request should have a mandatory apiKey parameter.</p>
</div></div></div><div id=3D"tag/Bulk-API-Monitor-Endpoints" data-section-i=
d=3D"tag/Bulk-API-Monitor-Endpoints" class=3D"sc-eCImvq kVSpZg"><div class=
=3D"sc-iCfLBT BvbdQ"><div class=3D"sc-hKwCoD cVhUsV"><h1 class=3D"sc-furvIG=
gyqZiF"><a class=3D"sc-crHlIS STZed" href=3D"https://docs.ethplorer.io/mon=
itor#tag/Bulk-API-Monitor-Endpoints" aria-label=3D"tag/Bulk-API-Monitor-End=
points"></a>Bulk API Monitor Endpoints</h1></div></div></div><div id=3D"tag=
/Bulk-API-Monitor-Endpoints/paths/~1createPool/post" data-section-id=3D"tag=
/Bulk-API-Monitor-Endpoints/paths/~1createPool/post" class=3D"sc-eCImvq hWN=
Hn"><div class=3D"sc-iCfLBT sc-eWfWgB BvbdQ jwdikc"><div class=3D"sc-hKwCoD=
cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a class=3D"sc-crHlIS STZed" href=3D=
"https://docs.ethplorer.io/monitor#tag/Bulk-API-Monitor-Endpoints/paths/~1c=
reatePool/post" aria-label=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1create=
Pool/post"></a>Create pool </h2><div class=3D"sc-kTLnJg cEaBRI"><div class=
=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM"><p>Create a new pool</p>
<p>The pool will be automatically removed if there were no get requests to =
the pool for 7 days.</p>
</div></div><h5 class=3D"sc-iqsfdx dONVW">Request Body schema: <span class=
=3D"sc-jcFkyM ihvgJG">application/x-www-form-urlencoded</span></h5><div cla=
ss=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM"></div><table class=3D"sc-hGPAah kU=
YIEQ"><tbody><tr><td class=3D"sc-hBURRC sc-fFehDp gYJgeU ffwWXK" kind=3D"fi=
eld" title=3D"apiKey"><span class=3D"sc-ieebsP hEleNJ"></span><span>apiKey<=
/span><div class=3D"sc-TBWwm sc-jIkYaL gtdhUK fLAEHx"> required </div></td>=
<td class=3D"sc-bkkfTU kXGMaB"><div><div><span class=3D"sc-faUofl sc-GamvQ =
lixDDm grOQBI"></span><span class=3D"sc-faUofl sc-fWCJfs lixDDm jAudhj">str=
ing</span><span class=3D"sc-faUofl sc-dvQbkV lixDDm ehRoAS"> (ApiKey) </spa=
n></div> <div><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ iliSum"><p>Api key t=
o access the service.</p>
</div></div></div></td></tr><tr class=3D"last undefined"><td class=3D"sc-hB=
URRC sc-fFehDp gYJgeU ffwWXK" kind=3D"field" title=3D"addresses"><span clas=
s=3D"sc-ieebsP hEleNJ"></span><span>addresses</span></td><td class=3D"sc-bk=
kfTU kXGMaB"><div><div><span class=3D"sc-faUofl sc-GamvQ lixDDm grOQBI"></s=
pan><span class=3D"sc-faUofl sc-fWCJfs lixDDm jAudhj">string</span><span cl=
ass=3D"sc-faUofl sc-dvQbkV lixDDm ehRoAS"> (Addresses) </span></div> <div><=
div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ iliSum"><p>A comma-separated string=
of addresses. Ignoring zero ethereum address, contract addresses, invalid =
addresses, duplicated addresses. Maximum 100000 addresses per request and 1=
00000 addresses total per pool.</p>
</div></div></div></td></tr></tbody></table><div><h3 class=3D"sc-htJSpn bcP=
jpj">Responses</h3><div><button class=3D"sc-eFehXo jekxwK" aria-expanded=3D=
"true"><svg class=3D"sc-egiSv eowbQs" version=3D"1.1" viewBox=3D"0 0 24 24"=
x=3D"0" xmlns=3D"http://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true">=
<polygon points=3D"17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></po=
lygon></svg><strong class=3D"sc-dUbuoE jHKnvS">200 </strong><span class=3D"=
sc-AjmZR exCqzM"><p>Pool created response</p>
</span></button><div class=3D"sc-fmBDoT eNSIIY"><h5 class=3D"sc-iqsfdx dONV=
W">Response Schema: <span class=3D"sc-jcFkyM ihvgJG">application/json</span=
></h5><table class=3D"sc-hGPAah kUYIEQ"><tbody><tr><td class=3D"sc-hBURRC s=
c-fFehDp gYJgeU ffwWXK" kind=3D"field" title=3D"poolId"><span class=3D"sc-i=
eebsP hEleNJ"></span><span>poolId</span><div class=3D"sc-TBWwm sc-jIkYaL gt=
dhUK fLAEHx"> required </div></td><td class=3D"sc-bkkfTU kXGMaB"><div><div>=
<span class=3D"sc-faUofl sc-GamvQ lixDDm grOQBI"></span><span class=3D"sc-f=
aUofl sc-fWCJfs lixDDm jAudhj">string</span></div> <div><div class=3D"sc-iA=
KVOt sc-cNKpQo jRMZyJ iliSum"></div></div></div></td></tr><tr class=3D"last=
undefined"><td class=3D"sc-hBURRC sc-fFehDp gYJgeU ffwWXK" kind=3D"field" =
title=3D"createdAddresses"><span class=3D"sc-ieebsP hEleNJ"></span><span>cr=
eatedAddresses</span><div class=3D"sc-TBWwm sc-jIkYaL gtdhUK fLAEHx"> requi=
red </div></td><td class=3D"sc-bkkfTU kXGMaB"><div><div><span class=3D"sc-f=
aUofl sc-GamvQ lixDDm grOQBI"></span><span class=3D"sc-faUofl sc-fWCJfs lix=
DDm jAudhj">integer</span></div> <div><div class=3D"sc-iAKVOt sc-cNKpQo jRM=
ZyJ iliSum"></div></div></div></td></tr></tbody></table></div></div><div><b=
utton class=3D"sc-eFehXo epQWfk"><svg class=3D"sc-egiSv fHrBdi" version=3D"=
1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.org/2000/svg" y=
=3D"0" aria-hidden=3D"true"><polygon points=3D"17.3 8.3 12 13.6 6.7 8.3 5.3=
9.7 12 16.4 18.7 9.7 "></polygon></svg><strong class=3D"sc-dUbuoE jHKnvS">=
400 </strong><span class=3D"sc-AjmZR exCqzM"><p>Something went wrong</p>
</span></button></div><div><button class=3D"sc-eFehXo epQWfk"><svg class=3D=
"sc-egiSv fHrBdi" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"ht=
tp://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"1=
7.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong =
class=3D"sc-dUbuoE jHKnvS">403 </strong><span class=3D"sc-AjmZR exCqzM"><p>=
Invalid api key</p>
</span></button></div></div></div><div class=3D"sc-jRQAMF sc-gKckTs iQAzGR =
lbbVrV"><div class=3D"sc-xiKGw hCXNzI"><button class=3D"sc-jHkVfK hskfgf"><=
span type=3D"post" class=3D"sc-bQtJOP fRYvNt http-verb post">post</span><sp=
an class=3D"sc-dVNiOx jklKZf">/createPool</span><svg class=3D"sc-egiSv jLlg=
hG" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.or=
g/2000/svg" y=3D"0" aria-hidden=3D"true" style=3D"margin-right: -25px;"><po=
lygon points=3D"17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polyg=
on></svg></button><div aria-hidden=3D"true" class=3D"sc-fXEqXD fISzLX"><div=
class=3D"sc-FNZbm kGBuQP"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ iliSum"=
></div><div tabindex=3D"0" role=3D"button"><div class=3D"sc-jWUzTF bxNPhb">=
<span>https://api-mon.ethplorer.io</span>/createPool</div></div></div></div=
></div><div><h3 class=3D"sc-kDThTU iGYrlt"> Request samples </h3><div class=
=3D"sc-caiKgP ctIPcg" data-tabs=3D"true"><ul class=3D"react-tabs__tab-list"=
role=3D"tablist"><li class=3D"react-tabs__tab react-tabs__tab--selected" r=
ole=3D"tab" id=3D"react-tabs-0" aria-selected=3D"true" aria-disabled=3D"fal=
se" aria-controls=3D"react-tabs-1" tabindex=3D"0">cURL</li></ul><div class=
=3D"react-tabs__tab-panel react-tabs__tab-panel--selected" role=3D"tabpanel=
" id=3D"react-tabs-1" aria-labelledby=3D"react-tabs-0"><div class=3D"sc-cTA=
pHj fVRyQa"><div class=3D"sc-efQUeY hOkKyM"><button><div class=3D"sc-khQdMy=
cdJLiE">Copy</div></button></div><pre class=3D"sc-jObXwK sc-dPiKHq euKCrk =
ySWwV">curl <span class=3D"token operator">-</span>X POST <span class=3D"to=
ken string">"https://api-mon.ethplorer.io/createPool"</span> <span class=3D=
"token operator">-</span>H <span class=3D"token string">"accept: applicatio=
n/json"</span> <span class=3D"token operator">-</span>H <span class=3D"toke=
n string">"Content-Type: application/x-www-form-urlencoded"</span> <span cl=
ass=3D"token operator">-</span>d <span class=3D"token string">"apiKey=3Dyou=
rApiKey&addresses=3D0xb2930b35844a230f00e51431acae96fe543a0347%2C0xb52d=
3141ee731fac89927476c6a5207b37cd72ff"</span></pre></div></div></div></div><=
div><h3 class=3D"sc-kDThTU iGYrlt"> Response samples </h3><div class=3D"sc-=
caiKgP ctIPcg" data-tabs=3D"true"><ul class=3D"react-tabs__tab-list" role=
=3D"tablist"><li class=3D"tab-success react-tabs__tab--selected" role=3D"ta=
b" id=3D"react-tabs-2" aria-selected=3D"true" aria-disabled=3D"false" aria-=
controls=3D"react-tabs-3" tabindex=3D"0">200</li><li class=3D"tab-error" ro=
le=3D"tab" id=3D"react-tabs-4" aria-selected=3D"false" aria-disabled=3D"fal=
se" aria-controls=3D"react-tabs-5">400</li><li class=3D"tab-error" role=3D"=
tab" id=3D"react-tabs-6" aria-selected=3D"false" aria-disabled=3D"false" ar=
ia-controls=3D"react-tabs-7">403</li></ul><div class=3D"react-tabs__tab-pan=
el react-tabs__tab-panel--selected" role=3D"tabpanel" id=3D"react-tabs-3" a=
ria-labelledby=3D"react-tabs-2"><div><div class=3D"sc-hiwReK iFZavI"><span =
class=3D"sc-nVjpj dWEqHy">Content type</span><div class=3D"sc-eJwXpk cYhDuG=
">application/json</div></div><div class=3D"sc-gGCCur bYEXBF"><div class=3D=
"sc-hiwReK iFZavI"><span class=3D"sc-nVjpj dWEqHy">Example</span><div role=
=3D"button" class=3D"sc-cxpRKc bBDcgq dropdown sc-cCcYRi sc-ehCIER boCnPq e=
cdDBZ"><div class=3D"sc-llYToB gMOSRK dropdown-selector"><span class=3D"sc-=
iJKOzS jBnMQD dropdown-selector-search"><input id=3D"react_dropdown_aria_0"=
readonly=3D"" autocomplete=3D"off" role=3D"combobox" aria-hidden=3D"false"=
aria-expanded=3D"false" aria-haspopup=3D"listbox" aria-activedescendant=3D=
"react_dropdown_aria_0_list_0" aria-controls=3D"react_dropdown_aria_0_list"=
aria-label=3D"Example" value=3D""></span><span class=3D"sc-giYgFv fqGsBy d=
ropdown-selector-value" value=3D"addressAdded">addressAdded</span><div clas=
s=3D"sc-bYoCmx ekKxGA dropdown-arrow"><svg xmlns=3D"http://www.w3.org/2000/=
svg" width=3D"16" height=3D"16" viewBox=3D"0 0 24 24" fill=3D"none" stroke=
=3D"currentColor" stroke-width=3D"2" stroke-linecap=3D"round" stroke-linejo=
in=3D"round" class=3D"feather feather-chevron-down"><polyline points=3D"6 9=
12 15 18 9"></polyline></svg></div></div><div role=3D"listbox" id=3D"react=
_dropdown_aria_0_list" style=3D"height: 0px; width: 0px; overflow: hidden;"=
><div role=3D"option" id=3D"react_dropdown_aria_0_list_0" aria-selected=3D"=
true" aria-label=3D"addressAdded"></div><div role=3D"option" id=3D"react_dr=
opdown_aria_0_list_1" aria-selected=3D"false" aria-label=3D"addressNotAdded=
"></div></div><span class=3D"sc-kLwgWK hQknxn dropdown-selector-content"><d=
iv aria-selected=3D"true" class=3D"sc-gWXaA-D kDOhRT dropdown-option select=
ed focused">addressAdded</div><div aria-selected=3D"false" class=3D"sc-gWXa=
A-D hZezpz dropdown-option ">addressNotAdded</div></span></div></div><div><=
div class=3D"sc-iNGGwv hsrLVo"><div class=3D"sc-efQUeY hOkKyM"><button><div=
class=3D"sc-khQdMy cdJLiE">Copy</div></button><button> Expand all </button=
><button> Collapse all </button></div><div class=3D"sc-iAKVOt jRMZyJ sc-jeq=
YYF hQgcEI"><div class=3D"redoc-json"><code><button class=3D"collapser" ari=
a-label=3D"collapse"></button><span class=3D"token punctuation">{</span><sp=
an class=3D"ellipsis"></span><ul class=3D"obj collapsible"><li><div class=
=3D"hoverable "><span class=3D"property token string">"poolId"</span>: <spa=
n class=3D"token string">"a7b87103-70a8-4804-8eb6-66314dea4ef5"</span><span=
class=3D"token punctuation">,</span></div></li><li><div class=3D"hoverable=
"><span class=3D"property token string">"createdAddresses"</span>: <span c=
lass=3D"token number">1</span></div></li></ul><span class=3D"token punctuat=
ion">}</span></code></div></div></div></div></div></div></div><div class=3D=
"react-tabs__tab-panel" role=3D"tabpanel" id=3D"react-tabs-5" aria-labelled=
by=3D"react-tabs-4"></div><div class=3D"react-tabs__tab-panel" role=3D"tabp=
anel" id=3D"react-tabs-7" aria-labelledby=3D"react-tabs-6"></div></div></di=
v></div></div></div><div id=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1delet=
ePool/post" data-section-id=3D"tag/Bulk-API-Monitor-Endpoints/paths/~1delet=
ePool/post" class=3D"sc-eCImvq hWNHn"><div class=3D"sc-iCfLBT sc-eWfWgB Bvb=
dQ jwdikc"><div class=3D"sc-hKwCoD cVhUsV"><h2 class=3D"sc-pVTma ccQgNU"><a=
class=3D"sc-crHlIS STZed" href=3D"https://docs.ethplorer.io/monitor#tag/Bu=
lk-API-Monitor-Endpoints/paths/~1deletePool/post" aria-label=3D"tag/Bulk-AP=
I-Monitor-Endpoints/paths/~1deletePool/post"></a>Delete pool </h2><div clas=
s=3D"sc-kTLnJg cEaBRI"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM"><p>=
Delete created pool</p>
</div></div><h5 class=3D"sc-iqsfdx dONVW">Request Body schema: <span class=
=3D"sc-jcFkyM ihvgJG">application/x-www-form-urlencoded</span></h5><div cla=
ss=3D"sc-iAKVOt sc-cNKpQo jRMZyJ feHCRM"></div><table class=3D"sc-hGPAah kU=
YIEQ"><tbody><tr><td class=3D"sc-hBURRC sc-fFehDp gYJgeU ffwWXK" kind=3D"fi=
eld" title=3D"apiKey"><span class=3D"sc-ieebsP hEleNJ"></span><span>apiKey<=
/span><div class=3D"sc-TBWwm sc-jIkYaL gtdhUK fLAEHx"> required </div></td>=
<td class=3D"sc-bkkfTU kXGMaB"><div><div><span class=3D"sc-faUofl sc-GamvQ =
lixDDm grOQBI"></span><span class=3D"sc-faUofl sc-fWCJfs lixDDm jAudhj">str=
ing</span><span class=3D"sc-faUofl sc-dvQbkV lixDDm ehRoAS"> (ApiKey) </spa=
n></div> <div><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ iliSum"><p>Api key t=
o access the service.</p>
</div></div></div></td></tr><tr class=3D"last undefined"><td class=3D"sc-hB=
URRC sc-fFehDp gYJgeU ffwWXK" kind=3D"field" title=3D"poolId"><span class=
=3D"sc-ieebsP hEleNJ"></span><span>poolId</span><div class=3D"sc-TBWwm sc-j=
IkYaL gtdhUK fLAEHx"> required </div></td><td class=3D"sc-bkkfTU kXGMaB"><d=
iv><div><span class=3D"sc-faUofl sc-GamvQ lixDDm grOQBI"></span><span class=
=3D"sc-faUofl sc-fWCJfs lixDDm jAudhj">string</span><span class=3D"sc-faUof=
l sc-fWCJfs lixDDm jAudhj"> <uuid> </span><span class=3D"sc-faUofl sc=
-dvQbkV lixDDm ehRoAS"> (PoolId) </span></div> <div><div class=3D"sc-iAKVOt=
sc-cNKpQo jRMZyJ iliSum"><p>Id of the created pool. Has a uuid format.</p>
</div></div></div></td></tr></tbody></table><div><h3 class=3D"sc-htJSpn bcP=
jpj">Responses</h3><div><button class=3D"sc-eFehXo ggjDqY" aria-expanded=3D=
"true" disabled=3D""><strong class=3D"sc-dUbuoE jHKnvS">200 </strong><span =
class=3D"sc-AjmZR exCqzM"><p>Pool was deleted successfully</p>
</span></button></div><div><button class=3D"sc-eFehXo epQWfk"><svg class=3D=
"sc-egiSv fHrBdi" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"ht=
tp://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"1=
7.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong =
class=3D"sc-dUbuoE jHKnvS">400 </strong><span class=3D"sc-AjmZR exCqzM"><p>=
Something went wrong</p>
</span></button></div><div><button class=3D"sc-eFehXo epQWfk"><svg class=3D=
"sc-egiSv fHrBdi" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"ht=
tp://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"1=
7.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong =
class=3D"sc-dUbuoE jHKnvS">401 </strong><span class=3D"sc-AjmZR exCqzM"><p>=
Invalid api key</p>
</span></button></div><div><button class=3D"sc-eFehXo epQWfk"><svg class=3D=
"sc-egiSv fHrBdi" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"ht=
tp://www.w3.org/2000/svg" y=3D"0" aria-hidden=3D"true"><polygon points=3D"1=
7.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polygon></svg><strong =
class=3D"sc-dUbuoE jHKnvS">404 </strong><span class=3D"sc-AjmZR exCqzM"><p>=
Requested poolId not found in the database</p>
</span></button></div></div></div><div class=3D"sc-jRQAMF sc-gKckTs iQAzGR =
lbbVrV"><div class=3D"sc-xiKGw hCXNzI"><button class=3D"sc-jHkVfK hskfgf"><=
span type=3D"post" class=3D"sc-bQtJOP fRYvNt http-verb post">post</span><sp=
an class=3D"sc-dVNiOx jklKZf">/deletePool</span><svg class=3D"sc-egiSv jLlg=
hG" version=3D"1.1" viewBox=3D"0 0 24 24" x=3D"0" xmlns=3D"http://www.w3.or=
g/2000/svg" y=3D"0" aria-hidden=3D"true" style=3D"margin-right: -25px;"><po=
lygon points=3D"17.3 8.3 12 13.6 6.7 8.3 5.3 9.7 12 16.4 18.7 9.7 "></polyg=
on></svg></button><div aria-hidden=3D"true" class=3D"sc-fXEqXD fISzLX"><div=
class=3D"sc-FNZbm kGBuQP"><div class=3D"sc-iAKVOt sc-cNKpQo jRMZyJ iliSum"=
></div><div tabindex=3D"0" role=3D"button"><div class=3D"sc-jWUzTF bxNPhb">=
<span>https://api-mon.ethplorer.io</span>/deletePool</div></div></div></div=