-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1inch.js
More file actions
1553 lines (1496 loc) · 93.4 KB
/
1inch.js
File metadata and controls
1553 lines (1496 loc) · 93.4 KB
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
<!doctype html>
<html dir="ltr" lang="en">
<head>
<base href="/">
<title>1inch Network | Leading high capital efficient DeFi protocols</title>
<meta property="og:title" content="1inch Network | Leading high capital efficient DeFi protocols">
<meta property="twitter:title" content="1inch Network | Leading high capital efficient DeFi protocols">
<meta name="twitter:image:alt" content="1inch Network | Leading high capital efficient DeFi protocols">
<meta name="description" content="The 1inch Network unites decentralized protocols whose synergy enables the most lucrative, fastest and protected operations in the DeFi space.">
<meta property="og:description" content="The 1inch Network unites decentralized protocols whose synergy enables the most lucrative, fastest and protected operations in the DeFi space.">
<meta name="twitter:description" content="The 1inch Network unites decentralized protocols whose synergy enables the most lucrative, fastest and protected operations in the DeFi space.">
<meta property="og:url" content="/">
<meta property="og:image" content="https://1inch.io/assets/social-image/main-cover-2.png">
<meta name="twitter:image" content="https://1inch.io/assets/social-image/main-cover-2.png">
<meta property="og:site_name" content="1inch Network">
<meta name="twitter:site" content="@1inchNetwork">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta name="facebook-domain-verification" content="ngnzrg8i5y32ls3pul3fdo6b0ves5v">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, user-scalable=no">
<link href="img/favicon/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
<link href="img/favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<link href="img/favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
<link color="#5bbad5" href="img/favicon/safari-pinned-tab.svg" rel="mask-icon">
<!--Start hreflang-->
<link rel="canonical" href="https://1inch.io/">
<link rel="alternate" hreflang="en" href="https://1inch.io/">
<link rel="alternate" hreflang="ru" href="https://1inch.io/ru/">
<link rel="alternate" hreflang="ja" href="https://1inch.io/ja/">
<link rel="alternate" hreflang="ko" href="https://1inch.io/ko/">
<link rel="alternate" hreflang="vi" href="https://1inch.io/vi/">
<link rel="alternate" hreflang="zh" href="https://1inch.io/zh/">
<link rel="alternate" hreflang="fr" href="https://1inch.io/fr/">
<link rel="alternate" hreflang="es" href="https://1inch.io/es/">
<link rel="alternate" hreflang="id" href="https://1inch.io/id/">
<--End hreflang-->
<-- Xandr Universal Pixel - Initialization (include only once per page) -->
<script>
!function(e,i){if(!e.pixie){var n=e.pixie=function(e,i,a){n.actionQueue.push({action:e,actionValue:i,params:a})};n.actionQueue=[];var a=i.createElement("script");a.async=!0,a.src="//acdn.adnxs.com/dmp/up/pixie.js";var t=i.getElementsByTagName("head")[0];t.insertBefore(a,t.firstChild)}}(window,document);
pixie('init', '0aaa6e07-1e77-4806-b8c6-88cd4e28ca72');
</script>
<-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WNG7X6R');</script>
<-- End Google Tag Manager -->
<link rel="stylesheet" href="commonstyle.css">
<link rel="stylesheet" href="index.css">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "1inch Network",
"url": "https://1inch.io",
"logo": "https://1inch.io/img/logo.png",
"description": "The 1inch Network unites decentralized protocols whose synergy enables the most lucrative, fastest and protected operations in the DeFi space.",
"foundingDate": "2019-05-19",
"owns": {
"@type": "OwnershipInfo",
"name": "1inch Foundation",
"description": "A non-profit organization that issued the 1INCH token and is dedicated to fostering the 1inch Network and initiatives that benefit the network's community.",
"url": "https://1inch.io/foundation/"
},
"socialMedia": {
"name": "1inch.io",
"url": "https://1inch.io/",
"sameAS": [
"https://blog.1inch.io/",
"https://www.reddit.com/r/1inch/",
"https://twitter.com/1inch",
"https://discord.com/invite/1inch",
"https://www.youtube.com/channel/UCk0nvK4bHpteQXZKv7lkq5w",
"https://t.me/OneInchNetwork",
"https://github.com/1inch"
]
},
"foundingLocation": {
"@type": "Place",
"name": "ETHNewYork 2019",
"description": "ETHNYC is the perfect opportunity to work alongside the developers, industry experts, advisers, and companies who are creating the infrastructure and applications that will power open finance and the decentralized web. ",
"alternateName": "ETHGlobal",
"url": "https://ethglobal.co",
"logo": "https://ethglobal.co/icons/icon-512x512.png",
"image": "https://ethglobal.co/og.png",
"sameAs": [
"https://nyc.ethglobal.co/"
]
},
"founders": [
{
"@type": "Person",
"givenName": "Anton",
"familyName": "Bukov",
"jobTitle": "Co-Founder of 1inch Network",
"image": "https://1inch.ioimg/contributors/photos/a_bukov.png",
"sameAs": [
"https://twitter.com/k06a",
"https://www.linkedin.com/in/k06aa"
]
},
{
"@type": "Person",
"givenName": "Sergej",
"familyName": "Kunz",
"jobTitle": "Co-Founder of 1inch Network",
"image": "https://1inch.ioimg/contributors/photos/s_kunz.png",
"sameAs": [
"https://twitter.com/deacix",
"https://www.linkedin.com/in/deacix"
]
}
],
"contactPoint": [
{
"@type": "ContactPoint",
"email": "support@1inch.io",
"contactType": "Email Customer Support"
}
],
"slogan": "Be like water..",
"brand": [
"1inch",
"1inch Network",
"1inch.exchange",
"1inch exchange",
"1inch Liquidity Protocol",
"1inch Aggregation Protocol",
"1INCH token",
"1inch Instant Governance"
],
"siteStructure": {
"@type": "BreadcrumbList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"item":
{
"@id": "https://1inch.io/",
"name": "Main"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/",
"name": "Aggregation protocol"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/uniswap/",
"name": "Uniswap"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/balancer/",
"name": "Balancer"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/bancor/",
"name": "Bancor"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/0x/",
"name": "0x"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/sushiswap/",
"name": "Sushiswap"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//aggregation-protocol/pancakeswap/",
"name": "Pancakeswap"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//liquidity-protocol/",
"name": "Liquidity protocol"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//limit-order-protocol/",
"name": "Limit order protocol"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//dao/",
"name": "DAO"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//foundation/",
"name": "Foundation"
}
},
{
"@type": "ListItem",
"position": 3,
"item":
{
"@id": "https://1inch.io//foundationGrantsProgram/",
"name": "FoundationGrantsProgram"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//token/",
"name": "Token"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//wallet/",
"name": "Wallet"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://1inch.io//contributors/",
"name": "Contributors"
}
}
]
}
}
</script>
</head>
<body itemscope itemtype="https://schema.org/WebPage">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WNG7X6R"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<-- End Google Tag Manager (noscript) -->
<div class="wallet-banner" id="banner-ios">
<div class="banner-container banner-container-ios">
<span class="banner-close banner-close-ios" id="close-button-ios">×</span>
<img class="banner-icon banner-icon-ios" src="img/1inch-wallet-banner-logo.png">
<div class="banner-info banner-info-ios">
<div class="banner-title">1inch DeFi Wallet</div>
<div class="banner-text">1inch Network</div>
<span class="banner-text">FREE - On the App Store</span>
</div>
<a href="https://apps.apple.com/us/app/1inch-defi-wallet/id1546049391" target="_blank" class="banner-button-ios">
<span class="banner-button-text-ios">VIEW</span>
</a>
</div>
</div>
<div class="wallet-banner wallet-banner-android" id="banner-android">
<div class="banner-container banner-container-android">
<span class="banner-close banner-close-android" id="close-button-android">×</span>
<img class="banner-icon banner-icon-android" src="img/1inch-wallet-banner-logo.png">
<div class="banner-info banner-info-android">
<div class="banner-title banner-title-android">1inch DeFi Wallet</div>
<div class="banner-text">1inch Network</div>
<span class="banner-text">FREE - In Google Play</span>
</div>
<a href="https://play.google.com/store/apps/details?id=io.oneinch.android" target="_blank" class="banner-button-android">
<span class="banner-button-text-android">VIEW</span>
</a>
</div>
</div>
<header class="header-wrap" itemscope itemtype="https://schema.org/WPHeader">
<div class="fusion-main-news" id="news-banner">
<span>No more gas fees with Fusion mode.</span>
<a href="https://blog.1inch.io/the-1inch-network-releases-a-major-upgrade-fusion-96184d8141d3" target="_blank">Learn more</a>
<span class="close-banner-button" id="close-button-banner">×</span>
</div>
<div id="pageHeader" class="header">
<div id="mobileMenuBg" class="mobileMenuBg"></div>
<div id="mobileMenu" class="mobile-menu">
<div class="mobile-menu-close-wrap">
<button id="mobileMenuClose" class="mobile-menu-close"></button>
</div>
<div class="mobile-menu-scroll">
<div class="mobile-menu-links">
<div class="mobile-menu-link main-mobile-menu-link">
<span class="main-mobile-menu-title">
<span>
Products
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
</span>
<div style="display: none" class="mobile-sub-links-wrap">
<a target="_blank" class="mobile-menu-sub-link"
href="https://app.1inch.io/#/1/unified/swap/ETH/DAI/">dApp</a>
<a target="_self" class="mobile-menu-sub-link"
href="/wallet/">Wallet</a>
<a target="_self" class="mobile-menu-sub-link"
href="/aggregation-protocol/">Aggregation Protocol</a>
<a target="_self" class="mobile-menu-sub-link"
href="/limit-order-protocol/">Limit Order Protocol</a>
<a target="_self" class="mobile-menu-sub-link"
href="/liquidity-protocol/">Liquidity Protocol</a>
<a target="_self" class="mobile-menu-sub-link"
href="/fusion/">Fusion mode</a>
<a target="_self" class="mobile-menu-sub-link"
href="/rabbithole/">1inch RabbitHole</a>
<a target="_blank" class="mobile-menu-sub-link"
href="https://app.1inch.io/#/1/earn/strategies">1inch Earn</a>
</div>
</div>
<div class="mobile-menu-link main-mobile-menu-link">
<span class="main-mobile-menu-title">
<span>
Developers
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
</span>
<div style="display: none" class="mobile-sub-links-wrap">
<a target="_blank" class="mobile-menu-sub-link"
href="https://docs.1inch.io/">Docs</a>
<a target="_self" class="mobile-menu-sub-link"
href="/api/">API</a>
<a target="_self" class="mobile-menu-sub-link"
href="/foundation-grant-program/">Grants</a>
<a target="_blank" class="mobile-menu-sub-link"
href="https://github.com/1inch">Github</a>
</div>
</div>
<div class="mobile-menu-link main-mobile-menu-link">
<span class="main-mobile-menu-title">
<span>
Governance
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
</span>
<div style="display: none" class="mobile-sub-links-wrap">
<a target="_self" class="mobile-menu-sub-link"
href="/dao/">DAO</a>
<a target="_self" class="mobile-menu-sub-link"
href="/token/">Token</a>
</div>
</div>
<div class="mobile-menu-link main-mobile-menu-link">
<span class="main-mobile-menu-title">
<span>
About
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
</span>
<div style="display: none" class="mobile-sub-links-wrap">
<a target="_self" class="mobile-menu-sub-link"
href="/foundation/">Foundation</a>
<a target="_self" class="mobile-menu-sub-link"
href="/contributors/">Contributors</a>
</div>
</div>
<a target="_blank" id="mobile_header-blog" class="mobile-menu-link" href="https://blog.1inch.io/">Blog
<svg width="17" height="17">
<use xlink:href="img/icons/blog_arrow.svg#blog_arrow"></use>
</svg>
</a>
<div class="mobile-menu-link main-mobile-menu-link lang-mobile-switcher">
<span class="main-mobile-menu-title">
<span>
<span>Language</span>
<span class="mobile-lang-wrap">
<span class="mobile-lang-abbr">en</span>
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
</span>
</span>
<div style="display: none" class="mobile-sub-links-wrap">
<a href="/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/en.png" alt="en">
<span>English</span>
<span> — </span>
<span class="popup-lang-abbr">en</span>
</a>
<a href="/zh/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/zh.png" alt="zh">
<span>简体中文</span>
<span> — </span>
<span class="popup-lang-abbr">zh</span>
</a>
<a href="/ru/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/ru.png" alt="ru">
<span>Русский</span>
<span> — </span>
<span class="popup-lang-abbr">ru</span>
</a>
<a href="/fr/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/fr.png" alt="fr">
<span>Français</span>
<span> — </span>
<span class="popup-lang-abbr">fr</span>
</a>
<a href="/ja/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/ja.png" alt="ja">
<span>日本語</span>
<span> — </span>
<span class="popup-lang-abbr">ja</span>
</a>
<a href="/es/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/es.png" alt="es">
<span>Español</span>
<span> — </span>
<span class="popup-lang-abbr">es</span>
</a>
<a href="/ko/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/ko.png" alt="ko">
<span>한국어</span>
<span> — </span>
<span class="popup-lang-abbr">ko</span>
</a>
<a href="/id/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/ind.png" alt="ind">
<span>Bahasa Indonesia</span>
<span> — </span>
<span class="popup-lang-abbr">ind</span>
</a>
<a href="/vi/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/vn.png" alt="vn">
<span>Tiếng Việt</span>
<span> — </span>
<span class="popup-lang-abbr">vn</span>
</a>
<a href="/uk/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/ua.png" alt="ua">
<span>Українська</span>
<span> — </span>
<span class="popup-lang-abbr">ua</span>
</a>
<a href="/pt/" class="mobile-menu-sub-link popup-lang-item">
<img src="img/flags/pt.png" alt="pt">
<span>Português</span>
<span> — </span>
<span class="popup-lang-abbr">pt</span>
</a>
</div>
</div>
</div>
<a href="https://app.1inch.io/#/1/unified/swap/ETH/DAI" target="_blank" class="mobile-menu-button">
<span>Launch dApp</span>
<img src="img/icons/chevron_right.svg" loading="lazy" alt="Arrow right">
</a>
</div>
<div id="mobileMenuDrag" class="mobile-menu-drag"></div>
</div>
<a class="header-logo" href="/">
<img class="logo" src="img/logo.svg" loading="lazy" alt="Logo">
</a>
<div class="menu-links">
<div class="menu-link main-menu-link">
<span class="main-menu-title">
Products
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
<div class="sub-links-wrap sub-links-wrap-with-promo">
<div class="navbar">
<div class="navbar-left">
<div class="navbar-section">
<p class="navbar-title">Apps</p>
<a class="navbar-item" href="https://app.1inch.io/#/1/unified/swap/ETH/DAI/" target="_blank">
<div class="navbar-img-wrap">
<img src="img/navbar/dapp.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
dApp
</span>
<p class="nav-description">A tool for accessing the deepest liquidity, lowest slippage and best exchange rates.</p>
</div>
</a>
<a class="navbar-item" href="/wallet/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/wallet.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Wallet
</span>
<p class="nav-description">A highly protected mobile app for DeFi operations.</p>
</div>
</a>
</div>
<div class="navbar-section">
<p class="navbar-title">Protocols</p>
<a class="navbar-item" href="/aggregation-protocol/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/aggregation-protocol.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Aggregation Protocol
</span>
<p class="nav-description">An aggregator of liquidity from multiple DEXes ensuring the best swap rates.</p>
</div>
</a>
<a class="navbar-item" href="/limit-order-protocol/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/limit-order-protocol.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Limit Order Protocol
</span>
<p class="nav-description">The most innovative and flexible limit order functionality in DeFi.</p>
</div>
</a>
<a class="navbar-item" href="/liquidity-protocol/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/liquidity-protocol.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Liquidity Protocol
</span>
<p class="nav-description">A next-generation AMM that offers capital efficiency to liquidity providers.</p>
</div>
</a>
</div>
<div class="navbar-section">
<p class="navbar-title">Other</p>
<a class="navbar-item" href="/fusion/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/fusion.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Fusion mode
<span class="navbar-tag">New</span>
</span>
<p class="nav-description">Fusion mode enables users to swap tokens on DEXes without paying network fees, at the most favorable rates.</p>
</div>
</a>
<a class="navbar-item" href="/rabbithole/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/rabbithole.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
1inch RabbitHole
</span>
<p class="nav-description">A feature that protects MetaMask users from sandwich attacks</p>
</div>
</a>
<a class="navbar-item" href="https://app.1inch.io/#/1/earn/strategies" target="_blank">
<div class="navbar-img-wrap">
<img src="img/navbar/earn.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
1inch Earn
</span>
<p class="nav-description">A derivative-based product offering liquidity providers attractive APYs.</p>
</div>
</a>
</div>
</div>
<div class="navbar-right">
<div>
<img style="max-width: 100%" class="nav-news-image" src="img/navbar/burrito-wallet.png" alt="burrito-wallet">
<span class="nav-news-title">1inch partners with Burrito Wallet</span>
<p class="nav-description">The partnership comes as an important step in 1inch’s strategy of conquering the Asian market.</p>
<a class="button transparent-button navbar-button" href="https://blog.1inch.io/1inch-partners-with-burrito-wallet-32cd7f4291cc" target="_blank">
<span>Learn more</span>
<img src="img/icons/chevron_right.svg" loading="lazy" alt="Arrow right">
</a>
</div>
</div>
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-1" src="img/navbar/navbar-border-1.svg" alt="Navbar border"
loading="lazy">
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-2" src="img/navbar/navbar-border-2.svg" alt="Navbar border"
loading="lazy">
</div>
</div>
</div>
<div class="menu-link main-menu-link">
<span class="main-menu-title">
Developers
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
<div class="sub-links-wrap">
<div class="navbar">
<div class="navbar-left">
<div class="navbar-section">
<a class="navbar-item" href="https://docs.1inch.io/" target="_blank">
<div class="navbar-img-wrap">
<img src="img/navbar/docs.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Docs
</span>
<p class="nav-description">An in-depth look into how the 1inch Network works.</p>
</div>
</a>
<a class="navbar-item" href="/api/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/api.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
API
</span>
<p class="nav-description">An interface facilitating non-custodial asset swaps at the most attractive rates in DeFi.</p>
</div>
</a>
<a class="navbar-item" href="/foundation-grant-program/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/grants.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Grants
</span>
<p class="nav-description">A grant program that fosters growth and expansion of the 1inch Network.</p>
</div>
</a>
<a class="navbar-item" href="https://github.com/1inch" target="_blank">
<div class="navbar-img-wrap">
<img src="img/navbar/github.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Github
</span>
<p class="nav-description">Detailed repositories of 1inch code.</p>
</div>
</a>
</div>
</div>
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-1" src="img/navbar/navbar-border-1.svg" alt="Navbar border"
loading="lazy">
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-2" src="img/navbar/navbar-border-2.svg" alt="Navbar border"
loading="lazy">
</div>
</div>
</div>
<div class="menu-link main-menu-link">
<span class="main-menu-title">
Governance
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
<div class="sub-links-wrap">
<div class="navbar">
<div class="navbar-left">
<div class="navbar-section">
<a class="navbar-item" href="/dao/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/dao.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
DAO
</span>
<p class="nav-description">A decentralized organization that governs the 1inch Network.</p>
</div>
</a>
<a class="navbar-item" href="/token/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/token.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Token
</span>
<p class="nav-description">A governance and utility token facilitating multiple tokenomics.</p>
</div>
</a>
</div>
</div>
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-1" src="img/navbar/navbar-border-1.svg" alt="Navbar border"
loading="lazy">
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-2" src="img/navbar/navbar-border-2.svg" alt="Navbar border"
loading="lazy">
</div>
</div>
</div>
<div class="menu-link main-menu-link">
<span class="main-menu-title">
About
<svg width="25" height="25">
<use xlink:href="img/icons/chevron_down.svg#chevron_down"></use>
</svg>
</span>
<div class="sub-links-wrap">
<div class="navbar">
<div class="navbar-left">
<div class="navbar-section">
<a class="navbar-item" href="/foundation/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/foundation.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Foundation
</span>
<p class="nav-description">A non-profit organization dedicated to fostering the 1inch Network.</p>
</div>
</a>
<a class="navbar-item" href="/contributors/" target="_self">
<div class="navbar-img-wrap">
<img src="img/navbar/contributors.svg" alt="dApp">
</div>
<div>
<span class="nav-item-title">
Contributors
</span>
<p class="nav-description">An overview of the most active contributors to the 1inch Network.</p>
</div>
</a>
</div>
</div>
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-1" src="img/navbar/navbar-border-1.svg" alt="Navbar border"
loading="lazy">
<img style="max-width: 100%" class="navbar-total-border navbar-total-border-2" src="img/navbar/navbar-border-2.svg" alt="Navbar border"
loading="lazy">
</div>
</div>
</div>
<a target="_blank" id="header-blog" class="menu-link" href="https://blog.1inch.io/">Blog
<svg width="17" height="17">
<use xlink:href="img/icons/blog_arrow.svg#blog_arrow"></use>
</svg>
</a>
</div>
<div class="header-last-col">
<div id="languageSwitchWrap" class="language-switch">
<div id="languageBtn" class="language-button">
<svg width="24" height="24">
<use xlink:href="img/icons/language.svg#language"></use>
</svg>
<span>EN</span>
</div>
<div id="languageChangePopup" class="language-change-popup">
<div class="popup-header">
<p class="popup-title">Change language</p>
<svg id="popupClose" class="popup-close" width="24" height="24">
<use xlink:href="img/icons/close.svg#close"></use>
</svg>
</div>
<div class="popup-content">
<a href="/" class="popup-lang-item">
<img src="img/flags/en.png" alt="en">
<span>English</span>
<span> — </span>
<span class="popup-lang-abbr">en</span>
</a>
<a href="/zh/" class="popup-lang-item">
<img src="img/flags/zh.png" alt="zh">
<span>简体中文</span>
<span> — </span>
<span class="popup-lang-abbr">zh</span>
</a>
<a href="/ru/" class="popup-lang-item">
<img src="img/flags/ru.png" alt="ru">
<span>Русский</span>
<span> — </span>
<span class="popup-lang-abbr">ru</span>
</a>
<a href="/fr/" class="popup-lang-item">
<img src="img/flags/fr.png" alt="fr">
<span>Français</span>
<span> — </span>
<span class="popup-lang-abbr">fr</span>
</a>
<a href="/ja/" class="popup-lang-item">
<img src="img/flags/ja.png" alt="ja">
<span>日本語</span>
<span> — </span>
<span class="popup-lang-abbr">ja</span>
</a>
<a href="/es/" class="popup-lang-item">
<img src="img/flags/es.png" alt="es">
<span>Español</span>
<span> — </span>
<span class="popup-lang-abbr">es</span>
</a>
<a href="/ko/" class="popup-lang-item">
<img src="img/flags/ko.png" alt="ko">
<span>한국어</span>
<span> — </span>
<span class="popup-lang-abbr">ko</span>
</a>
<a href="/id/" class="popup-lang-item">
<img src="img/flags/ind.png" alt="ind">
<span>Bahasa Indonesia</span>
<span> — </span>
<span class="popup-lang-abbr">ind</span>
</a>
<a href="/vi/" class="popup-lang-item">
<img src="img/flags/vn.png" alt="vn">
<span>Tiếng Việt</span>
<span> — </span>
<span class="popup-lang-abbr">vn</span>
</a>
<a href="/uk/" class="popup-lang-item">
<img src="img/flags/ua.png" alt="ua">
<span>Українська</span>
<span> — </span>
<span class="popup-lang-abbr">ua</span>
</a>
<a href="/pt/" class="popup-lang-item">
<img src="img/flags/pt.png" alt="pt">
<span>Português</span>
<span> — </span>
<span class="popup-lang-abbr">pt</span>
</a>
</div>
</div>
</div>
<a href="https://app.1inch.io/#/1/unified/swap/ETH/DAI" target="_blank" class="button color-button">
<span class="text-black">Launch dApp</span>
<img src="img/icons/chevron_right.svg" class="visible-white" loading="lazy" alt="Arrow right">
<img src="img/icons/chevron_right_black.svg" class="visible-black" loading="lazy" alt="Arrow right">
</a>
</div>
<img id="menuHamburger" class="hamburger" src="img/icons/hamburger.svg" loading="lazy" alt="Hamburger image">
</div>
</header>
<main>
<div class="page-content start-screen-wrap">
<div class="main-start-screen">
<h1 class="main-title">One-stop access</h1>
<p class="main-text">to decentralized finance</p>
<div class="buttons">
<a href="https://app.1inch.io/#/1/unified/swap/ETH/DAI" target="_blank" class="button color-button big-button">
<span>Launch dApp</span>
<img src="img/icons/chevron_right.svg" loading="lazy" alt="Arrow right">
</a>
<a href="https://apps.apple.com/us/app/1inch-defi-wallet/id1546049391" target="_blank" class="appstore-btn">
<img src="img/wallet/appstore2.svg" alt="appstore2">
</a>
<a href="https://play.google.com/store/apps/details?id=io.oneinch.android" target="_blank" class="appstore-btn">
<img src="img/wallet/googleplay2.svg" alt="googleplay2">
</a>
<a href="" target="_blank" class="appstore-btn">
<img src="img/wallet/android-apk-2.svg" alt="android-apk-2">
</a>
</div>
</div>
</div>
<div class="bg-color">
<div class="page-content main-content">
<div class="total-values-content">
<div class="total-values">
<div class="total-value">
<span class="big-number">345</span>
<span class="text">Liquidity sources</span>
</div>
<div class="total-value">
<span class="big-number">$281B+</span>
<span class="text">Total volume</span>
</div>
<div class="total-value">
<span class="big-number">4.4M+</span>
<span class="text">Total wallets</span>
</div>
<div class="total-value">
<span class="big-number">28.7M+</span>
<span class="text">Total trades</span>
</div>
<img style="max-width: 100%" class="total-values-border" src="img/main/total-values-border.svg" alt="Total values border" loading="lazy">
</div>
</div>
<div>
<h2 class="network-title">
Optimize your trades across hundreds of DEXes on multiple networks
</h2>
</div>
<div class="networks-block">
<div class="main-network">
<img style="max-width: 100%" class="network-image" src="img/main/eth.png" alt="eth" />
<p class="text network-text">Ethereum</p>
</div>
<div class="main-network">
<img style="max-width: 100%" class="network-image" src="img/main/bsc.png" alt="bsc" />
<p class="text network-text">BNB Chain</p>
</div>
<div class="main-network">
<img style="max-width: 100%" class="network-image" src="img/main/polygon.png" alt="polygon" />
<p class="text network-text">Polygon</p>
</div>
<div class="main-network">
<img style="max-width: 100%" class="network-image" src="img/main/optimism.png" alt="optimism" />
<p class="text network-text">Optimism</p>
</div>
<div class="main-network">