-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathindex.html
738 lines (685 loc) · 32.5 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="View ERC20 token balances and decentralized exchange trading history.">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="icon" type="image/png" sizes="64x64" href="./favicon-64x64.png?1">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png?1">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png?1">
<title>Delta Balances - Balances</title>
<!-- CSS: Bootstrap, adminLTE, fontawesome & custom -->
<link href="css/combinedStyles.css" rel="stylesheet">
<!-- JS jquery -->
<script src="js/lib/jquery-3.2.1.min.js"></script>
<!-- JS datatables -->
<script src="js/lib/jquery.dataTables.fixed.min.js"></script>
<!-- JS Bootstrap + adminLTE (menu theme) + blockies ethereum -->
<script src="js/lib/bootstrap.adminlte.blockies.min.js"></script>
<script src="js/lib/bootstrap-toggle.min.js"></script>
<script src="js/lib/bootstrap-select.min.js"></script>
<!-- JS socketIO for exchange prices -->
<script src="js/lib/socket.io.js" defer></script>
<!-- JS Token discover / loading -->
<script src="js/backupTokens.js"></script>
<script src="js/loadTokens.js"></script>
<!-- JS Main functionality -->
<script src="js/build/bundle.config.min.js"></script>
<script src="js/build/bundle.modules.min.js"></script>
<script src="js/build/bundle.min.js"></script>
<script src="js/user.js"></script>
<script src="js/balances.js"></script>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<!-- Main Header -->
<header class="main-header">
<!-- Logo -->
<a href="index.html" class="logo hidden-xs">
<!-- mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini">
<img id="logo1" align="middle" src="logo-white.png" alt="logo">
</span>
<!-- logo for regular state and mobile devices -->
<span class="logo-lg">
<img id="logo2" align="middle" src="logo-white.png" alt="logo">
<span class="homeLink1">Delta</span>
<span class="homeLink2">Balances</span>
</span>
</a>
<!-- Header Navbar -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<!-- mobile only logo -->
<ul class="visible-xs nav navbar-nav pull-left navbar-logo"
style="margin-left:0px; margin-top:5px;font-size:20px; height:30px; line-height:30px;">
<li class="">
<a href="index.html" class="dropdown">
<span class="homeLink1">Delta</span>
<span class="homeLink2">Balances</span>
</a>
</li>
</ul>
<!-- header search -->
<ul class="nav navbar-nav pull-left customWidth1" style=" border: none;">
<li class="navbar-form" style="width:100%; padding:0px; ">
<div class="input-group" style="width:100%;">
<input type="text" id="address" class="form-control custom"
placeholder="Ethereum address, transaction hash">
<span class="input-group-btn">
<input type="image" title="Import from web3" id="web3button" class="btn" onClick="requestMetamask(true)"
src="css/images/metamask.png" />
<button id="refreshButton" onClick="myClick()" class="btn btn-flat">
<i id="refreshButtonSearch" class="fa fa-search" aria-hidden="true"></i>
<i id="refreshButtonLoading" style="display:none" class="fa fa-refresh fa-spin" aria-hidden="true"></i>
</button>
</span>
</div>
</li>
</ul>
<ul class="nav navbar-nav pull-right navbar-user">
<!-- Control Sidebar Toggle Button -->
<li class="dropdown user user-menu">
<!-- Menu Toggle Button -->
<a href="#" id="userToggle" class="hidden dropdown-toggle" data-toggle="control-sidebar">
<!-- The user image in the navbar-->
<i id="userImage" class="user-image bg-red" style="width:32px; height:32px;"><img class="mini-metamask"
src="css/images/metamask.png" alt="metamask logo"></i>
<!-- hidden-xs hides the username on small devices so only the image appears. -->
<span id="currentAddr2" class="hidden-xs">0x......</span>
</a>
</li>
</ul>
</nav>
</header>
<!-- top alert message -->
<div class="alert alert-danger alert-top" style="display:none;" onclick="hideError()" id='error' role="alert">
<strong>Error</strong>
<span id="errortext"></span>
<button type="button" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-warning alert-top alert-dismissible" onclick="hideHint()" style="display:none;" role="alert"
id='hint'>
<strong>Hint</strong>
<span id="hinttext"></span>
<button type="button" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- Sidebar Menu -->
<ul class="sidebar-menu" data-widget="tree">
<li id="homeLinkHeader" class="header">
<a href="index.html">
<span class="homeLink3">Delta</span>
<span class="homeLink4">Balances</span>
</a>
</li>
<li class="header">Multi Exchange</li>
<!-- Optionally, you can add icons to the links -->
<li class="active">
<a id="overviewNav" href="index.html">
<i class="sidebar-icon icon-balances"></i>
<span>Token Balances</span>
</a>
</li>
<li>
<a id="recentNav" href="recent.html">
<i class="sidebar-icon icon-recent"></i>
<span>Recent Transactions</span>
</a>
</li>
<li>
<a id="histNav" href="trades.html">
<i class="sidebar-icon icon-book"></i>
<span>Trade History</span>
</a>
</li>
<li>
<a id="txNav" href="tx.html">
<i class="sidebar-icon icon-info"></i>
<span>Transaction Info</span>
</a>
</li>
<li>
<a id="allowNav" href="allowance.html">
<i class="sidebar-icon icon-checked"></i>
<span>Token Allowances</span>
</a>
</li>
<li class="header">Single exchange</li>
<li class="treeview menu">
<a href="#">
<i class="icon-book"></i>
<span>Exchange History</span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu">
<li>
<a id="historyNav" href="history.html">
<i class="sidebar-icon icon-etherdelta"></i>
<span>EtherDelta
<span class="text75"> - ForkDelta</span>
</span>
</a>
</li>
<li>
<a id="historyNav2" href="history2.html">
<i class="sidebar-icon icon-tokenstore"></i>
<span>Token store</span>
</a>
</li>
<li>
<a id="historyNav4" href="history4.html">
<i class="sidebar-icon icon-zrx"></i>
<span>0x Protocol</span>
</a>
</li>
<li>
<a id="historyNav5" href="history5.html">
<i class="sidebar-icon icon-airswap"></i>
<span>AirSwap</span>
</a>
</li>
<li>
<a id="historyNav6" href="history6.html">
<i class="sidebar-icon icon-kyber"></i>
<span>Kyber Network</span>
</a>
</li>
<li>
<a id="historyNav7" href="history7.html">
<i class="sidebar-icon icon-oasis"></i>
<span>OasisDex <span class="text75"> - Eth2Dai</span></span>
</a>
</li>
<li>
<a id="historyNav10" href="history10.html">
<i class="sidebar-icon icon-ethex"></i>
<span>ETHEX</span>
</a>
</li>
<li>
<a id="historyNav8" href="history8.html">
<i class="sidebar-icon icon-enclaves"></i>
<span>EnclavesDex</span>
</a>
</li>
<li>
<a id="historyNav9" href="history9.html">
<strong class="sidebar-icon icon-ethen"> E</strong>
<span>ETHEN</span>
</a>
</li>
<li>
<a id="historyNav3" href="history3.html">
<i class="sidebar-icon icon-decentrex"></i>
<span>Decentrex</span>
</a>
</li>
</ul>
</li>
<li class="header">Links</li>
<li>
<a href="https://github.com/DeltaBalances/DeltaBalances.github.io" target="_blank" rel="noopener noreferrer">
<i class="fa fa-github"></i>
<span>GitHub</span>
</a>
</li>
<li>
<a href="https://etherscan.io/address/0xbf320b8336b131e0270295c15478d91741f9fc11#code" target="_blank" rel="noopener noreferrer">
<i class="fa fa-link"></i>
<span>Smart contract</span>
</a>
</li>
</ul>
<!-- /.sidebar-menu -->
</section>
<!-- /.sidebar -->
</aside>
<div class="wrapper">
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- <section class="content-header">
<h1>
Token balances
</h1>
</section> -->
<!-- Main content -->
<section class="content container-fluid">
<div class="row">
<div class="col-sm-12 col-md-8 col-lg-7 s-fullwidth" style="overflow:hidden;">
<div class="box box-default bottom10M">
<div id="overviewOverlay" class="hidden-xs hidden-sm hidden-md hidden-lg overlay">
<i class="fa fa-refresh fa-spin dim"></i>
</div>
<!-- /.box-header -->
<div class="box-body noPadTop">
<div class="col-md-12 noPadM">
<h2>Total Balances</h2>
<div style="white-space:nowrap; overflow:hidden;">
<div id="addrIcon" class="hidden-xs" style="float:left; display: inline-block; padding-left: 1%;">
</div>
<div class="hidden-xs" style="padding-left: 3%; float:left;">
<p style="line-height:64px;display: inline-block;"> </p>
</div>
<div style="float:left; white-space:nowrap;">
<p style="line-height:64px; white-space:nowrap; font-size:21px; font-weight:normal; display: inline-block;"
id="addr">Enter or import your address </p>
</div>
</div>
<table class="table table-sm" cellspacing="0" cellpadding="0" id="overviewTable">
<tr>
<td>
<span class=" hidden-xs">Total ETH balance:</span>
<span class=" visible-xs">Total ETH:</span>
</td>
<td id='ethbalance'></td>
<td id='ethbalancePrice'></td>
</tr>
<tr>
<td>
<span class=" hidden-xs">Total Wrapped ETH:</span>
<span class=" visible-xs">Wrapped ETH:</span>
</td>
<td id='wethbalance'></td>
<td id='wethbalancePrice'></td>
</tr>
<tr>
<td>
<span class=" hidden-xs">Estimated token value:</span>
<span class=" visible-xs">Token value:</span>
</td>
<td id='tokenbalance'></td>
<td id='tokenbalancePrice'></td>
</tr>
<tr>
<td>
<span class=" hidden-xs">Estimated total value:</span>
<span class=" visible-xs">Total value:</span>
</td>
<td id='totalbalance'></td>
<td id='totalbalancePrice'></td>
</tr>
</table>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
</div>
<div id="accordion" class="col-sm-12 col-md-4 col-lg-3 s-fullwidth padM-side">
<div id="settingbox" class="panel box box-default bottom10M">
<!-- /.box-header -->
<div class="box-header padM-side">
<div class="col-md-12 noPadM">
<h3 style="margin-top:10px;">Settings</h3>
</div>
<div class="box-tools pull-right noPad">
<a id="collapseSettings" data-toggle="collapse" data-parent="#accordion" href="#setting-body">
<button type="button" class="accordionBtn btn btn-box-tool">
<i id="settingToggleIcon" class="fa fa-plus"></i>
</button>
</a>
</div>
</div>
<div id="setting-body" class=" panel-collapse collapse box-body noPadTop">
<div class="col-xs-12 col-sm-6 col-md-12 noPadM bottom10M">
<div class="col-xs-5 col-md-5 padM-side">
Total Value: <br>
<span id="fiatPrice" class="text75"></span>
</div>
<div class="col-xs-7 col-md-7 padM-side">
<select id="fiatSelect" onchange="selectFiat()" data-width="125px" class="selectpicker">
<option value="0">ETH</option>
<option value="1" selected>ETH & USD</option>
<option value="2">ETH & EUR</option>
</select>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-12 noPadM bottom10M">
<div class="col-xs-5 col-md-5 padM-side">
Price estimate:
</div>
<div class="col-xs-7 col-md-7 padM-side">
<select id="priceSelect" onchange="selectPrice()" data-width="125px" class="selectpicker">
<option value="0" selected>Highest Bid</option>
<option value="1">Lowest Ask</option>
</select>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 noPadM">
<div class="col-xs-12 padM-side">
<input class="checkbox checkbox-info" type="checkbox" onclick="checkDecimal()" id="decimals">
<label style="font-weight:normal;" for="decimals">Show more decimals</label>
</div>
</div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
<div id="tokensettingbox" class="panel box box-default bottom10M">
<!-- /.box-header -->
<div class="box-header padM-side">
<div class="col-md-12 noPadM">
<h3 style="display: inline-block;margin-top:10px;">Tokens</h3>
<span style="margin-left:35px" id="tokencount"></span>
</div>
<div class="box-tools pull-right noPad">
<a id="collapseTokenSettings" data-toggle="collapse" data-parent="#accordion"
href="#tokensetting-body">
<button type="button" class="accordionBtn btn btn-box-tool"><i id="tokensettingToggleIcon"
class="fa fa-plus"></i>
</button>
</a>
</div>
</div>
<div id="tokensetting-body" class="panel-collapse collapse box-body noPadTop">
<div class="col-xs-12 col-sm-6 col-md-12 noPad">
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showListed" checked data-toggle="toggle" data-style="fast"
data-width="100" data-on="Load listed" data-off="Hide listed" data-onstyle="primary"
data-offstyle="default" data-size="mini">
</label>
Listed on DEX <i class="fa fa-info" data-toggle="tooltip"
title="Listed on ForkDelta, IDEX, DDEX, Kyber, 1inch"></i>
<br>
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showUnlisted" data-toggle="toggle" data-style="fast" data-width="100"
data-on="Load unlisted" data-off="Hide unlisted" data-onstyle="warning" data-offstyle="default"
data-size="mini">
</label>
Not listed <i class="fa fa-info" data-toggle="tooltip"
title="Might trade unlisted on ForkDelta or Uniswap"></i>
<br>
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showOld" data-toggle="toggle" data-style="fast" data-width="100"
data-on="Load old" data-off="Hide old" data-onstyle="danger" data-offstyle="default"
data-size="mini">
</label>
Locked / Swap <i class="fa fa-info" data-toggle="tooltip"
title="No longer transferable or mainnet swap"></i>
<br>
</div>
<div class="col-xs-12 col-sm-6 col-md-12 noPad">
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showSpam" data-toggle="toggle" data-style="fast" data-width="100"
data-on="Load spam" data-off="Hide spam" data-onstyle="danger" data-offstyle="default"
data-size="mini">
</label>
Spam tokens <i class="fa fa-info" data-toggle="tooltip" title="Random airdrops, scams and spam"></i>
<br>
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showInactive" data-toggle="toggle" data-style="fast" data-width="100"
data-on="Load inactive" data-off="Hide inactive" data-onstyle="danger" data-offstyle="default"
data-size="mini">
</label>
No recent users <i class="fa fa-info" data-toggle="tooltip" title="Transfers in last 365 days"></i>
<br>
<label class="togglebox checkbox-inline">
<input type="checkbox" id="showBlocked" data-toggle="toggle" data-style="fast" data-width="100"
data-on="Load unused" data-off="Hide unused" data-onstyle="danger" data-offstyle="default"
data-size="mini">
</label>
Few holders <i class="fa fa-info" data-toggle="tooltip" title="Less than roughly 150 holders"></i>
<br>
</div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
</div>
<div class="row">
<div class="col-md-12 col-lg-8">
<h4> Load deposited DEX balances: </h4>
</div>
<div class="col-sm-12 col-md-8 col-lg-7 noPadM">
<div class="form-group">
<select id="exchangeDropdown" class="selectpicker" data-width="100%"
data-none-selected-text="Click to select one or more exchange(s)" data-container=".wrapper"
data-max-options="4" multiple>
<optgroup label="Active">
<option data-icon="icon-etherdelta" data-subtext="ForkDelta">EtherDelta</option>
<option data-icon="icon-idex">IDEX v2</option>
<option data-icon="icon-switcheo">Switcheo v2</option>
<option data-icon="icon-enclaves">Joyso</option>
<option data-icon="icon-enclaves">SingularX</option>
<option data-icon="icon-enclaves">dex.blue</option>
<option data-icon="icon-enclaves">EtherC</option>
<option data-icon="icon-enclaves">SwitchDex</option>
<option data-icon="icon-enclaves">Bitcratic</option>
</optgroup>
<optgroup label="Legacy">
<option data-icon="icon-idex">IDEX v1</option>
<option data-icon="icon-tokenstore" data-subtext="(Discontinued, to withdraw use: ts-out.github.io )">Token store</option>
<option data-icon="icon-switcheo" data-subtext="(Discontinued 10-2019)">Switcheo</option>
<option data-icon="icon-enclaves" data-subtext="(Discontinued)">Enclaves</option>
<option data-icon="icon-enclaves" data-subtext="(Discontinued)">DEXY</option>
<option data-icon="icon-decentrex" data-subtext="(Discontinued)">Decentrex</option>
<option data-icon="icon-enclaves" data-subtext="(website offline)">ETHEN</option>
<option data-icon="icon-etherdelta" data-subtext="October 2016">EtherDelta-old</option>
<option data-icon="icon-etherdelta" data-subtext="August 2016">EtherDelta-old2</option>
<option data-icon="icon-etherdelta" data-subtext="August 2016">EtherDelta-old3</option>
<option data-icon="icon-etherdelta" data-subtext="Juli 2016">EtherDelta-old4</option>
</optgroup>
</select>
</div>
</div>
<div class="col-xs-12 col-md-12 col-lg-10 s-fullwidth">
<div class="box box-default">
<!-- /.box-header -->
<div class="box-body noPadTop">
<div class="col-md-12 noPadM">
<h2>Balances
<button id='loadingBalances' onclick="getBalances()" class="fa fa-refresh"
style="display:none;"></button>
<!-- <span class="pull-right" style="display:inline-block; vertical-align: middle;font-weight: 400; font-size: 0.5em;">
<input style="width:110px;" id="tablesearcher" class="search form-control" data-column="0" type="search" placeholder="filter tokens">
</span>
-->
</h2>
</div>
<!--<div style="margin-top:30px;" class="col-xs-6 col-sm-8 noPad">
<span id="refreshText" class="text-red" style="display:hidden;margin-top:100px;">Outdated, click <i class="fa fa-refresh"></i> to refresh.</span>
</div> -->
<div class="col-md-12 noPadM">
<table class="table" id="balanceProgress" style="float:left;">
<thead></thead>
<tbody></tbody>
</table>
</div>
<div class="col-md-12 noPad">
<table class="table table-striped" id="resultTable" style="width:100%">
<thead></thead>
<tbody></tbody>
</table>
<br>
</div>
<div class="col-md-12 noPadM">
More tokens? Expand the token selection at the top<span class="hidden-xs"> right</span>.<br>
<span id="downloadBalances"></span> <br>
<br>
<div class="col-md-6 noPad">
<span class="label label-primary">Name</span> Listed on one or more <span
class="hidden-xs">supported</span> exchanges.
</div>
<div class="col-md-5 noPad">
<span class="label label-warning">Name</span> Not listed, trades by address only.
</div>
</div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<div class="col-xs-12 col-md-12 col-lg-10 s-fullwidth">
<div class="box box-default bottom10M">
<!-- /.box-header -->
<div class="box-body">
<div class="col-md-12 noPadM">
Check deposited tokens in:
<a href="https://etherdelta.com" target="_blank" rel="noopener noreferrer">EtherDelta</a>
(<a href="https://forkdelta.app" target="_blank" rel="noopener noreferrer">ForkDelta</a>),
<a href="https://token.store" target="_blank" rel="noopener noreferrer">Token Store</a>,
<a href="https://www.idex.market" target="_blank" rel="noopener noreferrer">IDEX</a>,
<a href="https://switcheo.exchange" target="_blank" rel="noopener noreferrer">Switcheo</a>,
<a href="https://joyso.io" target="_blank" rel="noopener noreferrer">Joyso</a>,
<a href="https://dex.blue" target="_blank" rel="noopener noreferrer">dex.blue</a>,
<a href="https://www.singularx.com" target="_blank" rel="noopener noreferrer">SingularX</a>,
<a href="https://www.etherc.io" target="_blank" rel="noopener noreferrer">EtherC</a>,
<a href="https://www.bitcratic.com" target="_blank" rel="noopener noreferrer">Bitcratic</a>,
<a href="https://www.enclaves.io" target="_blank" rel="noopener noreferrer">EnclavesDex</a>,
<a href="https://app.dexy.exchange" target="_blank" rel="noopener noreferrer">DEXY</a> and
<a href="https://github.com/decentrex/decentrex.github.io/blob/master/index.md"
target="_blank" rel="noopener noreferrer">Decentrex</a>.
<br> Other supported decentralized exchanges do not use a deposit system.
<br>
<br> Price estimates come from the ForkDelta, IDEX, Kyber and TokenStore APIs.
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<!-- Main Footer -->
<footer class="main-footer">
<!-- To the right -->
<div class="pull-right hidden-xs">
</div>
<!-- Default to the left -->
<div class="col-sm-12 col-md-6">
<p> Balances are powered by
<a target="_blank" rel="noopener noreferrer" href="https://etherscan.io/">Etherscan</a>,
<a target="_blank" rel="noopener noreferrer" href="https://infura.io/">Infura</a> and
<a target="_blank" rel="noopener noreferrer" href="https://www.alchemyapi.io/">Alchemy</a>
<br> Contact:
<a target="_blank" rel="noopener noreferrer" href="https://github.com/DeltaBalances/DeltaBalances.github.io">GitHub</a> or
<a target="_blank" rel="noopener noreferrer" href="https://reddit.com/u/deltabalances">Reddit</a>
<br>
<br> Buy me a beer:
<a href="https://etherscan.io/address/0xf6E914D07d12636759868a61E52973d17ED7111B"
target="_blank" rel="noopener noreferrer">0xf6E914D07d12636759868a61E52973d17ED7111B</a>
</p>
</div>
<div class="col-sm-12 col-md-6">
Use a referral:
<ul style="list-style-type:none">
<li><a target="_blank" rel="noopener noreferrer" href="https://www.binance.com/?ref=10985752">Trade on Binance</a></li>
</ul>
</div>
</footer>
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<!-- Create the tabs -->
<ul class="nav nav-tabs nav-justified control-sidebar-tabs">
<li class="active">
<a href="#control-sidebar-home-tab" data-toggle="tab">
<i class="fa fa-home"></i>
</a>
</li>
<li>
<a href="#control-sidebar-settings-tab" data-toggle="tab">
<i class="fa fa-gears"></i>
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<!-- Home tab content -->
<div class="tab-pane active" id="control-sidebar-home-tab">
<h3 class="control-sidebar-heading">Active address</h3>
<ul class="control-sidebar-menu">
<li>
<a href="" onclick="return false" style="pointer-events: none;">
<i id="currentAddrImg" class="menu-icon bg-red" style="width:32px; height:32px;"></i>
<div class="menu-info">
<h4 id="currentAddr" class="control-sidebar-subheading">0x......</h4>
<p id="currentAddrDescr">Input address</p>
</div>
</a>
</li>
<li id="walletInfo" class="hidden">
<a id="etherscan" href="#" target="_blank" class="menu-info control-sidebar-subheading">
Etherscan
<i class="fa fa-link pull-right"></i>
</a>
<a onclick="forget()" id="forget" href="#" class="menu-info control-sidebar-subheading">
Forget
<i class="fa fa-trash-o pull-right text-red"></i>
</a>
<a onclick="save()" id="save" href="#" class="hidden menu-info control-sidebar-subheading">
Save
<i class="fa fa-save pull-right text-blue"></i>
</a>
</li>
</ul>
<div id="savedSection" class="hidden">
<h3 class="control-sidebar-heading">Saved address</h3>
<ul class="control-sidebar-menu">
<li>
<a onclick="loadSaved()" href="#">
<i id="savedImage" class="menu-icon bg-red" style="width:32px; height:32px;"></i>
<div class="menu-info">
<h4 id="savedAddress" class="control-sidebar-subheading">0x12345678</h4>
<p>Saved</p>
</div>
</a>
</li>
</ul>
</div>
<div id="metamaskSection">
<h3 class="control-sidebar-heading">Web3 browser</h3>
<ul class="control-sidebar-menu">
<li id="metamask-inactive" class="hidden">
<a onclick="loadMetamask()" href="#">
<i id="metamaskImage" class="menu-icon bg-red" style="width:32px; height:32px;"></i>
<div class="menu-info">
<h4 id="metamaskAddress" class="control-sidebar-subheading">0x12345678</h4>
<p>Web3 import</p>
</div>
</a>
</li>
<li class="metamask-import">
<a onclick="requestMetamask(true)" href="#">
<i id="metamask-logo-sidebar" class="menu-icon"></i>
<div class="menu-info">
<h4 class="control-sidebar-subheading">Import account</h4>
<p> Injected Web3</p>
</div>
</a>
</li>
</ul>
</div>
</div>
<!-- /.tab-pane -->
<!-- Settings tab content -->
<div class="tab-pane" id="control-sidebar-settings-tab">
<form>
<h3 class="control-sidebar-heading">Nothing here yet</h3>
</form>
</div>
<!-- /.tab-pane -->
</div>
</aside>
<!-- /.control-sidebar -->
<div class="control-sidebar-bg"></div>
</div>
<!-- ./wrapper -->
</body>
</html>