-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
924 lines (871 loc) · 68.8 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- grid css -->
<link rel="stylesheet" href="/css/plugins/bootstrap-grid.css">
<!-- font awesome css -->
<link rel="stylesheet" href="/css/plugins/fontawesome.min.css">
<!-- swiper css -->
<link rel="stylesheet" href="/css/plugins/swiper.min.css">
<!-- okai css -->
<link rel="stylesheet" href="/css/style-stylish.css">
<!-- page title -->
<title>Okcash OK - The Leading Multichain, Open Source Digital Cash - OK Token</title>
<meta name="description" content="OK Okcash | Multi-Chain Digital Currency | Secure, Fast, and Sustainable Payments Across Leading Blockchains. The Future of Decentralized Social Payments.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://okcash.org/">
<meta property="og:title" content="Okcash OK - The leading Multichain, Open Source Digital Cash - OK Token">
<meta property="og:description" content="OK Okcash | Multi-Chain Digital Currency | Secure, Fast, and Sustainable Payments Across Leading Blockchains. The Future of Decentralized Social Payments.">
<meta property="og:image" content="https://okcash.org/img/ok-site.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Okcash OK - The Leading Multichain, Open Source Digital Cash - OK Token">
<meta name="twitter:description" content="OK Okcash | Multi-Chain Digital Currency | Secure, Fast, and Sustainable Payments Across Leading Blockchains. The Future of Decentralized Social Payments.">
<meta name="twitter:image" content="https://okcash.org/img/ok-site.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-100132336-1', 'auto');
ga('send', 'pageview');
</script>
<!-- wrapper -->
<div id="smooth-wrapper" class="mil-page-wrapper">
<!-- cursor -->
<div class="mil-cursor-follower"></div>
<!-- cursor end -->
<!-- preloader -->
<div class="mil-preloader">
<div class="mil-preloader-animation">
<div class="mil-pos-abs mil-animation-1">
<p class="mil-head1 mil-m1">Welcome to the </p>
<p class="mil-head1 mil-a2">Future</p>
</div>
<div class="mil-pos-abs mil-animation-2">
<div class="mil-reveal-frame">
<p class="mil-reveal-box"></p>
<p class="mil-head1 mil-m1">OK</p>
</div>
</div>
</div>
</div>
<!-- preloader end -->
<!-- scroll progress -->
<div class="mil-progress-track">
<div class="mil-progress"></div>
</div>
<!-- scroll progress end -->
<!-- fixed elements -->
<div class="mil-fixed">
<div class="mil-top-panel-2">
<div class="container">
<div class="mil-left-side mil-tp-transition" id="swupTpLeft">
<a href="/index.html" class="mil-logo mil-scroll-to" data-no-swup>
<img src="/ok-logo.png" alt="Chain" height="33" class="rounded-circle me-2"> <!-- <i class="far fa-cube"></i> -->
<span>Okcash</span>
</a>
</div>
<div class="mil-onepage-nav" id="swup-opm">
<ul>
<li><a href="#info" class="mil-scroll-to" data-no-swup>Introduction</a></li>
<li><a href="#partners" class="mil-scroll-to" data-no-swup>Partners</a></li>
<li><a href="#info" class="mil-scroll-to" data-no-swup>Resources</a></li>
<li><a href="/faq.html" class="mil-scroll-to" data-no-swup>FAQ</a></li>
<li><a href="#tldr" class="mil-scroll-to" data-no-swup>TLDR</a></li>
<li><a href="https://okcashpro.github.io/okai/" class="mil-scroll-to" target="_blank" data-no-swup>OKai</a></li>
</ul>
</div>
<div class="mil-buttons-tp-frame mil-c-gone">
<div class="mil-buttons">
<div class="mil-tp-btn"><i class="fal fa-seedling"></i></div>
<div class="mil-tp-btn">
<div class="mil-menu-btn"><span></span></div>
</div>
</div>
</div>
</div>
</div>
<div class="mil-menu-frame mil-menu-frame-2">
<div class="mil-menu-window">
<div class="container">
<div class="row mil-no-g">
<div class="col-lg-6">
<div class="mil-left-side">
<div class="mil-menu-part mil-inner-scroll" id="swupMenu">
<ul class="mil-main-menu mil-c-gone">
<li>
<a href="/index.html">Home</a>
</li>
<li class="mil-has-children">
<a href="#.">Introduction</a>
<ul>
<li><a href="/okcash-for-individuals.html" data-no-swup>Individuals</a></li>
<li><a href="/okcash-for-businesses.html" data-no-swup>Businesses</a></li>
<li><a href="/okcash-for-developers.html" data-no-swup>Developers</a></li>
<li><a href="/getting-started.html" data-no-swup>Getting Started</a></li>
<li><a href="/how-it-works.html" data-no-swup>How it works</a></li>
<li><a href="/you-need-to-know.html" data-no-swup>You need to know</a></li>
</ul>
</li>
<li>
<a href="#partners">Partners</a>
</li>
<li class="mil-has-children">
<a href="#.">Resources</a>
<ul>
<li><a href="https://okcash.network" target="_blank">OK Multichain Explorer</a></li>
<li><a href="https://okcash.network/index.html#exchanges" target="_blank">Exchanges</a></li>
<li><a href="https://okcash.network/index.html#staking" target="_blank">Staking</a></li>
<li><a href="/collaborators.html">Collaborators</a></li>
<li><a href="/developer-documentation.html">Documentation</a></li>
<li><a href="https://okcash.network" target="_blank">Branding Kit</a></li>
</ul>
</li>
<li>
<a href="/innovation.html">Innovation</a>
</li>
<li>
<a href="/faq.html">FAQ</a>
</li>
<li>
<a href="#tldr">TLDR</a>
</li>
<li>
<a href="https://okcashpro.github.io/okai/" target="_blank">OKai</a>
</li>
</ul>
</div>
<div class="mil-bottom-part">
<p class="mil-text-sm">© 2014-2025 Okcash Project. Released under the <a href="https://github.com/okcashpro/okcash/blob/master/COPYING" target="_blank" class="mil-text-link mil-a2 mil-c-gone">MIT license</a>.<br>
All trademarks and copyrights belong to their respective owners.</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="mil-right-side">
<div class="mil-links-part">
<ul class="mil-links">
<li><a href="https://okcash.news" target="_blank">Okcash News</a></li>
<li><a href="https://okcash.network" target="_blank">OK Multichain Explorer</a></li>
<li><a href="https://coinmarketcap.com/currencies/okcash/" target="_blank">OK on Coinmarketcap</a></li>
<li><a href="https://www.coingecko.com/en/coins/okcash" target="_blank">OK on Coingecko</a></li>
</ul>
</div>
<div class="mil-blog-part">
<div class="mil-blog-section">
<div class="mil-jcb mil-aic">
<h4 class="mil-head4 mil-mb30">Buy Okcash On</h4>
</div>
<div class="swiper-container mil-blog-slider-sm">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="https://app.uniswap.org/swap?outputCurrency=0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189&inputCurrency=eth" class="mil-blog-card-sm mil-c-gone" target="_blank">
<div class="mil-cover">
<div class="mil-hover-frame">
<img src="/img/blog/9.png" alt="cover">
</div>
</div>
<div class="mil-text-frame">
<h4 class="mil-head6 mil-max-1row-text">Uniswap</h4>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="mil-menu-social">
<ul class="mil-social mil-c-gone">
<li><a href="#." data-no-swup><i class="far fa-cube"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-cube"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-cube"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-cube"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-cube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- fixed elements end -->
<!-- page transition -->
<div class="mil-transition-fade" id="swup">
<div class="mil-transition-frame">
<!-- content -->
<div id="smooth-content" class="mil-content">
<!-- hero -->
<div class="mil-hero-4 mil-up" id="top">
<div id="scene" class="mil-hero-scene">
<div class="mil-anim-frame" data-depth="0.25">
<img src="/img/shapes/6.png" alt="shapes" class="mil-hero-animation" data-depth="0.25">
</div>
<div class="mil-pad-frame" data-depth="0.35">
<div class="mil-shape-pad"></div>
</div>
</div>
<div class="mil-overlay"></div>
<div class="container mil-hero-main mil-relative">
<div class="mil-hero-text">
<i class="fal fa-award mil-mb15"></i>
<p class="mil-stylized mil-m2 mil-mb60">
Join the OK Revolution! 🚀 <br>
Multichain Magic • Since 2014. <br>
Decentralized. For Everyone. </p>
<h1 class="mil-display2 mil-rubber">Multichain <br>Digital <br>Cash.</h1>
<div class="mil-circle-text-frame">
<a href="#scroll" class="mil-circle-text mil-scroll-to mil-c-gone" data-no-swup>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve" data-value="360" class="mil-rotate">
<defs>
<path id="circlePath" d="M 150, 150 m -60, 0 a 60,60 0 0,1 120,0 a 60,60 0 0,1 -120,0 " />
</defs>
<circle cx="150" cy="100" r="75" fill="none" />
<g>
<use xlink:href="#circlePath" fill="none" />
<text style="letter-spacing: 2px">
<!-- circle text -->
<textPath xlink:href="#circlePath">Get Empowered • OK Token • Get Empowered • </textPath>
</text>
</g>
</svg>
<span class="mil-arrow">
<i class="fal fa-arrow-down"></i>
</span>
</a>
</div>
</div>
</div>
</div>
<!-- hero end -->
<!-- counters -->
<div class="mil-p-0-160">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="mil-counter-item mil-stl mil-mb30 mil-768-mb60 mil-up">
<h4 class="mil-up">9<span class="mil-a2">+</span></h4>
<div class="mil-counter-text">
<h5 class="mil-head4 mil-m1 mil-up">Chains</h5>
</div>
</div>
<p class="mil-stylized mil-m2 mil-mb60">
Leading the Multichain Universe 🌐 </p>
</div>
<div class="col-lg-4">
<div class="mil-counter-item mil-stl mil-mb30 mil-768-mb60 mil-up">
<h4 class="mil-up">105 M<span class="mil-a2"></span></h4>
<div class="mil-counter-text">
<h5 class="mil-head4 mil-m1 mil-up">Max Supply</h5>
</div>
</div>
<p class="mil-stylized mil-m2 mil-mb60" >
Scarcity Meets Sustainability 💎 </p>
</div>
<div class="col-lg-4">
<div class="mil-counter-item mil-stl mil-mb30 mil-up">
<h4 class="mil-up">10<span class="mil-a2">+</span></h4>
<div class="mil-counter-text">
<h5 class="mil-head4 mil-m1 mil-up">Years in Crypto</h5>
</div>
</div>
<p class="mil-stylized mil-m2 mil-mb60">
Veterans of the Blockchain Revolution 🏆 </p>
</div>
</div>
</div>
</div>
<!-- counters end -->
<!-- call to action -->
<div class="mil-p-0-100">
<div class="container mil-relative">
<div class="mil-objects">
<div class="mil-obj-1"></div>
<div class="mil-obj-2"></div>
</div>
<p class="mil-stylized mil-m2 mil-mb60 mil-tac mil-up">Be Part of the OK Movement! Decentralized, Open-Source, and Powered by YOU! 🌟</p>
<h2 class="mil-head1 mil-rubber mil-tac mil-mb60 mil-up"><span class="mil-a1">OK</span> is <span class="mil-a1">Pure Community</span>-Driven <span class="mil-a1">Crypto </span>Goodness. <span class="mil-a1">Join </span>the Ranks of the <span class="mil-a1">OK Heroes </span>and Let's Make <span class="mil-a1">Crypto History </span>Together! </h2>
<div class="mil-text-with-button mil-mb60">
<p class="mil-text-sm mil-tar mil-768-tac mil-up">OK is not a security, it never had an ICO, nor any kind of funding rounds. <br>OK is self sustainable and is fully supported by volunteers (Just like Bitcoin). 🤝</p>
<span class="mil-up"><a href="https://okcash.news" target="_blank" class="mil-btn mil-btn-border mil-m1 mil-c-gone">Latest News</a></span>
</div>
<h2 class="mil-head1 mil-rubber mil-tac mil-mb60 mil-up">Don't Miss Out! Become an OK Hero Today!</h2>
</div>
</div>
<!-- call to action end -->
<!-- about -->
<div class="mil-p-160-100" id="about">
<div class="container">
<div class="row mil-jcb">
<div class="col-12">
<p class="mil-stylized mil-m2 mil-mb60 mil-up">Discover Okcash | Empowering Users, Traders, Institutions, Developers, and Dapps. <br>
Whether You're a Crypto Newbie or a Blockchain Veteran, OK Has Something for You!</p>
</div>
<div class="col-lg-4">
<h2 class="mil-head1 mil-mb60 mil-up"><span class="mil-a2">OK </span>is for <span class="mil-a2">Everyone</span> | From Newbies to OGs!</h2>
<p class="mil-text-sm mil-deco-text mil-mb60 mil-up"><span class="mil-a2">OK</span> is the market symbol and short name for <span class="mil-a2">Okcash</span>, also known as <span class="mil-a2">OK Token</span>.<br><br><span class="mil-a2">OK</span> is a decentralized and fast growing cryptocurrency / movement that was born on Nov 24th, 2014.<br><br><span class="mil-a2">OK</span> is simple to use, efficient and sustainable. With <span class="mil-a2">OK Token</span>, developers can expand their services and options while providing more value to OK users. The motto of the OK ecosystem is "Decentralize everything and empower everyone," enabling anyone to build, use, and own in the OK crypto ecosystem. </p>
</div>
<div class="col-lg-6">
<p class="mil-text-md mil-mb30 mil-up">🌊 <strong> Users and Traders:</strong> Surf the OK Wave and enjoy seamless transactions across 9+ chains! <br><br>OK Token enhances liquidity and user participation across various DEFI networks. With fast and low-cost transactions, these networks offer numerous benefits. OK Token makes it easy and efficient to move Okcash between exchanges and networks, making the process more practical, efficient, and enjoyable.</p>
<p class="mil-text-md mil-mb60 mil-up">🎩 <strong> Exchanges and Institutions:</strong> Simplify your operations with OK's multichain magic—no more juggling multiple nodes! <br><br>Managing multiple cryptocurrencies across various nodes and transaction formats can be a daunting task for decentralized applications like exchanges, wallets, and payment services. With OK Token, you get the best of both worlds - the benefits of the OK network and the various DEFI networks - without the hassle. OK Token simplifies the handling of OK Tokens by allowing users to easily manage them across different network nodes.</p>
<p class="mil-text-md mil-mb60 mil-up">🚀 <strong> Developers and Gamers:</strong> Level up with OK—integrate smart contracts, dive into Web3, and power up your DApps! <br><br><i>With OK's multichain capabilities, developers can build DApps that reach wider audiences across different networks. </i><br><br>Decentralized applications can now integrate OK Token into their smart contracts, enabling support for lending protocols, prediction markets, games, web3, token sales, and much more.</p>
<p class="mil-text-md mil-mb60 mil-up">
<strong>Ready to be part of the OK Revolution? Download your wallet and join the vibrant OK community today! </strong></p>
</div>
</div>
</div>
</div>
<!-- about end -->
<!-- partners -->
<div class="mil-p-160-130">
<div class="container">
<p class="mil-stylized mil-m2 mil-mb60 mil-tac mil-up" id="partners">Join OK Esteemed Partners Leading the Crypto Frontier! <br>OK Partners are a Testament to OK's Unstoppable Growth | Be Proud to Be OK!</p>
<h2 class="mil-head1 mil-rubber mil-tac mil-mb60 mil-up">Powered by the Best, <span class="mil-a1">Loved by All</span></h2>
<div class="row mil-jcb mil-aic">
<div class="col-6 col-md-3 mil-up">
<a href="https://okcash.network" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/okcash.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://basescan.org/token/0x979584b07e1e14c7718c9fdab2e35bbb5fec2c59" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/base.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://etherscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/ethereum.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://solscan.io/token/HvPrYvgJiBtwUC7H4bi8L5bqnirFPWc2J9NdVy6UFiZm" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/solana.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://bscscan.com/token/0x523821d20a283d955f6205b4c9252779cd0f964b" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/binance.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://arbiscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/arbitrum.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://polygonscan.com/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/polygon.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://snowtrace.dev/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/avalanche.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://optimistic.etherscan.io/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/optimism.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://ftmscan.com/token/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/fantom.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://metamask.io/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/metamask.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://trustwallet.com/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/trustwallet.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.exodus.com/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/exodus.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.ledger.com/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/ledger.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://coinmarketcap.com/currencies/okcash/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/coinmarketcap.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.coingecko.com/en/coins/okcash" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/coingecko.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="#." class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/coinpaprika.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://app.uniswap.org/#/swap?outputCurrency=0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189&inputCurrency=eth" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/uniswap.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://raydium.io/swap/?inputMint=HvPrYvgJiBtwUC7H4bi8L5bqnirFPWc2J9NdVy6UFiZm&outputMint=sol" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/raydium.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://pancakeswap.finance/swap?inputCurrency=0x55d398326f99059fF775485246999027B3197955&outputCurrency=0x523821d20a283d955f6205B4C9252779Cd0f964B" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/pancakeswap.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://ampleswap.com/swap?outputCurrency=0x523821d20a283d955f6205B4C9252779Cd0f964B" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/ampleswap.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://spooky.fi/#/swap" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/spookyswap.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://app.bubblemaps.io/bsc/token/0x523821d20a283d955f6205B4C9252779Cd0f964B" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/bubblemaps.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://app.spherium.finance/#/transfer" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/spherium.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://oklabs.app/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/oklabs.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://tip.cc/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/tipcc.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://azure.microsoft.com/en-au/blog/azure-blockchain-update-8/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/microsoft.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://rokos.space/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/rokos.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://thecoinrise.com/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/coinrise.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://zealy.io/c/okcash/questboard" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/zealy.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://opensea.io/collection/ok-crypto-champions" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/opensea.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://nfts.day/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/nftsday.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.mintme.com/token/Okcash/MINTME/trade" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/mintme.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.team.finance/view-coin/0x979584b07E1e14C7718C9FdaB2E35Bbb5fec2c59?name=Okcash&symbol=OK&chainid=0x2105" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/teamfinance.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://jumper.exchange/?fromChain=56&fromToken=0x523821d20a283d955f6205B4C9252779Cd0f964B&toChain=8453&toToken=0x979584b07E1e14C7718C9FdaB2E35Bbb5fec2c59" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/jumperexchange.png" alt="partner logo">
</a>
</div>
<h2 class="mil-head1 mil-rubber mil-tac mil-mb60 mil-up"><br>That's the <span class="mil-a1">OK</span> Way!</h2>
<div class="row mil-jcb mil-aic">
<div class="col-6 col-md-3 mil-up">
<a href="https://www.coinbase.com/price/okcash" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/coinbase.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://markets.businessinsider.com/currencies/ok-usd" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/binsider.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.binance.com/en/price/okcash" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/binance2.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://beincrypto.com/price/okcash/" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/beincrypto.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://blockworks.co/price/ok" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/blockworks.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.bitget.com/how-to-buy/wallet/okcash-avax_c" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/bitget.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.kraken.com/prices/okcash" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/kraken.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://finance.yahoo.com/quote/OK-USD/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/yahoo.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.kucoin.com/price/OK" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/kucoin.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.forbes.com/digital-assets/assets/okcash-ok/" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/forbes.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.mexc.com/price/okcash" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/mexc.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.bybitglobal.com/en/coin-price/okcash/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/bybit.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://crypto.com/price/okcash" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/cryptocom.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://atomicwallet.io/buy-okcash" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/atomicw.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://kriptomat.io/cryptocurrency-prices/okcash-ok-price/" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/kriptomat.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://messari.io/project/okcash" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/messari.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.fxempire.com/crypto/okcash/markets" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/fxempire.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://www.bitdegree.org/cryptocurrency-prices/okcash-ok-price" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/bitdegree.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://coinranking.com/coin/9-C1-XaX7APZr+okcash-ok" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/coinranking.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://lcx.com/prices/okcash" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/lcx.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://digitalcoinprice.com/coins/okcash" class="mil-type-2 mil-stl mil-mb30" target="_blank" data-no-swup>
<img src="/img/brands/digitalcoin.png" alt="partner logo">
</a>
</div>
<div class="col-6 col-md-3 mil-up">
<a href="https://goonus.io/en/markets/okcash_usd" target="_blank" class="mil-type-2 mil-stl mil-mb30" data-no-swup>
<img src="/img/brands/onus.png" alt="partner logo">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- partners end -->
<!-- iconboxes -->
<div class="mil-p-0-100" id="scroll">
<div class="container">
<p class="mil-stylized mil-m2 mil-mb60 mil-up">Reap the benefits</p>
<h2 class="mil-head1 mil-mb90 mil-up">Get Empowered with <span class="mil-a1">Ok</span></h2>
<div class="row mil-jcc">
<div class="col-sm-8 col-lg-4">
<div class="mil-iconbox mil-tac mil-mb60">
<img src="/img/blog/web3.png" alt="icon" class="mil-mb30 mil-up">
<h4 class="mil-head4 mil-mb30 mil-up">Smartcontracts | OK Dapps + web3</h4>
<p class="mil-text-md mil-shortened mil-up">Unlock Infinite Possibilities with OK Smart Contracts! 💡</p>
</div>
</div>
<div class="col-sm-8 col-lg-4">
<div class="mil-iconbox mil-mb60">
<img src="/img/blog/nft.png" alt="icon" class="mil-mb30 mil-up">
<h4 class="mil-head4 mil-mb30 mil-up">NFTS + OK DAO | Governance</h4>
<p class="mil-text-md mil-shortened mil-up">Rule the Crypto Realm with The OK DAO; Where Your Voice Matters! <br>Get Your NFTs on with OK; Collect, Trade, and Flex! 🖼️ </p>
</div>
</div>
<div class="col-sm-8 col-lg-4">
<div class="mil-iconbox mil-tac mil-mb60">
<img src="/img/blog/multichain.png" alt="icon" class="mil-mb30 mil-up">
<h4 class="mil-head4 mil-mb30 mil-up">OK Multi-chain | OK Universality</h4>
<p class="mil-text-md mil-shortened mil-up">Experience Ultimate Freedom with OK Multichain Universality! 🌐</p>
</div>
</div>
</div>
</div>
</div>
<!-- iconboxes end -->
<!-- services -->
<div id="services">
<div class="container">
<div class="row mil-jcb">
<div class="col-12">
<ul class="mil-services-list mil-mb160">
<li class="mil-service-item mil-768-mb60 mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">💰 Stake It 'Til You Make It • Earn Daily Rewards with OK! </h3>
<h3 class="mil-head3 mil-mb30 mil-up">⚡ Lightning-Fast Transactions • Because Time Is Money! </h3>
<h3 class="mil-head3 mil-mb30 mil-up">✅ Zero Bank Fees • Keep Your Hard-Earned Crypto Safe from Greedy Hands! </h3>
<h3 class="mil-head3 mil-mb30 mil-up">🌍 Global and Always On • OK Is Here for You 24/7, Wherever You Are! </h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up">All you need to start accepting OK as payment for goods or services is a Metamask, TrustWallet, Coinbase wallet, Phantom wallet or alike. Display your unique address to begin accepting payments from all around the world.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- services end -->
<!-- call to action -->
<div class="mil-p-0-100">
<div class="container mil-relative">
<div class="mil-objects">
<div class="mil-obj-1"></div>
<div class="mil-obj-2"></div>
</div>
<p class="mil-stylized mil-m2 mil-mb60 mil-tac mil-up">Dive into DeFi and Web3 • The OK Way!</p>
<h2 class="mil-head1 mil-rubber mil-tac mil-mb60 mil-up"><span class="mil-a1">Don't Just Watch the Future. </span><br> <span class="mil-a1">Be</span> the Future with <span class="mil-a1">OK</span>! </h2>
<p class="mil-stylized mil-m2 mil-mb60 mil-tac mil-up">Ready Player One? Enter the OK Multiverse Now! 🎮</p>
</div>
</div>
<!-- call to action end -->
<!-- info -->
<div id="info">
<div class="container">
<div class="row mil-jcb">
<div class="col-12">
<ul class="mil-services-list mil-mb160">
<li class="mil-service-item mil-768-mb60 mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">Embark on Your OK Journey • Start Here!</h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up">
<strong> Introduction: <br>
<a href="/okcash-for-individuals.html" class="mil-text-link mil-a2 mil-c-gone">Individuals</a> |
<a href="/okcash-for-businesses.html" class="mil-text-link mil-a2 mil-c-gone">Businesses</a> |
<a href="/okcash-for-developers.html" class="mil-text-link mil-a2 mil-c-gone">Developers</a> |
<a href="/getting-started.html" class="mil-text-link mil-a2 mil-c-gone">Getting Started</a> |
<a href="/how-it-works.html" class="mil-text-link mil-a2 mil-c-gone">How It Works</a> |
<a href="/you-need-to-know.html" class="mil-text-link mil-a2 mil-c-gone">You Need to Know</a> |
<a href="/innovation.html" class="mil-text-link mil-a2 mil-c-gone">Innovation</a> |
<a href="/collaborators.html" class="mil-text-link mil-a2 mil-c-gone">Collaborators</a> |
<a href="/secure-your-wallet.html" class="mil-text-link mil-a2 mil-c-gone">Security</a> |
<a href="/protect-your-privacy.html" class="mil-text-link mil-a2 mil-c-gone">Privacy</a> |
<a href="/developer-documentation.html" class="mil-text-link mil-a2 mil-c-gone">Documentation</a> |
<a href="/dev-start.html" class="mil-text-link mil-a2 mil-c-gone">Dev Start</a> |
<a href="/crypto-glossary.html" class="mil-text-link mil-a2 mil-c-gone">Crypto Glossary</a>
</strong></p>
</div>
</li>
<li class="mil-service-item mil-768-mb60 mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">Discover, Learn, and Grow with OK • Your Crypto Adventure Awaits!</h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up">
<strong> Resources: <br>
<a href="https://okcash.network" class="mil-text-link mil-a2 mil-c-gone" target="_blank">OK Multichain Explorer</a> |
<a href="https://okcash.network/index.html#exchanges" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Exchanges</a> |
<a href="https://okcash.network/index.html#staking" class="mil-text-link mil-a2 mil-c-gone">Staking</a> |
<a href="https://github.com/okcashpro/ok-graphics" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Branding Kit</a> |
<a href="https://github.com/okcashpro/okcash" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Github</a> |
<a href="https://github.com/okcashpro/okcash-whitepaper" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Whitepaper</a> |
<a href="https://okcash.news" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Okcash News</a> |
<a href="https://discord.gg/grvpc8c" class="mil-text-link mil-a2 mil-c-gone" target="_blank">OK Heroes Discord</a> |
<a href="https://t.me/ok_heroes" class="mil-text-link mil-a2 mil-c-gone" target="_blank">OK Heroes Telegram</a>
</strong>
</p>
</div>
</li>
<li class="mil-service-item mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">OK Smartcontracts #</h3>
<p class="mil-text-md mil-deco-text mil-max-9row-text mil-up">
<strong>BASE:</strong> 0x979584b07E1e14C7718C9FdaB2E35Bbb5fec2c59 <br>
<strong>BSC:</strong> 0x523821d20a283d955f6205B4C9252779Cd0f964B <br>
<strong>Solana:</strong> HvPrYvgJiBtwUC7H4bi8L5bqnirFPWc2J9NdVy6UFiZm <br>
<strong>Ethereum, Arbitrum, Polygon, Avalanche, Optimism, and Fantom:</strong> 0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189
</p>
</div>
</li>
<li class="mil-service-item mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">Become an OK Hero • Download Your Wallet and Start using OK!</h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong>
<a href="https://okcash.network/onekey/" class="mil-text-link mil-a2 mil-c-gone" target="_blank">OneKey [Hardware Wallet]</a> |
<a href="https://metamask.io/" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Metamask</a> |
<a href="https://trustwallet.com/" class="mil-text-link mil-a2 mil-c-gone" target="_blank">TrustWallet</a> |
<a href="https://www.coinbase.com/wallet" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Coinbase Web3 Wallet</a> |
<a href="https://phantom.app/" class="mil-text-link mil-a2 mil-c-gone" target="_blank">Phantom (Solana)</a>
</strong></p>
</div>
</li>
<li id="tldr" class="mil-service-item mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">TLDR • Fun & Empowering Community with High-Tech Aspects</h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong>
🚀 Multichain Technology: <br>
<a class="mil-text-link mil-a2 mil-c-gone">Harness the Power of 9+ Chains • Unmatched Flexibility and Speed! </a>
</strong></p>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong> <br>
💰 Advanced Multichain Staking Mechanisms: <br>
<a class="mil-text-link mil-a2 mil-c-gone">Experience Next-Level Staking with Predictable Rewards Until 2048! </a>
</strong></p>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong> <br>
⚡ DEFI and Web3 Integration: <br>
<a class="mil-text-link mil-a2 mil-c-gone">Dive into the Future • OK Makes DEFI and Web3 Accessible to All! </a>
</strong></p>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong> <br>
🏆 Decentralized Governance: <br>
<a class="mil-text-link mil-a2 mil-c-gone">Become an OK Hero and participate in the OK DAO • Where your Voice Matters! </a>
</strong></p>
</div>
</li>
<li class="mil-service-item mil-up">
<div class="mil-item-text mil-mb30">
<h3 class="mil-head3 mil-mb30 mil-up">Join the OK Revolution • Crypto Powered by Community!</h3>
<p class="mil-text-md mil-shortened mil-deco-text mil-max-3row-text mil-up"><strong>
Suggested hashtags to use in the Social Networks: <br>
<a class="mil-text-link mil-a2 mil-c-gone">$OK</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OK</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#Okcash</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OKToken</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OKtoTheMoon</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OKHeroes</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OKMultichain</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#OKRevolution</a> |
<a class="mil-text-link mil-a2 mil-c-gone">#WeAreOK</a>
</strong></p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- info end -->
<!-- footer -->
<footer class="mil-footer mil-p-160-160">
<div class="container">
<div class="row mil-no-g">
<div class="col-lg-6 mil-up"><p class="mil-stylized mil-m2">Ready to Level Up? 🎮</p>
<a href="https://okcash.news/maximize-your-ok-with-new-staking-apys-across-multi-chain-pools-8ea65c615200" class="mil-footer-contact mil-mb90" target="_blank">
<h6 class="mil-footer-link mil-rubber mil-m1"><span class="mil-a2"></span>Stake <span class="mil-a2">OK</span> Now!</h6>
<span class="mil-stylized-btn mil-c-gone">
<i class="fal fa-arrow-up"></i>
<span>Go Stake</span>
</span>
</a>
</div>
<div class="col-lg-12">
<div class="mil-footer-menu-frame mil-mb90 mil-up">
<ul class="mil-footer-menu">
<li><a href="#" class="mil-c-gone">Top</a></li>
<li><a href="https://okcash.network" class="mil-c-gone" target="_blank">Explorers</a></li>
<li><a href="https://okcash.network/index.html#wallets" class="mil-c-gone" target="_blank">Wallets</a></li>
<li><a href="https://github.com/okcashpro/ok-graphics" class="mil-c-gone" target="_blank">Branding Kit</a></li>
<li><a href="/developer-documentation.html" class="mil-c-gone">Documentation</a></li>
<li><a href="https://okcash.news" class="mil-c-gone" target="_blank">News</a></li>
<li><a href="https://bitcointalk.org/index.php?topic=1028368.0" class="mil-c-gone" target="_blank">BitcoinTalk</a></li>
</ul>
<ul class="mil-social mil-c-gone">
<li><a href="#." data-no-swup><i class="far fa-circle"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-circle"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-circle"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-circle"></i></a></li>
<li><a href="#." data-no-swup><i class="far fa-circle"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-12">
<div class="mil-footer-bottom mil-up">
<p class="mil-text-sm">© 2014-2025 Okcash Project. Released under the <a href="https://github.com/okcashpro/okcash/blob/master/COPYING" target="_blank" class="mil-text-link mil-a2 mil-c-gone">MIT license</a>.<br>
All trademarks and copyrights belong to their respective owners.</p>
</div>
</div>
</div>
</div>
</footer>
<!-- footer end -->
</div>
<!-- content -->
</div>
</div>
<!-- page transition -->
</div>
<!-- wrapper end -->
<!-- swup js -->
<script src="/js/plugins/swup.min.js"></script>
<!-- gsap js -->
<script src="/js/plugins/gsap.min.js"></script>
<!-- scroll smoother -->
<script src="/js/plugins/ScrollSmoother.min.js"></script>
<!-- scroll trigger js -->
<script src="/js/plugins/ScrollTrigger.min.js"></script>
<!-- scroll to js -->
<script src="/js/plugins/ScrollTo.min.js"></script>
<!-- swiper js -->
<script src="/js/plugins/swiper.min.js"></script>
<!-- parallax js -->
<script src="/js/plugins/parallax.js"></script>
<!-- pixy js -->
<script src="/js/main.js"></script>
</body>
</html>