-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
2434 lines (2068 loc) · 114 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>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<title>Metrix Coin - A Powerful, Secure PoS Crypto-Currency</title>
<meta name="description" content="Metrix is a digital asset focusing on widespread adoption and creating ease-of-use applications. The Metrix team is dedicated to building a diverse network of vendors and working applications all powered by the use of our digital asset." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@metrixcoin" />
<meta name="twitter:creator" content="@metrixcoin" />
<meta name="twitter:title" content="Metrix Coin - A Powerful, Secure PoS Crypto-Currency" />
<meta name="twitter:description" content="Metrix is a digital asset focusing on widespread adoption and creating ease-of-use applications. The Metrix team is dedicated to building a diverse network of vendors and working applications all powered by the use of our digital asset." />
<meta name="twitter:image" content="https://www.metrixcoin.com/img/metrix-og-banner.jpg" />
<link rel="stylesheet" type="text/css" href="css/styles.min.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<meta property="og:title" content="Metrix Coin - A Powerful, Secure PoS Crypto-Currency" />
<meta property="og:description" content="Metrix is a digital asset focusing on widespread adoption and creating ease-of-use applications. The Metrix team is dedicated to building a diverse network of vendors and working applications all powered by the use of our digital asset." />
<meta property="og:url" content="https://www.metrixcoin.com" />
<meta property="og:image" content="https://www.metrixcoin.com/img/metrix-og-banner.jpg" />
<meta property="og:image:url" content="https://www.metrixcoin.com/img/metrix-og-banner.jpg" />
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="./android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<!-- <link rel="manifest" href="/manifest.json"> -->
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#f2f2f2">
<meta name="msapplication-TileColor" content="#fff">
<meta name="theme-color" content="#f2f2f2">
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<!-- <link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,900&display=swap"
rel="stylesheet"
/> -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,600&display=swap" rel="stylesheet">
<meta name="mobile-web-app-capable" content="yes" />
<script id="mcjs">
! function(c, h, i, m, p) {
m = c.createElement(h), p = c.getElementsByTagName(h)[0], m.async = 1, m.src = i, p.parentNode.insertBefore(m, p)
}(document, "script", "https://chimpstatic.com/mcjs-connected/js/users/4df4947c8b40224c25ecb3301/dd36c79145fea6f8528e7eb23.js");
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4X0BBJ3RTF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-4X0BBJ3RTF');
gtag('config', 'UA-191808414-1');
</script>
<!-- End Global site tag (gtag.js) - Google Analytics -->
<!-- Facebook Pixel Code -->
<script>
! function(f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function() {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '601855047458066');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" src="https://www.facebook.com/tr?id=601855047458066&ev=PageView&noscript=1" />
</noscript>
<!-- End Facebook Pixel Code -->
<!-- TrustBox script -->
<script type="text/javascript" src="https://widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js" async></script>
<!-- End TrustBox script -->
<!-- Crypto.com widget script -->
<script src="https://crypto.com/price/static/widget/index.js"></script>
<!-- End Crypto.com widget script -->
</head>
<body class="home" id="top">
<header>
<div class="pure-g container">
<ul class="hamburger">
<div class="hamburger-inner"></div>
</ul>
<div class="pure-u-1">
<nav class="header__menu">
<div class="logo" style="">
<a href="./#top" rel="section-scroll">
<h1 title="Metrix Coin"><img src="img/logo.svg" alt="Metrix"><span>METRIX</span></h1>
</a>
</div>
<a href="#team" rel="section-scroll">About Us</a>
<a href="#products" rel="section-scroll">Products</a>
<a href="#partners" rel="section-scroll">Partners</a>
<a href="#wallets" rel="section-scroll">Wallets</a>
<a href="#footer" rel="section-scroll">Exchanges</a>
<a href="#merchandise" rel="section-scroll">Merch.</a>
<a href="#academy" rel="section-scroll">Academy</a>
<a href="#faq" rel="section-scroll">FAQ</a>
<a href="https://explorer.metrixcoin.com" target="_blank">
<div class="widget__live-price">
<label for=""> <span class="metrix-icon"></span> Metrix (MRX)</label>
<strong class="widget__price-usd" id="requestUSD"></strong>
<span class="widget__price-satoshi" id="requestSATS"></span>
<i class="" id="requestCHANGE"></i>
<!-- classes for the above element: rise, drop -->
<div class="widget__price-volume">
<div>
<span>VOL (24h)</span>
<div id="requestVOL"></div>
</div>
<div>
<span>Market Cap</span>
<div id="requestMC"></div>
</div>
</div>
</div>
</a>
</nav>
</div>
</div>
</header>
<div id="hero">
<div class="hero-container">
<div class="pure-g container">
<div class="trustpilot pure-u-1">
<!-- TrustBox widget - Micro Review Count -->
<div class="trustpilot-widget" data-locale="en-US" data-template-id="5419b6a8b0d04a076446a9ad" data-businessunit-id="6153d82d338a56001d24a77e" data-style-height="24px" data-style-width="100%" data-theme="dark" data-min-review-count="10">
<a class="ovx-btn size-xlarge" href="https://www.trustpilot.com/review/metrixcoin.com" target="_blank" rel="noopener">Trustpilot Reviews</a>
</div>
<!-- End TrustBox widget -->
</div>
<div class="pure-u-1" data-aos="fade" data-aos-duration="100">
<h2>A <span class="txt-rotate" data-period="2000" data-rotate='[ "secure", "scalable", "powerful", "diverse" ]'></span> digital asset</h2>
<h3>For everyone, For everything</h3>
</div>
<div class="button-group pure-u-1" data-aos="fade" data-aos-duration="1000">
<a href="https://drive.google.com/file/d/1Pd6CVhe4qinHJV63xba0BhgftzmXH_mL/view?usp=sharing" class="ovx-btn size-xlarge event-secondary tooltip-i" title="Click to view the PDF" target="_blank">
Whitepaper</a>
<span>
<a href="https://github.com/TheLindaProjectInc/Altitude/releases/latest" class="ovx-btn wireframed event-success size-xlarge wallet-link" target="_blank" id="win-wallet">
Windows Wallet v3</a>
<a href="https://github.com/TheLindaProjectInc/Altitude/releases/latest" class="ovx-btn wireframed event-success size-xlarge wallet-link" target="_blank" id="osx-wallet">
OSX Wallet v3</a>
<a href="https://github.com/TheLindaProjectInc/Altitude/releases/latest" class="ovx-btn wireframed event-success size-xlarge wallet-link" target="_blank" id="linux-wallet">
Linux Wallet v3</a>
<a href="https://play.google.com/store/apps/details?id=com.mystakingwallet.app" class="ovx-btn wireframed event-success size-xlarge wallet-link" target="_blank" id="and-wallet">
Get My Staking Wallet For Android</a>
<a href="https://apps.apple.com/us/app/linda-my-staking-wallet/id1404883927" class="ovx-btn wireframed event-success size-xlarge wallet-link" target="_blank" id="ios-wallet">
Get My Staking Wallet For IOS</a>
<a href="#trig" rel="section-scroll" class="link"><i>check other wallet versions</i></a>
</span>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon fill="white" points="0,100 100,0 100,100" />
</svg>
</div>
<div id="as-seen-on" class="pure-g container">
<!------------------------------------------------------------------------------------>
<div class="centered TextRight-resCenter">
<h3>As Seen On</h3>
<div>
<a href="https://finance.yahoo.com/amphtml/news/metrix-coin-mid-review-083600074.html" target="_blank"><img src="img/yahoo-finance-logo.png" alt="Yahoo! Finance"></a>
<a href="https://exeleonmagazine.com/trent-richards-advocating-leadership/" target="_blank"><img src="img/exeleon_logo.jpg" alt="EXELEON MAGAZINE"></a>
<!-- <a href="https://news.yahoo.com/amphtml/news/metrix-coin-mid-review-083600074.html" target="_blank"><img src="img/yahoo_NEWS_Light.png" alt="Yahoo! NEWS"></a> -->
<a href="https://menafn.com/1102268849/Metrix-Coin-A-Mid-Year-Review" target="_blank"><img src="img/MENAFN.png" alt="MENAFN"></a>
<a href="http://stocks.newsok.com/newsok/news/read/41460933/Metrix_Coin" target="_blank"><img src="img/newsok.png" alt="NEWSOK"></a>
<a href="https://newsbit.nl/decentraal-bestuur-protocol-dgp-op-de-metrix-block-chain/" target="_blank"><img src="img/newsbit-logo-dark.png" alt="Newsbit"></a>
<a href="https://www.analyticsinsight.net/The-10-Most-Innovative-Blockchain-Companies-of-the-Year/#page=26" target="_blank"><img src="img/analyticsinsight-logo-.png" alt="Analytics Insight"></a>
</div>
<div style="margin: 1rem;"></div>
</div>
</div>
<div id="whitepaper" class="pure-g container Textcenter">
<div class="pure-u-1">
<div class="section-title">
<strong class="sub-head">Introducing the 2023-2024</strong>
<strong class="sub-head">Metrix Whitepaper and Roadmap!</strong>
</div>
<div class="pure-u-1 pure-u-md-1 pure-u-lg-1-2 aos-init aos-animate centered" data-aos="zoom-in-up" style="margin-top: 0.5rem;margin-bottom: 1.5rem;">
<a href="https://drive.google.com/drive/u/0/folders/1L1TaMcMMh_XtuFltNPOsVIrGVQPWzM4M" title="Click to view the PDF" class="oh" style="display: block;" target="_blank">
<img src="img/2023metrix-wp-view.png" alt="Metrix 2022 Whitepaper" style="width: 105%;" />
</a>
<p>Inside these pages, you will find all you need to know about Metrix. This details our new team and the swap we made to our new QTUM-based blockchain that allows for incredible growth of our project. It also talks about our impressive line of products, partnerships, and growth over the past year. The roadmap will also give a peek into what is to come, and we are more excited than ever before to share this with you!</p>
<p><a href="https://drive.google.com/drive/u/0/folders/1L1TaMcMMh_XtuFltNPOsVIrGVQPWzM4M" title="Click to view the PDF" target="_blank">Click here to view the whitepaper!</a></p>
</div>
</div>
</div>
<div class="pure-g container" style="margin-top: 1.5rem;">
<div class="hero__stats-widget ">
<div class="stat pure-u-1-3">
<b><span id="activeAddresses">1260</span></b>
<label for="">Active Addresses</label>
</div>
<div class="stat pure-u-1-3">
<b><span>90</span>sec</b>
<label for="">Block Time</label>
</div>
<div class="stat pure-u-1-3">
<b>~<span>10</span>%</b>
<label for="">Staking Return</label>
</div>
</div>
</div>
<main>
<section id="features">
<div class="container pure-g">
<div class="features__super-features pure-u-1">
<!-- slider main container -->
<div class="swiper-container pure-u-1">
<!-- additional required wrapper -->
<div class="swiper-wrapper">
<!-- slides -->
<div class="swiper-slide">
<h6>Utility and decentralized payments</h6>
<p>Metrix is a digital currency that focuses on bringing ease-of-use to the forefront of the Digital Asset age - We build products that focus on utility, as well as making it easy for the Vendor to be able to accept payments, no
matter what business they run.
</p>
</div>
<div class="swiper-slide">
<h6>Dedicated Applications</h6>
<p>One of Metrix’s core foundations is building applications that are made specifically with the use of Metrix in mind. We have created multiple applications that focus on Metrix’s key features, and we actively encourage and assist
new developers entering the space to create real useable applications powered by Metrix.</p>
</div>
<div class="swiper-slide">
<h6>Engaging Community</h6>
<p>One of the things we pride ourselves on here at Metrix is our dedication toward building an active, informed and engaged community. We have involvement from community members through all steps of our process, from utilizing
community ambassadors for local outreach to operating community voting for upcoming changes, products and projects -- Being an active member of the Metrix community
<b>pays</b> </p>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
<div class="features__wrap">
<div class="pure-u-1">
<div class="section-title">
<h2>01. Features</h2>
<strong class="sub-head">Let's Talk Product</strong>
<span>The things that make us unique</span>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-lg-2-3 pr">
<div class="features__grid">
<div data-aos="fade-up" data-aos-duration="1500">
<span class="icon-crop"></span>
<h3>A scalable, flexible digital asset</h3>
<p>Metrix was designed to be a completely flexible, easily scalable digital asset that can be used in a multitude of applications. With fast blocktimes, instant TX features and it’s own payment processing app, Metrix can power any
storefront, anywhere.</p>
</div>
<div data-aos="fade-up" data-aos-duration="1500">
<span class="icon-shield"></span>
<h3> Easy, Secure, Proof of Stake
</h3>
<p>Metrix incorporates PoS into its everyday use in multiple ways. We believe that It’s important for each user that holds a wallet to contribute to the network. This keeps TX’s fast under any load and provides rewards to every
holder. The Metrix team has created many applications to aide in making full use of Metrix’s PoS consensus model such as: MyStakingWallet and Altitude, our lightweight electron wallet. </p>
</div>
<div data-aos="fade-up" data-aos-duration="1500">
<span class="icon-power"></span>
<h3> Powering multiple applications</h3>
<p>Metrix was built with flexibility in mind, and that’s why our team has developed multiple applications featuring Metrix -- We build these to show how versatile a digital asset can be, from being a passive income generation
tool, to paying for your everyday goods and using it to bet online Digital currencies can do it all and we’re here to prove it.</p>
</div>
<div data-aos="fade-up" data-aos-duration="1500">
<span class="icon-target"></span>
<h3> Our Mission</h3>
<p>Our mission is to produce quantifiable utility for those contributing to the Metrix blockchain. Through applicable products and services, the Metrix Network continues to grow and prosper. Our modus operandi will always be to
isolate real world issues, provide solutions, and enhance lifestyles.
</p>
</div>
</div>
</div>
<div class="pure-u-1 pure-u-lg-1-3 features__img" data-aos="flip-right" data-aos-duration="1000">
<img src="img/iPhone-X.png" alt="Altitude iPhone-X" class="ovx-img">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon fill="white" points="0 0, 0 100, 100 0" />
</svg>
<div class="pure-g container">
<div class="section-title pure-u-1">
<h2>02. Our-Team</h2>
<strong class="sub-head">Together, We Create</strong>
<span>Meet the individuals that together make this business a success, but there are also those not featured here which includes "you" the community. Click the link below to view the full team.</span> <br>
<span><a href="jobs.html" class="ovx-btn wireframed event-success size-medium wallet-link" id="win-wallet" style="display: inline-block; margin: 20px;">We're Hiring!</a></span>
</div>
<!-- <div class="pure-g">
<div class="team__wrap" style="padding: 0;">
<div class="team__member pure-u-1-2 pure-u-md-1-3 pure-u-lg-1-5" data-aos="zoom-in-up">
<div class="team__member-img">
<img src="img/team/trent.jpg" alt="Trent Richards" class="ovx-img">
<a href="https://www.linkedin.com/in/trentrichards/" class="icon-linkedin2 icon-position-left" target="_blank"></a>
<a href="https://twitter.com/trentrichards1" class="icon-twitter" target="_blank"></a>
</div>
<strong>Trent Richards</strong>
<label>CEO<br>
<br></label>
<label>
<hr /></label>
<label><a href="mailto:trent@metrixcoin.com" style="color: #cdcdcd;">trent@metrixcoin.com</a></label>
</div>
<div class="team__member pure-u-1-2 pure-u-md-1-3 pure-u-lg-1-5" data-aos="zoom-in-up">
<div class="team__member-img">
<img src="img/team/chris.jpg" alt="Chris Bowe" class="ovx-img">
<a href="https://www.linkedin.com/in/christopher-bowe-13782b63/" class="icon-linkedin2 icon-position-left" target="_blank"></a>
<a href="https://twitter.com/Chris_Metrix" class="icon-twitter" target="_blank"></a>
</div>
<strong>Chris Bowe</strong>
<label>Director of Product Solutions</label>
<label>
<hr /></label>
<label><a href="mailto:chris@metrixcoin.com" style="color: #cdcdcd;">chris@metrixcoin.com</a></label>
</div> -->
<!-- <div class="team__member pure-u-1-2 pure-u-md-1-3 pure-u-lg-1-5" data-aos="zoom-in-up">
<div class="team__member-img">
<img src="img/team/Keith nibbles.png" alt="Keith nibbles" class="ovx-img">
<a href="https://twitter.com/MetrixCoin" class="icon-twitter" target="_blank"></a>
</div>
<strong>Keith "nibbles"</strong>
<label>Lead Developer,<br>
Tech Support</label>
<label>
<hr /></label>
<label><a href="mailto:keith@metrixcoin.com" style="color: #cdcdcd;">keith@metrixcoin.com</a></label>
</div>
<div class="team__member pure-u-1-2 pure-u-md-1-3 pure-u-lg-1-5" data-aos="zoom-in-up">
<div class="team__member-img">
<img src="img/team/Whiteshark.jpg" alt="Luca Bonadonna" class="ovx-img">
<a href="https://www.linkedin.com/in/luca-bonadonna-a30b2433/" class="icon-linkedin2" target="_blank"></a>
</div>
<strong>Luca Bonadonna</strong>
<label>Director of Business Development</label>
<label>
<hr /></label>
<label><a href="mailto:whiteshark@metrixcoin.com" style="color: #cdcdcd;">whiteshark@metrixcoin.com</a></label>
</div> -->
<!--
<div class="team__member pure-u-1-2 pure-u-md-1-3 pure-u-lg-1-5" data-aos="zoom-in-up">
<div class="team__member-img">
<img src="img/team/guillermo.jpg" alt="Guillermo Duran, Jr" class="ovx-img">
<a href="https://www.linkedin.com/in/guiduran" class="icon-linkedin2 icon-position-left" target="_blank"></a>
<a href="https://metrixcoin.medium.com/" class="icon-medium" target="_blank"></a>
</div>
<strong>Guillermo Duran, Jr</strong>
<label>Director of Program Management</label>
<label>
<hr /></label>
<label><a href="mailto:guillermo@metrixcoin.com" style="color: #cdcdcd;">guillermo@metrixcoin.com</a></label>
</div>
</div>
</div> -->
<div class="pure-g container Textcenter">
<div class="pure-u-1 pure-u-md-1 pure-u-lg-1-2 aos-init aos-animate centered" data-aos="zoom-in-up" style="margin-top: 0.5rem;margin-bottom: 1.5rem;">
<a href="team.html" class="ovx-btn size-xlarge" style="margin-top: 1rem;">View the full team here</a>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon fill="white" points="0,100 100,0 100,100" />
</svg>
</section>
<section id="roadmap" class="landing">
<div class="pure-g container">
<div class="section-title pure-u-1">
<h2>03. Roadmap</h2>
<strong class="sub-head">Implementation Sheet</strong>
<span>Our Accomplishments</span>
</div>
<div class="roadmap__wrap pure-u-1">
<div class="roadmap__legends">
<ul class="pure-u-1">
<li><span class="rm-prg rm-prg-fs"></span>Finished</li>
<li><span class="rm-prg rm-prg-wp"></span>Work in progress</li>
<li><span class="rm-prg rm-prg-sd"></span>Scheduled</li>
<li><span class="rm-prg rm-prg-sr"></span>Scratch/Removed</li>
</ul>
</div>
<div class="pure-g roadmap__year">
<label for="" class="roadmap__year--label">
2020
</label>
<div class="pure-u-1 roadmap__quarter roadmap__quarter--current">
<div class="roadmap__quarter--label-wrap">
<label for="" class="roadmap__quarter--label">QTR 4, 2020</label>
</div>
<div class="roadmap__tasks">
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Exchange Listing Barter Trade
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Exchange Listing DigiFinex
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Exchange Listing P2PB2B
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Exchange Listing WhiteBIT
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Exchange listing AltMarkets
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Updated MSW to the new chain
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Medium Reports
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Chain Swap (QTUM Fork) Complete
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
CEO Monthly Update [video]
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Build the Ambassador Program
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Introduce Think Tank Thursday
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Start MRX & BTC Community Donation Accounts
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Updated Altitude Wallet with the Governor
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Partnership AFRO Foundation & ELYA Coin
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
AMA Sessions with 9 AMA Providers
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Hire new team members across all departments of the project
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Publish Medium Articles on Media Watch, Yahoo News, Yahoo Finance, Yahoo Business as well as 73 other major publications
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Update the official Metrix Team website with new chain specs, updated team, partnerships, Metrix Academy, Donation address and QR codes, and general user interface
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
30K Twitter followers
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
25K Telegram members
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
10K Instagram followers
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Start out Facebook and LinkedIn profiles.
</div>
</div>
</div>
</div>
<label for="" class="roadmap__year--label">
2021
</label>
<div class="pure-u-1 roadmap__quarter ">
<div class="roadmap__quarter--label-wrap">
<label for="" class="roadmap__quarter--label">QTR 1+2, 2021</label>
</div>
<div class="roadmap__tasks">
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Build the Metrix Coin Paper Wallet Generator
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Integrate digitizing fiat currencies through digitized money machines using MRX as a payment system.
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Integrate ELYA TEL partnership for telecommunication
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Update MSW with new coin projects
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Introduce a very large use-case partnership with an A.T.S. company, Italy
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Start the integration with Partner’s clients
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
AMA’s from the team
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
20-Year Reward Plan - Deflationary Model
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Secure Blockfolio Signals
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Influencer Video Reviews on Metrix
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Propose a new team treasury plan
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Capital Raise to list on top Cryptocurrency Exchange
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
CEO Monthly Update [video]
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
APPICS Platform Live
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Jude Newcomb's "The Week That Was"
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Secure a Gambling and Gaming Global Licence
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Build the Bounty Program
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
SEO of Metrixcoin.com (ongoing)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Update MSW website
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Partnership with merchants (WG Whale Trading)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Introduce new use-case partnerships
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Expand our Network of Ambassadors
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
List on a decentraliced exchange (DEX)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Budget Proposal Engine
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Add Governor to MSW
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Tip Bot Discord
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Integrate Point of Sale for Merchant accepting MRX
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Atomic Swaps
</div>
</div>
<div class="roadmap__task rm-prg-wp">
<div class="roadmap__task--title">
Vendit Debit Card
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Create Short Addresses
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Wrap MRX using ETH bridge
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Instant transactions (through CoinsPaid)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Wrap MRX using BSC bridge
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Introduce Merchants to accept MRX
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
WSG Launch
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Produce Blockchain Chronicles Series
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Submit listing application to list on a top 20 exchange
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Buy.Metrixcoin.com website
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Update MSW & User Manual with Buy.Metrixcoin.com
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Open VIP Discord room for 100M MRX Holders, 50M MRX Holders, 25M MRX holders and Governors
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Publish Medium Articles on Media Watch, Yahoo News, Yahoo Finance, Yahoo Business as well as 73 other major publications
</div>
</div>
</div>
<!--End of roadmap__tasks Q1+Q2, 2021-->
</div>
<div class="pure-u-1 roadmap__quarter future ">
<div class="roadmap__quarter--label-wrap">
<label for="" class="roadmap__quarter--label">QTR 3+4, 2021</label>
</div>
<div class="roadmap__tasks">
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
CEO Monthly Update [video]
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Updates to WSG
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
User Interface upgrade MSW
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
User Interface upgrade MNP
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
List on Uniswap MRXe
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
List on Pancake MRXb
</div>
</div>
<div class="roadmap__task rm-prg-wp">
<div class="roadmap__task--title">
Vendit Credit Card
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Release Short Addresses
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
AMA’s from the team
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
SEO of Metrixcoin.com (ongoing)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Influencer Reviews on Metrix Coin [video]
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Tip Bot Telegram
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Introduce new use-case partnerships
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Submit a Listing Application for a top 20 US Friendly exchange
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
AMA's with large communities
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Create a Metrix Relay Network
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Launch Podcasts (Apple Music, Spotify)
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Create Test Net Faucet
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Add Liquidity Pool InfinityCrypto for MRXb / SHARD
<br>
<img src="img/Shard-Logo.svg" alt="Shard" height="23px">
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Add Liquidity Pool InfinityCrypto for MRXb/BNB
<br>
<img src="img/bnb-logo.svg" alt="Binance BNB" height="23px">
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Add MRXb / MRXe InfinityWallet
<br>
<img src="img/Infinity_official_logo_icon.svg" alt="Infinity wallet logo" height="23px">
</div>
</div>
<div class="roadmap__task rm-prg-fs">
<div class="roadmap__task--title">
Create MetriMask Light Wallet
<br>
<img src="img/MetriMask-logo.svg" alt="Infinity wallet logo" height="23px">
</div>
</div>
<div class="roadmap__task rm-prg-fs">