-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1169 lines (1169 loc) · 69.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
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><!-- This site was created in Webflow. https://www.webflow.com -->
<!-- Last Published: Tue May 02 2023 18:26:09 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="6446bf57f8980fba316ce257" data-wf-site="63f337249f8052b7c2e77906">
<head>
<meta charset="utf-8">
<title>Supercharge DeFi with ThirdFi</title>
<meta content="Build, Trade, Invest and manage DeFi apps easily with ThirdFi’s API, SDK and Developer Tools." name="description">
<meta content="Supercharge DeFi with ThirdFi" property="og:title">
<meta content="Build, Trade, Invest and manage DeFi apps easily with ThirdFi’s API, SDK and Developer Tools." property="og:description">
<meta content="https://uploads-ssl.webflow.com/63f337249f8052b7c2e77906/6426fcc9e3b5873b36887aee_Screenshot_2023-03-31_at_9_01_00_PM-transformed.png" property="og:image">
<meta content="Supercharge DeFi with ThirdFi" property="twitter:title">
<meta content="Build, Trade, Invest and manage DeFi apps easily with ThirdFi’s API, SDK and Developer Tools." property="twitter:description">
<meta content="https://uploads-ssl.webflow.com/63f337249f8052b7c2e77906/6426fcc9e3b5873b36887aee_Screenshot_2023-03-31_at_9_01_00_PM-transformed.png" property="twitter:image">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/thirdfi.webflow.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Inter:100,200,300,regular,500,600,700,800,900"] }});</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.png" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.png" rel="apple-touch-icon">
<style>
html {
overflow-x: hidden;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.w-nav-link.w--current{color:#43D9BB!important;}
.w-dropdown-link.w--current{color:#43D9BB!important;}
.w-dropdown-btn, .w-dropdown-toggle {color:#b9b8bb!important;}
.hljs{background:none!important;}
html, body {
max-width: 100%;
overflow-x: hidden;
}
</style>
<!-- Hotjar Tracking Code for Securo -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3290170,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- Schema for Securo -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Securo",
"url": "https://securo.dev",
"logo": "https://uploads-ssl.webflow.com/6290cf3a53480a66812736a9/639978cfe1a389a65dd8d4e2_Securo%20(1).svg",
"sameAs": [
"https://twitter.com/securo_dev",
"https://www.linkedin.com/company/securo-dev/",
"https://github.com/daoventures",
"https://www.youtube.com/@securo_dev"
]
}
</script>
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-YV3VXJRTK7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YV3VXJRTK7');
</script>
<style>
.w-slider-dot {
background-color: transparent;
width: 0.63em !important;
height: 0.63em !important;
border: 1px solid #71767D !important;
}
.w-slider-dot.w-active {
background: linear-gradient(90deg, #42D8BC 0%, #039AEC 100%);
}
</style>
<link rel="stylesheet" href="https://cdn.plyr.io/3.5.6/plyr.css">
<style>
.plyr--stopped.plyr__poster-enabled .plyr__poster {
border-radius: 24px !important;
}
.plyr__control--overlaid {
background: #333333 !important;
}
.plyr--full-ui input[type=range] {
color: #333333 !important;
}
.plyr--video .plyr__controls {
border-radius: 24px !important;
}
.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
border-radius: 24px !important;
}
.content-wrapper.black {
border-radius: 24px !important;
overflow: hidden !important;
}
.spinner {
position: relative;
color: transparent;
}
.spinner:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 10px;
height: 10px;
margin: -10px 0 0 -10px;
border-radius: 50%;
border: 2px solid #ccc;
border-top-color: #333;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {transform: rotate(360deg);}
}
#user-count.hidden {
visibility: hidden;
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "ThirdFi",
"url": "https://www.thirdfi.org",
"potentialAction": {
"@type": "SearchAction",
"target": "{search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body class="body bg-gradient">
<div>
<div bind="8410a6ac-d7e2-fadd-adef-5d39fc1f1001" class="add-to-footer w-embed w-script">
<!-- This is for the code boxes -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/highlight.min.js" integrity="sha256-1zu+3BnLYV9LdiY85uXMzii3bdrkelyp37e0ZyTAQh0=" crossorigin="anonymous"></script>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('pre code').forEach((block) => {
hljs.highlightBlock(block);
});
});
</script>
<!-- This is for the Table of Contents -->
<script>
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
const id = entry.target.getAttribute("id");
if (entry.isIntersecting) {
document.querySelectorAll(".active").forEach((z) => {
z.classList.remove("active")
});
document.querySelector(`a[href="#${id}"]`).classList.add("active");
}
});
}, { rootMargin: '0px 0px -75% 0px' });
</script>
<script>
document.getElementById("content").querySelectorAll("h2").forEach(function(heading, i) { // runs a function for all h2 elements inside your rich text element
heading.setAttribute("id", "toc-" + i); // gives each h2 a unique id
observer.observe(heading);
let str = heading.innerHTML; // adds section titles to slugs
str = str.replace(/\s+/g, '-').replace(/[°&\/\\#,+()$~%.'":;*?<>{}]/g, "").toLowerCase(); // replaces spaces with hyphens, removes special characters and extra spaces from the headings, and applies lowercase in slugs
heading.setAttribute("id", str); // gives each heading a unique id
const item = document.createElement("a"); // creates an anchor element called "item" for each h2
item.innerHTML = heading.innerHTML // gives each item the text of the corresponding heading
item.setAttribute("class", "tocitem"); // gives each item the correct class
item.setAttribute("href", "#" + str); // gives each item the correct anchor link
document.querySelector("#toc").appendChild(item); // places each item inside the Table of Contents div
});
</script>
</div>
<div bind="8410a6ac-d7e2-fadd-adef-5d39fc1f1002" class="add-to-header w-embed w-script">
<!-- This is to style the code embed. You can find other themes to style your embed at https://highlightjs.org/ -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/styles/atom-one-dark.min.css" integrity="sha256-GA29iW/iYj9FcuQQktvW45pRzHvZeFfgeFvA4tGVjpM=" crossorigin="anonymous">
<style>
code {
padding: 15px 30px 30px 30px !Important;
margin: 0px !Important;
width: 100%;
border-radius: 4px;
}
.w-embed:after, .w-embed:before {
display: none !important;
}
</style>
<!-- You can remove the extra script tag -->
<script></script>
</div>
</div>
<div bind="8fbeca98-6104-f627-8611-b0de1395a8e0" class="w-embed">
<style>
/* ALL PAGES CSS */
/* Your max width code replaces the code below */
@media only screen and (min-width: 1560px) {
body {font-size: 0.975em;}
}
/* Desktop Only CSS (i.e. hover states) */
@media only screen and (min-width: 992px) {
}
/* Main Variables */
:root {
--main-dark: #D3FD50;
--main-light: #0B0B0B;
}
/* Global Styles */
::selection {
background: var(--main-dark);
color: var(--main-light);
text-shadow: none;
}
img::selection, svg::selection {
background: transparent;
}
/* Link color inherits from parent font color */
a {
color: inherit;
}
/* Disable / enable clicking on an element and its children */
.no-click {
pointer-events: none;
}
.can-click {
pointer-events: auto;
}
</style>
</div>
<div class="parent-wrapper">
<div bind="56da26f6-4135-f88f-1f1f-847e3db1ab57" data-animation="default" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="navbar w-nav">
<div class="nav-bg-color"></div>
<div class="nav-padding"></div>
<div class="container relative-1 tablet-side-pad">
<div class="flex-apart align-center">
<a href="#" class="logo-wrap tablet-only w-inline-block"><img src="images/Logo.png" loading="lazy" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"20vw"},{"max":991,"size":"15vw"},{"max":10000,"size":"100vw"}]" alt="" class="logo"></a>
<nav role="navigation" class="nav-wrap w-nav-menu">
<a href="index.html" aria-current="page" class="logo-wrap tablet-hide w-inline-block w--current"><img src="images/THIRDFI_1.svg" loading="lazy" alt="" class="logo"></a>
<div class="nav-center-align">
<a href="products.html" class="nav--link hide w-nav-link">
<div>Products</div>
</a>
<a href="index.html" aria-current="page" class="nav--link w-nav-link w--current">
<div>Home</div>
</a>
<a href="enterprise.html" class="nav--link w-nav-link">
<div>Enterprise</div>
</a>
<div data-hover="true" data-delay="0" bind="56da26f6-4135-f88f-1f1f-847e3db1ab68" class="blx-b-dropdown-1 hide w-dropdown">
<div class="blx-b-dropdown-open-1 w-dropdown-toggle">
<div class="nav-text">Product</div>
<div bind="56da26f6-4135-f88f-1f1f-847e3db1ab6c" class="icon w-embed"><svg width="100%" height="100%" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 16L6 10H18L12 16Z" fill="currentColor"></path>
</svg></div>
</div>
<nav class="blx-b-dropdown-list-1 w-dropdown-list">
<div class="blx-b-container-list-1">
<div class="blx-b-wrap-grid-1">
<div class="blx-b-container-grid-1">
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475cd-316ce257" class="blx-b-grid-list-wrap-link-heading-1-1">
<div class="blx-wrap-heading-1-1">
<a href="#" class="blx-grid-heading-1">Solutions</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475d1-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Swap</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475d5-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Pay</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475d9-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Invest</a>
</div>
</div>
</div>
<div class="blx-b-container-grid-1">
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475de-316ce257" class="blx-b-grid-list-wrap-link-heading-1-1">
<div class="blx-wrap-heading-1-1">
<a href="#" class="blx-grid-heading-1">Use cases</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475e2-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Web3 Developers</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475e6-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Crypto Neobanks & Fintech</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475ea-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Liquidity Providers</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475ee-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- DeFi Traders</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e064475f2-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="#" class="blx-b-grid-link-1">- Crypto Startups</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<a href="about.html" class="nav--link w-nav-link">
<div>About</div>
</a>
<div data-hover="true" data-delay="0" bind="56da26f6-4135-f88f-1f1f-847e3db1ab9c" class="blx-b-dropdown-1 w-dropdown">
<div class="blx-b-dropdown-open-1 w-dropdown-toggle">
<div class="nav-text">Doc</div>
<div bind="56da26f6-4135-f88f-1f1f-847e3db1aba0" class="icon w-embed"><svg width="1em" height="1em" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 16L6 10H18L12 16Z" fill="currentColor"></path>
</svg></div>
</div>
<nav class="blx-b-dropdown-list-1 w-dropdown-list">
<div class="blx-b-container-list-1 two">
<div class="blx-b-wrap-grid-1 one">
<div class="blx-b-container-grid-1">
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e06447602-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="https://thirdfi.readme.io/reference/introduction" target="_blank" class="blx-b-grid-link-1">API</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e06447606-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="https://docs.thirdfi.org/" target="_blank" class="blx-b-grid-link-1">Documentation</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e0644760a-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="https://www.blog.thirdfi.org/" target="_blank" class="blx-b-grid-link-1">Blog</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<div data-hover="true" data-delay="0" bind="ae3ac8a4-9ed6-0bcf-5424-7e981d0e6962" class="blx-b-dropdown-1 w-dropdown">
<div class="blx-b-dropdown-open-1 w-dropdown-toggle">
<div class="nav-text">Grants</div>
<div bind="ae3ac8a4-9ed6-0bcf-5424-7e981d0e6966" class="icon w-embed"><svg width="1em" height="1em" viewbox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
<path d="M12 16L6 10H18L12 16Z" fill="currentColor"></path>
</svg></div>
</div>
<nav class="blx-b-dropdown-list-1 w-dropdown-list">
<div class="blx-b-container-list-1 two">
<div class="blx-b-wrap-grid-1 one">
<div class="blx-b-container-grid-1 two">
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e06447617-316ce257" class="blx-b-grid-wrap-link-1">
<div class="blx-b-grid-wrap-heading-1">
<a href="rfb-request-for-builders.html" class="blx-b-grid-link-1">(RFB) Request for Builders</a>
</div>
</div>
<div id="w-node-ca9a3462-2c08-8bd2-45f7-1c3e0644761b-316ce257" class="blx-b-grid-wrap-link-1 hide">
<div class="blx-b-grid-wrap-heading-1">
<a href="buidl-fest.html" class="blx-b-grid-link-1">BUIDL Fest</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<div class="signup-wrapper">
<a href="https://app.thirdfi.org/" target="_blank" class="nav--link w-nav-link">
<div class="text-block-35">Log in</div>
</a>
<div class="button-border-gradient">
<a href="https://app.thirdfi.org/register" target="_blank" class="button w-inline-block">
<div>Start For Free</div>
</a>
</div>
</div>
</nav>
<div class="menu-button-2 w-nav-button">
<div class="menu-icon-2">
<div class="menu-icon_line-top"></div>
<div class="menu-icon_line-middle">
<div class="menu-icon_line-middle-inner"></div>
</div>
<div class="menu-icon_line-bottom"></div>
</div>
</div>
</div>
</div>
<div class="nav-padding"></div>
</div>
<div class="section side-100-120 position-relative wf-section">
<div class="padding-279-143">
<div class="container flex-apart">
<div class="wrap-left max-488px">
<div class="bg-text-gradient">
<div class="m-max-300px">
<h1 class="bold-56px inline-text">Supercharge DeFi with ThirdFi</h1><img src="images/high-voltage_26a1-1.png" loading="lazy" data-sizes="[{"max":479,"size":"40px"},{"max":767,"size":"7vw"},{"max":991,"size":"5vw"},{"max":10000,"size":"3vw"}]" alt="" class="icon-max-54">
</div>
</div>
<div class="padding-20-40">
<div class="max-420px">
<p class="para-18px">Build, Trade, Invest and manage DeFi apps easily with ThirdFi’s API, SDK and Developer Tools.</p>
</div>
</div>
<div class="button-wrapper">
<div class="button-border-gradient">
<a href="https://app.thirdfi.org/register" target="_blank" class="button w-inline-block">
<div>Start For Free</div>
</a>
</div>
<div class="button-border-gradient transparent">
<a href="#video" class="button transparent w-inline-block">
<div>Watch Demo</div>
</a>
</div>
</div>
</div>
<div class="wrap-right max-600px tablet-top-460px"><img src="images/Column.svg" loading="lazy" alt="" class="width-100"></div>
</div>
</div>
<div class="hero-gradient-one"></div>
<div class="hero-gradient-two"></div>
</div>
<div class="section side-230-230 bg-color-000209 wf-section">
<div class="padding-44-32">
<div class="container">
<div class="flex-apart align-bottom">
<div class="metric">
<div id="user-count" class="bold-34px spinner"><span class="counterup">0</span></div>
<div class="bg-text-gradient">
<div class="bold-17px">Number of users</div>
</div>
</div>
<!-- <div class="number-line"></div>
<div class="metric">
<div id="api-calls" class="bold-34px spinner"><span class="counterup">0</span></div>
<div class="bg-text-gradient">
<div class="bold-17px">API requests handled</div>
</div>
</div>
<div class="number-line m-hide"></div>
<div class="metric">
<div id="tx-count" class="bold-34px spinner"><span class="counterup">0</span></div>
<div class="bg-text-gradient">
<div class="bold-17px">Total Transactions</div>
</div>
</div> -->
<div class="number-line"></div>
<div class="metric">
<div id="tx-vol" class="bold-34px spinner"><span class="counterup">$0</span></div>
<div class="bg-text-gradient">
<div class="bold-17px">Transaction Volume</div>
</div>
</div>
<div class="number-line"></div>
<div class="metric">
<div id="revenue" class="bold-34px spinner"><span class="counterup">$0</span></div>
<div class="bg-text-gradient">
<div class="bold-17px">Revenue</div>
</div>
</div>
</div>
<div class="padding-top-76px">
<div class="bg-text-gradient">
<h2 class="bold-32px text-align-center">L1, L2 Network and DeFi Protocols</h2>
</div>
<div id="w-node-_139fcd89-08a5-07b6-6581-598d8f1891a2-316ce257" class="padding-top-12px">
<div class="w-layout-grid grid-4"><img src="images/Uniswap.png" loading="lazy" id="w-node-_23f42cca-3c1c-3d43-f0d2-a75f5e3ca7be-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/sushiswap.png" loading="lazy" id="w-node-_7ff5d57d-aae0-f9bc-b262-ac90c3d01a4d-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/pancakeswap.png" loading="lazy" id="w-node-b82ac8c1-efb9-3d2f-90ff-da5150b7426c-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/quickswap.png" loading="lazy" id="w-node-e71120da-464c-4546-2531-8a0380c933ea-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/traderjoe.png" loading="lazy" id="w-node-_037023f0-70ea-a591-0921-7d63a7822a92-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/VVS.png" loading="lazy" id="w-node-_0d3902c3-0970-f4e6-aedf-f85307c5f0ed-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/velodrome.png" loading="lazy" id="w-node-_98a9960c-a2f7-dfe5-5730-0fc7ef88c071-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/kuswap.png" loading="lazy" id="w-node-_298caf02-becd-ba3f-c341-b8f381a022ae-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Aave.png" loading="lazy" id="w-node-_0d8c6b9c-e251-6cbf-2fdf-ec3a6a2ad26d-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Ethereum.png" loading="lazy" id="w-node-_3a507129-6fdf-c989-64e2-b0c64a110fbd-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/BNB-Chain.png" loading="lazy" id="w-node-_27da3c4c-49f0-8f85-82d6-4b74fda87456-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Polygon.png" loading="lazy" id="w-node-_40460fd0-0db7-e35d-dfd3-cca886d6870c-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Optimism.png" loading="lazy" id="w-node-_74b96848-b1c2-f75f-c644-e090a348285d-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Avalanche.png" loading="lazy" id="w-node-_8f7ce1b9-78ac-4422-3aad-9ed56ac13577-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Cronos.png" loading="lazy" id="w-node-_25b26220-8b87-046b-b210-49937e392c95-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/OKX.png" loading="lazy" id="w-node-_04c5931d-9c70-e7e9-7b70-3ff4147e607d-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Kucoin.png" loading="lazy" id="w-node-_20d7ae1d-a960-bbee-9c10-cbb3ea4393de-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Conflux.png" loading="lazy" id="w-node-_498496b7-19ab-112e-dd37-e1c05cfa1ce3-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Venus.png" loading="lazy" id="w-node-e9e51abd-5c90-4a02-9900-2c8e063eba5e-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"><img src="images/Nautilus.png" loading="lazy" id="w-node-_26079961-9bb9-e95c-1021-20b2d1929e7d-316ce257" data-sizes="[{"max":479,"size":"100vw"},{"max":767,"size":"88vw"},{"max":991,"size":"91vw"},{"max":10000,"size":"71vw"}]" alt="" class="width-100 companies"></div>
</div>
</div>
</div>
</div>
</div>
<div class="section side-120-120 position-relative wf-section">
<div class="padding-top-64px">
<div class="container">
<div class="padding-bottom-57px">
<div class="bg-text-gradient">
<h2 class="bold-32px text-align-center">DeFi Solutions for multiple Use-Cases</h2>
</div>
</div>
<div class="w-layout-grid grid-4-col">
<div id="w-node-_1cfbdb56-5bc5-722e-be51-cb54c502156e-316ce257" class="card-gradient">
<div class="card-dark-color"><img src="images/Group-1000005016.svg" loading="lazy" alt="" class="max-86px">
<div class="padding-25-10">
<div class="bg-text-gradient">
<div class="bold-20px">Developers</div>
</div>
</div>
<p class="para-16px">Use existing web2 development framework to access DeFi with powerful API, open source SDK and developer tools.</p>
</div>
</div>
<div id="w-node-b90d822f-6f39-e140-67bf-9d018659b607-316ce257" class="card-gradient">
<div class="card-dark-color"><img src="images/Group-1000005016-1.svg" loading="lazy" alt="" class="max-86px">
<div class="padding-25-10">
<div class="bg-text-gradient">
<div class="bold-20px">Liquidity provider</div>
</div>
</div>
<p class="para-16px">Earn yield according to your risk appetite, with 1-click API on multi-DeFi protocols; DeXes and AMMs</p>
</div>
</div>
<div id="w-node-_3d531b11-caa5-b2f5-bd9c-3455fec822c8-316ce257" class="card-gradient">
<div class="card-dark-color"><img src="images/Group-1000005016-2.svg" loading="lazy" alt="" class="max-86px">
<div class="padding-25-10">
<div class="bg-text-gradient">
<div class="bold-20px">DeFi traders</div>
</div>
</div>
<p class="para-16px">Execute trading strategies and access to spot and derivatives DeFi protocols on multi-chain network</p>
</div>
</div>
<div id="w-node-a0d0c9b7-8529-3915-1747-9215f2bfd4dd-316ce257" class="card-gradient">
<div class="card-dark-color"><img src="images/Group-1000005016-3.svg" loading="lazy" alt="" class="max-86px">
<div class="padding-25-10">
<div class="bg-text-gradient">
<div class="bold-20px">Web3 startup</div>
</div>
</div>
<p class="para-16px">Build with ThirdFi's account abstraction, MPC wallet management and on-ramp crypto payment solutions</p>
</div>
</div>
</div>
<div id="video" class="padding-top-128px">
<div class="bg-text-gradient">
<h2 class="bold-32px text-align-center">Watch it in action!</h2>
</div>
<div class="padding-top-57px">
<div bind="c084b370-dff7-ef36-8ee1-836718249f2c" class="image-max-747px w-embed">
<div class="js-player" data-plyr-provider="youtube" data-plyr-embed-id="NB0sxm5u5do"></div>
</div>
</div>
</div>
<div class="padding-124-102">
<div class="line-100 max-1000px"></div>
</div>
<div class="padding-bottom-80px">
<div class="bg-text-gradient">
<h2 class="bold-32px text-align-center">Connect to Web3 easily</h2>
</div>
<div class="max-600px">
<div class="padding-top-12px">
<div class="para-18px align-center">Powerful All-in-one API solution to integrate decentralized technologies into your apps, backends, and products.</div>
</div>
</div>
</div>
<div data-easing="linear" data-current="Tab 1" data-duration-in="0" data-duration-out="0" class="row flex-center w-tabs">
<div class="col _2col tab-menu w-tab-menu">
<a data-w-tab="Tab 1" class="tab-link w-inline-block w-tab-link w--current">
<h2 class="bold-56px">Token Swap</h2>
<div class="tab_text-wrapperss">
<p class="para-18px">Swap tokens between many blockchain networks in your applications in a matter of minutes - even gasless.<br><br>Powered by </p><img loading="lazy" src="images/635efa6f60eb5a3a3ba6288c_Biconomy-White-Wordmark-1.svg" alt="" class="max-100px top-6px little-small">
</div>
</a>
<a data-w-tab="Tab 2" class="tab-link w-inline-block w-tab-link">
<h2 class="bold-56px">Index Funds</h2>
<div class="tab_text-wrapperss">
<p class="para-18px">Deploy capital into DeFi liquidity pools and index funds directly from your applications with simpler integrations.<br><br>Supported by</p>
<div class="gap-24px top-8px"><img loading="lazy" src="images/image-25.svg" alt="" class="max-40px"><img loading="lazy" src="images/image-32.svg" alt="" class="max-40px"></div>
</div>
</a>
<a data-w-tab="Tab 3" class="tab-link w-inline-block w-tab-link">
<h2 class="bold-56px">Fiat-to-crypto (on-ramp)</h2>
<div class="tab_text-wrapperss">
<p class="para-18px">Provide a fiat-to-crypto service for users to buy crypto assets with fiat currency and invest into DeFi right in your application.<br><br>Powered by</p><img width="111" loading="lazy" src="images/transak-logo-1.svg" alt="" class="max-100px top-6px little-small">
</div>
</a>
</div>
<div class="col _2col overflow-visible w-tab-content">
<div data-w-tab="Tab 1" class="tab_pane w-tab-pane w--tab-active">
<div class="tab_illo-wrapper"><img loading="lazy" src="images/Group-1000004993.svg" alt="" class="code-header">
<div bind="6d1f4b3d-3024-f078-438e-db50af8ec5e6" class="code-embed w-embed">
<pre class="highlight pre-shadow"><code class="js">var axios = require('axios');
var data = JSON.stringify({
"tokenIn": "WBTC",
"tokenOut": "USDC",
"amount": "1",
"chain":"ethereum",
"isNative": false,
"slippagePercentage": "5",
"exactIn": true,
"userEmail": "YOUR_THIRDFI_USER_EMAIL_ADDRESS",
"successURL": "https://google.com",
"cancelURL": "https://google.com"
});
var config = {
method: 'post',
url: 'https://api.thirdfi.org/api/v1/sessions/swap',
headers: {
'x-sec-key': 'YOUR_API_KEY',
'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS',
'x-sec-sign': 'YOUR_SECRET_KEY',
'Content-Type': 'application/json'
},
data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error.response.data);
});</code></pre>
</div>
<div class="shape-3 big-size connect-bg"></div>
</div>
</div>
<div data-w-tab="Tab 2" class="tab_pane w-tab-pane">
<div class="tab_illo-wrapper"><img loading="lazy" src="images/Group-1000004993.svg" alt="" class="code-header">
<div bind="6d1f4b3d-3024-f078-438e-db50af8ec5eb" class="code-embed w-embed">
<pre class="highlight pre-shadow"><code class="js">var axios = require('axios');
var data = JSON.stringify({
"product": "LCI", // 'LCI', 'MWI'
"type": "deposit", // 'deposit', 'withdraw',
"amount": 1, // Transaction Amount
"userEmail": "YOUR_THIRDFI_USER_EMAIL_ADDRESS"
});
var config = {
method: 'post',
url: 'https://api.thirdfi.org/api/v1/sessions',
headers: {
'x-sec-key': 'YOUR_API_KEY',
'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS',
'x-sec-sign': 'YOUR_SECRET_KEY',
'Content-Type': 'application/json'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});</code></pre>
</div>
<div class="shape-3 big-size connect-bg"></div>
</div>
</div>
<div data-w-tab="Tab 3" class="tab_pane w-tab-pane">
<div class="tab_illo-wrapper"><img loading="lazy" src="images/Group-1000004993.svg" alt="" class="code-header">
<div bind="6d1f4b3d-3024-f078-438e-db50af8ec5f0" class="code-embed w-embed">
<pre class="highlight pre-shadow"><code class="js">var axios = require('axios');
var data = JSON.stringify({
"network": "ethereum",
"walletAddress": "YOUR_WALLET_ADDRESS",
"emailAddress": "YOUR_THIRDFI_EMAIL_ADDRESS",
"trxType": "Buy",
"fiatCurrency": "USD",
"fiatAmount": 141,
"cryptoCurrency": "USDT",
"redirectURL": "https://www.google.com",
"isDisableCrypto": false,
"cancellationUrl": "https://www.twitter.com",
"paymentMethod": "credit_debit_card"
});
var config = {
method: 'post',
url: 'https://api.thirdfi.org/api/v1/payment',
headers: {
'x-sec-key': 'YOUR_API_KEY',
'x-sec-ts': 'CURRENT_TIMESTAMP_IN_SECONDS',
'x-sec-sign': 'YOUR_SECRET_KEY',
'Content-Type': 'application/json'
},
data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error.response.data);
});</code></pre>
</div>
<div class="shape-3 big-size connect-bg"></div>
</div>
</div>
</div>
</div>
<div class="padding-124-102">
<div class="line-100 max-1000px"></div>
</div>
</div>
</div>
<div class="hero-gradient-right"></div>
<div class="hero-gradient-left"></div>
<div class="hero-gradient-center"></div>
</div>
<div class="section side-240-240 position-relative wf-section">
<div class="container">
<div data-delay="3000" data-animation="outin" class="slider w-slider" data-autoplay="true" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="true">
<div class="w-slider-mask">
<div class="w-slide">
<div class="card-gradient">
<div class="card-dark-color all-side-64px">
<p class="para-18px">“Happy to see ThirdFi joining the KCC Ecosystem and jointly exploring the future of web3, to provide a better development environment for on-chain developers and a better experience for users.”</p>
<div class="padding-40-16"><img src="images/Image.png" loading="lazy" data-sizes="[{"max":479,"size":"43vw"},{"max":767,"size":"8vw"},{"max":991,"size":"6vw"},{"max":10000,"size":"4vw"}]" alt="" class="max-60px"></div>
<div class="padding-bottom-4px">
<div class="bold-24px">Leandre</div>
</div>
<div class="para-14px">Core Member- KCC GoDAO</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="card-gradient">
<div class="card-dark-color all-side-64px">
<p class="para-18px">“OKC into ThirdFi is an exciting addition to our DeFi ecosystem. ThirdFi’s all-in-one API solution makes it easier for Web3 developers to build, use and manage DeFi apps in OKC’s DeFi ecosystem easily with ThirdFi’s API, SDK and Developer Tools. We are excited to see the positive impact this collaboration will have on our ecosystem.”</p>
<div class="padding-40-16"><img src="images/Ellipse-1083.png" loading="lazy" data-sizes="[{"max":479,"size":"43vw"},{"max":767,"size":"8vw"},{"max":991,"size":"6vw"},{"max":10000,"size":"4vw"}]" alt="" class="max-60px"></div>
<div class="padding-bottom-4px">
<div class="bold-24px"><strong>Chai Li</strong></div>
</div>
<div class="para-14px">Head - OKC Ecosystem Development</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="card-gradient">
<div class="card-dark-color all-side-64px">
<p class="para-18px">“I’m also pleased to announce KuCoin Wallet has entered into the strategic partnership with ThirdFi, one of the most powerful developer tools in the Web3 realm. Our values are aligned in building a rigorous, innovative, and developer-friendly product and thus offering the web3 community a seamless and secure multi-chain experience.”</p>
<div class="padding-40-16"><img src="images/Image_1.png" loading="lazy" data-sizes="[{"max":479,"size":"43vw"},{"max":767,"size":"8vw"},{"max":991,"size":"6vw"},{"max":10000,"size":"4vw"}]" alt="" class="max-60px"></div>
<div class="padding-bottom-4px">
<div class="bold-24px"><strong>Jeff Haul</strong></div>
</div>
<div class="para-14px">Head - KuCoin Wallet</div>
</div>
</div>
</div>
<div class="w-slide">
<div class="card-gradient">
<div class="card-dark-color all-side-64px">
<p class="para-18px">“ThirdFi is really user-friendly and easily accessible, with simple and clear documentation. I loved it’s speed and data accuracy. Integrating ThirdFi API was pretty simple and testing it sand-boxed environment makes it more secure.”</p>
<div class="padding-40-16"><img src="images/Ellipse-1083_1.png" loading="lazy" data-sizes="[{"max":479,"size":"43vw"},{"max":767,"size":"8vw"},{"max":991,"size":"6vw"},{"max":10000,"size":"4vw"}]" alt="" class="max-60px"></div>
<div class="padding-bottom-4px">
<div class="bold-24px">Ankit Singh</div>
</div>
<div class="para-14px">Tech Enthusiast</div>
</div>
</div>
</div>
</div>
<div class="hide w-slider-arrow-left">
<div bind="ceabd026-57fc-dede-b438-6ab1f231b8f6" class="w-icon-slider-left"></div>
</div>
<div class="hide w-slider-arrow-right">
<div bind="ceabd026-57fc-dede-b438-6ab1f231b8f8" class="w-icon-slider-right"></div>
</div>
<div class="slider-dot w-slider-nav w-round"></div>
</div>
<div class="padding-198-98">
<div class="bg-text-gradient">
<h2 class="bold-17px text-align-center">Featured on</h2>
</div>
<div class="padding-top-32px">
<div class="w-layout-grid grid-4-col max-696-59">
<a href="https://www.benzinga.com/pressreleases/23/02/n31082850/thirdfi-announces-web3-infrastructure-launch-to-onboard-1-billion-people-in-the-next-10-years" target="_blank" class="w-inline-block"><img src="images/Logo-Wrapper.png" loading="lazy" id="w-node-e9258e0b-0d58-afff-ab0b-5c2d97d47640-316ce257" data-sizes="[{"max":479,"size":"154.078125px"},{"max":767,"size":"19vw"},{"max":991,"size":"14vw"},{"max":10000,"size":"10vw"}]" alt="" class="max-154px"></a>
<a href="http://finance.yahoo.com/news/thirdfi-announces-web3-infrastructure-launch-062400731.html" target="_blank" class="w-inline-block"><img src="images/Logo-Wrapper-1.png" loading="lazy" id="w-node-_2dc953a5-c41c-4bd7-b9e4-654871b17967-316ce257" data-sizes="[{"max":479,"size":"99.0390625px"},{"max":767,"size":"12vw"},{"max":991,"size":"9vw"},{"max":10000,"size":"6vw"}]" alt="" class="max-99px"></a>
<a href="https://seekingalpha.com/pr/19144677-thirdfi-announces-web3-infrastructure-launch-to-onboard-1-billion-people-in-next-10-years" target="_blank" class="w-inline-block"><img src="images/Logo-Wrapper-2.png" loading="lazy" id="w-node-_95cd0fe5-aae1-00cd-a2c7-48ff0c5d4ae6-316ce257" data-sizes="[{"max":479,"size":"140.953125px"},{"max":767,"size":"18vw"},{"max":991,"size":"13vw"},{"max":10000,"size":"9vw"}]" alt="" class="max-141px"></a>
<a href="https://www.marketwatch.com/press-release/thirdfi-announces-web3-infrastructure-launch-to-onboard-1-billion-people-in-the-next-10-years-2023-02-28" target="_blank" class="w-inline-block"><img src="images/Logo-Wrapper-3.png" loading="lazy" id="w-node-cd42b136-93d5-8b2e-c64b-5916ead7c2ca-316ce257" data-sizes="[{"max":479,"size":"158.078125px"},{"max":767,"size":"20vw"},{"max":991,"size":"15vw"},{"max":10000,"size":"10vw"}]" alt="" class="max-158px"></a>
</div>
</div>
<div class="padding-124-102">
<div class="line-100 max-1000px"></div>
</div>
<div class="padding-bottom-55px">
<h2 class="bold-32px text-align-center">Unlock the Possibilities of Web3 Finance!</h2>
</div>
<div class="button-wrapper position-relative">
<div class="button-border-gradient align-center">
<a href="https://app.thirdfi.org/register" target="_blank" class="button w-inline-block">
<div>Start For Free</div>
</a>
</div><img src="images/Arrow.svg" loading="lazy" alt="" class="arrow">
</div>
</div>
</div>
<div class="hero-gradient-two two"></div>
</div>
<div bind="39858d6d-d33f-2f8d-df4f-e0920963787b" class="footer wf-section">
<div class="container flex-apart top-align">
<div id="w-node-_39858d6d-d33f-2f8d-df4f-e0920963787d-0963787b" class="footer-colume-one">
<a href="index.html" aria-current="page" class="footer-logo w-inline-block w--current"><img src="images/ThirdFi-Logo.svg" loading="lazy" alt="" class="logo"></a>
<div class="padding-top-12px">
<div class="para-14px">Supercharge DeFi with ThirdFi⚡</div>
</div>
<div class="padding-22-22">
<div class="flex-apart align-left">
<a href="https://github.com/thirdfi" target="_blank" class="social-20px w-inline-block">
<div bind="39858d6d-d33f-2f8d-df4f-e09209637886" class="icon w-embed"><svg width="100%" height="100%" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.475 2 2 6.475 2 12C1.99887 14.0993 2.65882 16.1456 3.88622 17.8487C5.11362 19.5517 6.84615 20.8251 8.838 21.488C9.338 21.575 9.525 21.275 9.525 21.012C9.525 20.775 9.512 19.988 9.512 19.15C7 19.613 6.35 18.538 6.15 17.975C6.037 17.687 5.55 16.8 5.125 16.562C4.775 16.375 4.275 15.912 5.112 15.9C5.9 15.887 6.462 16.625 6.65 16.925C7.55 18.437 8.988 18.012 9.562 17.75C9.65 17.1 9.912 16.663 10.2 16.413C7.975 16.163 5.65 15.3 5.65 11.475C5.65 10.387 6.037 9.488 6.675 8.787C6.575 8.537 6.225 7.512 6.775 6.137C6.775 6.137 7.612 5.875 9.525 7.163C10.3391 6.93706 11.1802 6.82334 12.025 6.825C12.875 6.825 13.725 6.937 14.525 7.162C16.437 5.862 17.275 6.138 17.275 6.138C17.825 7.513 17.475 8.538 17.375 8.788C18.012 9.488 18.4 10.375 18.4 11.475C18.4 15.313 16.063 16.163 13.838 16.413C14.2 16.725 14.513 17.325 14.513 18.263C14.513 19.6 14.5 20.675 14.5 21.013C14.5 21.275 14.688 21.587 15.188 21.487C17.173 20.8168 18.8979 19.541 20.1199 17.8392C21.3419 16.1373 21.9994 14.0951 22 12C22 6.475 17.525 2 12 2Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://twitter.com/thirdfiorg" target="_blank" class="social-20px w-inline-block">
<div bind="39858d6d-d33f-2f8d-df4f-e09209637888" class="icon w-embed"><svg width="100%" height="100%" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.1623 5.65593C21.3989 5.99362 20.5893 6.2154 19.7603 6.31393C20.634 5.79136 21.288 4.96894 21.6003 3.99993C20.7803 4.48793 19.8813 4.82993 18.9443 5.01493C18.3149 4.34151 17.4807 3.89489 16.5713 3.74451C15.6618 3.59413 14.7282 3.74842 13.9156 4.18338C13.1029 4.61834 12.4567 5.30961 12.0774 6.14972C11.6981 6.98983 11.607 7.93171 11.8183 8.82893C10.1554 8.74558 8.52863 8.31345 7.04358 7.56059C5.55854 6.80773 4.24842 5.75097 3.1983 4.45893C2.82659 5.09738 2.63125 5.82315 2.6323 6.56193C2.6323 8.01193 3.3703 9.29293 4.4923 10.0429C3.82831 10.022 3.17893 9.84271 2.5983 9.51993V9.57193C2.5985 10.5376 2.93267 11.4735 3.54414 12.221C4.15562 12.9684 5.00678 13.4814 5.9533 13.6729C5.33691 13.84 4.6906 13.8646 4.0633 13.7449C4.33016 14.5762 4.8503 15.3031 5.55089 15.824C6.25147 16.3449 7.09743 16.6337 7.9703 16.6499C7.10278 17.3313 6.10947 17.8349 5.04718 18.1321C3.98488 18.4293 2.87442 18.5142 1.7793 18.3819C3.69099 19.6114 5.91639 20.264 8.1893 20.2619C15.8823 20.2619 20.0893 13.8889 20.0893 8.36193C20.0893 8.18193 20.0843 7.99993 20.0763 7.82193C20.8952 7.23009 21.6019 6.49695 22.1633 5.65693L22.1623 5.65593Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://www.linkedin.com/company/thirdfiorg/" target="_blank" class="social-20px w-inline-block">
<div bind="39858d6d-d33f-2f8d-df4f-e0920963788a" class="icon w-embed"><svg width="100%" height="100%" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.335 18.339H15.67V14.162C15.67 13.166 15.65 11.884 14.28 11.884C12.891 11.884 12.679 12.968 12.679 14.089V18.339H10.013V9.75H12.573V10.92H12.608C12.966 10.246 13.836 9.533 15.136 9.533C17.836 9.533 18.336 11.311 18.336 13.624V18.339H18.335ZM7.003 8.575C6.79956 8.57526 6.59806 8.53537 6.41006 8.45761C6.22207 8.37984 6.05127 8.26574 5.90746 8.12184C5.76365 7.97793 5.64965 7.80706 5.57201 7.61901C5.49437 7.43097 5.4546 7.22944 5.455 7.026C5.4552 6.71983 5.54618 6.4206 5.71644 6.16615C5.8867 5.91169 6.12859 5.71343 6.41153 5.59645C6.69447 5.47947 7.00574 5.44902 7.30598 5.50894C7.60622 5.56886 7.88196 5.71647 8.09831 5.93311C8.31466 6.14974 8.46191 6.42566 8.52145 6.72598C8.58099 7.0263 8.55013 7.33753 8.43278 7.62032C8.31544 7.9031 8.11687 8.14474 7.86219 8.31467C7.60751 8.4846 7.30817 8.5752 7.002 8.575H7.003ZM8.339 18.339H5.666V9.75H8.34V18.339H8.339ZM19.67 3H4.329C3.593 3 3 3.58 3 4.297V19.703C3 20.42 3.594 21 4.328 21H19.666C20.4 21 21 20.42 21 19.703V4.297C21 3.58 20.4 3 19.666 3H19.669H19.67Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://www.youtube.com/channel/UCTJoXywam24P7nWlqCdPGZQ" target="_blank" class="social-24px w-inline-block">
<div bind="39858d6d-d33f-2f8d-df4f-e0920963788c" class="icon width-24px w-embed"><svg width="100%" height="100%" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.543 6.498C22 8.28 22 12 22 12C22 12 22 15.72 21.543 17.502C21.289 18.487 20.546 19.262 19.605 19.524C17.896 20 12 20 12 20C12 20 6.107 20 4.395 19.524C3.45 19.258 2.708 18.484 2.457 17.502C2 15.72 2 12 2 12C2 12 2 8.28 2.457 6.498C2.711 5.513 3.454 4.738 4.395 4.476C6.107 4 12 4 12 4C12 4 17.896 4 19.605 4.476C20.55 4.742 21.292 5.516 21.543 6.498V6.498ZM10 15.5L16 12L10 8.5V15.5Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://discord.com/invite/tcZ42jHZ5N" target="_blank" class="social-24px w-inline-block">
<div bind="39858d6d-d33f-2f8d-df4f-e0920963788e" class="icon width-24px w-embed"><svg xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 24 20" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M20.3733 2.51885C20.3733 2.51885 18.3619 1.17086 15.1805 0.972656L14.7391 2.23165C14.7391 2.22285 13.3257 2.01105 13.2343 2.00225C12.4329 1.92325 11.5777 1.93205 10.7739 1.99465C10.6799 2.00225 9.26153 2.23165 9.26153 2.23165L8.81893 0.972656C5.63754 1.17206 3.62615 2.51885 3.62615 2.51885C-1.12522 9.85581 0.15777 15.8888 0.15777 15.8888C1.74896 17.568 6.32234 19.0264 6.32234 19.0264L7.53733 16.9046L5.59255 16.0204L5.87954 15.4462C7.55114 16.2814 9.46473 16.7402 11.3295 16.8406C12.9973 16.9296 14.7015 16.6726 16.2915 16.176C16.6037 16.0782 16.9135 15.969 17.2181 15.8486C17.3059 15.8136 18.0947 15.4224 18.1185 15.4462L18.4057 16.0204L16.4607 16.9046L17.6759 19.0264C17.6759 19.0264 22.2505 17.568 23.8417 15.8888C23.8417 15.8888 25.1245 9.85581 20.3733 2.51885ZM8.04533 13.1702C6.85274 13.1702 5.88474 12.1168 5.88474 10.8164C5.88474 9.51721 6.85154 8.46262 8.04533 8.46262C9.23913 8.46262 10.2047 9.51602 10.2047 10.8164C10.2059 12.1168 9.23913 13.1702 8.04533 13.1702ZM15.9541 13.1702C14.7617 13.1702 13.7947 12.1168 13.7947 10.8164C13.7947 9.51721 14.7617 8.46262 15.9541 8.46262C17.1467 8.46262 18.1147 9.51602 18.1147 10.8164C18.1135 12.1168 17.1467 13.1702 15.9541 13.1702Z" fill="currentColor"></path>
</svg></div>
</a>
</div>
</div>
<div class="para-14px no-wrap m-fixed-bottom">© ThirdFi 2023. All Rights Reserved.</div>
</div>
<div class="footer-colume">
<div class="padding-bottom-16px">
<div class="bold-14px">Quick Links</div>
</div>
<div class="padding-bottom-8px">
<a href="index.html" aria-current="page" class="para-14px link-block w--current">Home</a>
</div>
<div class="padding-bottom-8px">
<a href="enterprise.html" class="para-14px link-block">Enterprise</a>
</div>
<div class="padding-bottom-8px">
<a href="about.html" class="para-14px link-block">About</a>
</div>
<div class="padding-bottom-8px">
<a href="rfb-request-for-builders.html" class="para-14px link-block">RFB (Request For Builders)</a>
</div>
<div class="padding-bottom-8px hide">
<a href="buidl-fest.html" class="para-14px link-block">BUIDL Fest</a>
</div>
</div>
<div id="w-node-_2e6ef913-5dd0-75c5-03fd-fc8df32e487e-0963787b" class="footer-colume">
<div class="padding-bottom-16px">
<div class="bold-14px">Doc</div>
</div>
<div class="padding-bottom-8px">
<a href="https://thirdfi.readme.io/reference/introduction" target="_blank" class="para-14px link-block">API</a>
</div>
<div class="padding-bottom-8px">
<a href="https://docs.thirdfi.org/" target="_blank" class="para-14px link-block">Documentation</a>
</div>
<div class="padding-bottom-8px">
<a href="https://www.blog.thirdfi.org/" target="_blank" class="para-14px link-block">Blog</a>
</div>
</div>
<div class="footer-colume">
<div class="padding-bottom-16px">
<div class="bold-14px">Terms & Policies</div>
</div>
<div class="padding-bottom-8px">
<a href="https://thirdfi.s3.us-east-2.amazonaws.com/AML+%26+KYC+policy.pdf" target="_blank" class="para-14px link-block">AML & KYC Policy</a>
</div>
<div class="padding-bottom-8px">
<a href="https://thirdfi.s3.us-east-2.amazonaws.com/Privacy+Policy.pdf" target="_blank" class="para-14px link-block">Privacy Policy</a>
</div>
<div class="padding-bottom-8px">
<a href="https://thirdfi.s3.us-east-2.amazonaws.com/Terms+of+Service.pdf" target="_blank" class="para-14px link-block">Terms of Services</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=63f337249f8052b7c2e77906" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/webflow.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<script>
$('.w-dropdown').each(function() {
var hasActiveLink = $(this).find('.w--current').length > 0;
$(this).find('.w-dropdown-toggle').addBack().toggleClass('w-nav-link w--current', hasActiveLink);
});
</script>
<script>
$('.w-dropdown').each(function() {
var hasActiveLink = $(this).find('.w--current').length > 0;
$(this).find('.w-dropdown-toggle').addBack().toggleClass('dropdown-active', hasActiveLink);
});
</script>
<script src="https://cdn.plyr.io/3.5.6/plyr.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.3.5/axios.min.js" integrity="sha512-nnNHpffPSgINrsR8ZAIgFUIMexORL5tPwsfktOTxVYSv+AUAILuFYWES8IHl+hhIhpFGlKvWFiz9ZEusrPcSBQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const player = Plyr.setup('.js-player');
});
</script>
<script>
// Check if the lastVisit variable is already set in localStorage
var lastVisit = localStorage.getItem("lastVisit");
if (!lastVisit) {
// If it's not set, set it to the current hour
localStorage.setItem("lastVisit", new Date().toISOString().slice(0, 13));
}
var currentHour = new Date().toISOString().slice(0, 13);
// Check if the user visited the website in the last hour
if (lastVisit !== currentHour) {
// Clear the counts variable from localStorage
localStorage.removeItem("counts");
// Update the lastVisit variable to the current hour
localStorage.setItem("lastVisit", currentHour);
}
var counts = JSON.parse(localStorage.getItem("counts"));
const API_URL = "https://api.thirdfi.org/api/v1/public";
async function getUserCount() {
var span = document.getElementById("user-count");
// check if the count object is already stored in local storage
if (counts && counts.userCount) {
// if count is available in local storage, update the span with the saved count
span.innerHTML = counts.userCount.toLocaleString();
span.classList.remove("spinner");
span.style.color = "#71767d";
return;
}
try {
var result = await axios.get(`${API_URL}/customers`);
var { data } = result.data;
var formattedCount = data.toLocaleString();
if (counts && counts.userCount) {
// update the count object in local storage
counts.userCount = data;
} else {
// create a new count object in local storage
counts = { userCount: data, ...counts };
}
// save the count object to local storage
await localStorage.setItem("counts", JSON.stringify(counts));
span.innerHTML = formattedCount;
} catch (ex) {
span.innerHTML = "21,228";
}
span.classList.remove('spinner');
span.style.color = "#71767d";
}
async function getApiCalls() {
var span = document.getElementById("api-calls");
// check if the count object is already stored in local storage
if (counts && counts.apiCount) {
// if count is available in local storage, update the span with the saved count
span.innerHTML = counts.apiCount.toLocaleString();
span.classList.remove("spinner");
span.style.color = "#71767d";
return;
}
try {
var result = await axios.get(`${API_URL}/api-calls`);
var { data } = result.data;
var formattedCount = data.toLocaleString();
if (counts && counts.apiCount) {
// update the count object in local storage
counts.apiCount = data;
} else {
// create a new count object in local storage
counts = { apiCount: data, ...counts };
}
// save the count object to local storage
await localStorage.setItem("counts", JSON.stringify(counts));
span.innerHTML = formattedCount;
} catch (ex) {
span.innerHTML = "404,274";
}
span.classList.remove('spinner');
span.style.color = "#71767d";
}
async function getTxCount() {
var span = document.getElementById("tx-count");
if (counts && counts.txCount) {
// if count is available in local storage, update the span with the saved count
span.innerHTML = counts.txCount.toLocaleString();