-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNFT-DAO EZ-Name.html
713 lines (657 loc) · 59.2 KB
/
NFT-DAO EZ-Name.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Specific Meta
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- Titles
================================================== -->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="assets/images/Group 390.png" />
<link rel="apple-touch-icon" sizes="72x72" href="assets/images/android-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/images/apple-icon-144x144.png" />
<link
href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- CSS
================================================== -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/owl.carousel.min.css" />
<link rel="stylesheet" href="assets/css/simple-scrollbar.css" />
<link rel="stylesheet" href="assets/css/odometer-theme-default.css" />
<link rel="stylesheet" href="assets/css/fontawesome.all.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/js/modernizr.min.js"></script>
</head>
<body data-bs-spy="scroll" data-bs-target=".navigation-area">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Start Site Header
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<header class="site-header default-header-style">
<div class="container">
<div class="row align-items-center">
<div class="col-12">
<div class="navigation-area">
<!-- Site Branding -->
<div class="site-branding">
<a href="index.html">
<img src="assets/images/logo.png" alt="Site Logo" />
</a>
</div>
<!-- /.site-branding -->
<!-- Site Navigation -->
<div class="site-navigation">
<nav class="navigation">
<!-- Main Menu -->
<div class="menu-wrapper">
<div class="menu-content">
<ul class="mainmenu">
<li>
<a class="nav-link" href="#completed-projects">Completed Projects</a>
</li>
<li>
<a class="nav-link" href="#goals">Goals</a>
</li>
<li>
<a class="nav-link" href="#current-projects">Current Projects</a>
</li>
<li>
<a class="nav-link" href="#about">About</a>
</li>
<li>
<a href="contact.html"><button class="costume-btn">JOIN US</button></a>
</li>
</ul>
<!-- /.menu-list -->
</div>
<!-- /.hours-content-->
</div>
<!-- /.menu-wrapper -->
</nav>
</div>
<!-- /.site-navigation -->
<div class="hamburger-menus">
<span></span>
<span></span>
<span></span>
</div>
<!-- /.hamburger-menus -->
</div>
<!-- /.navigation-area -->
</div>
<!-- /.col-12 -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
<div class="mobile-sidebar-menu sidebar-menu">
<div class="overlaybg"></div>
</div>
</header>
<!--~~./ end site header ~~-->
<!--********************************************************-->
<!--********************* SITE CONTENT *********************-->
<!--********************************************************-->
<div class="site-content">
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-lg-6 left-sided">
<span class=" badge-pill badge-primary page-badge">FUND 5</span>
<h3 class="page-header-title mt-5">F5: Developer ecosystem</h3>
<h3 class="page-main-title">NFT-DAO EZ-Name</h3>
<p class="page-subtitle mt-5">Problem statement:</p>
<p class="page-plain-text"> Machine-readable IDs like Cardano addresses, other cryptocurrency addresses, content hashes, and metadata are not human centered design.</p>
<p class="page-subtitle">Describe your solution to the problem</p>
<p class="page-plain-text">Improve user experience by mapping human-readable names like 'alice.ada' to machine-readable identifiers such as Cardano addresses.</p>
<p class="page-subtitle">Relevant experience</p>
<p class="page-plain-text"> <span class="page-subtitle">MuKn.io/Glow</span>
brings skills of cybersecurity, cryptography, distributed systems, systems programming, economic modeling & mechanism design.
</p>
</div>
<div class="col-lg-6">
</div>
</div>
<div class="row">
<div class="col-lg-6 left-sided mt-5">
<h3 class="page-header-title">Website/GitHub repository (not requ ired) <p class="page-subtitle">https://github.com/NFT-DAO</p>Detailed plan - Fill in here any additional details
<br/>
<br/></h3>
<p class="page-plain-text">
Interoperable NFTs across chains research project.
</p>
<p class="page-subtitle">EZ-Name </p>
<p class="page-plain-text-but-lighter">
Make a human-readable naming-system available for Cardano developers and users.
<br/><br/>
</p>
<p class="page-subtitle">How?</p>
<p class="page-plain-text-but-lighter">
Abstract the unreadable common long string of numbers and letters by pointing them to an easy-to-read name. Like a domain name URL (e.g; cardano.org) instead of an IP address (e.g.; 127.0.0.1).
<br/><br/>
</p>
<p class="page-subtitle">Why?</p>
<p class="page-plain-text">* Ease-of-Use
* Utility allows changing machine-readable addresses without changing the human-readable EZ-Name
* Many advantages for developers and users alike
</p>
<p class="page-subtitle">PROJECT SCOPE</p>
<p class="page-plain-text">
* Create a friendly fork of the Handshake.org code base specifically for Cardano use.
- Handshake server and client is currently deployed as UTxO Proof of Work on a $185MM market cap blockchain and has a complete system design we can utilize with changes that benefit from Cardano's architecture.<br/><br/>
- We will fork it to UTxOma Proof of Stake on a $40B market cap blockchain and help their project and Cardano at the same time.<br/><br/>
* Deploy the server-side code in a decentralized network configuration through the stakepool operator's network where they can be remunerated for processing the transactions. Adds another service to their value-add stack. Or we can workout another network scheme if needed.<br/><br/>
* Operate the client-side libraries as a perpetual service to the Cardano community of developers and users. Provide support, maintenance and upgrades.
</p>
<p class="page-subtitle">PROJECT SCOPE</p>
<p class="page-plain-text">
* This is a research project as the very first step in figuring out the best way to create interoperability of NFTs across chains and games and uses.
<br/><br/>
- We will work with the Mutual Knowledge team to design a methodology, protocol, standards or whatever we need to make it very easy to have NFTs become portable on demand. We also are applying to join the InterNFT (https://internft.org/) to share research and solutions.
</p>
<p class="page-subtitle">BENEFITS</p>
<p class="page-plain-text">
* Developers benefit with a solution to the ease-of-use problem for DApps and contracts.
<br/><br/>
* Developers benefit from a high-quality API Handshake has already deployed allowing open querying.
<br/><br/>
* Supports multi-wallet/ multi-currency and other applications.
<br/><br/>
* Offers a system to fight scam addresses with blacklisting ability.
<br/><br/>
* Handshake benefits with greater use and a Proof of Stake solution compatible with theirs.
<br/><br/>
* Cardano benefits from all the integration work Handshake has already undertaken.
<br/><br/>
* Stakepool operators benefit with another service they can accumulate small transaction fees.
<br/><br/>
* Users benefit from ease-of-use improvements to the ecosystem.
</p>
<p class="page-subtitle">SCHEDULE</p>
<p class="page-plain-text">
General Availability (GA) is approximately 8-weeks from start date. Fully Operational (FO) is approximately 6-months from start date.
<br/><br/>
Please note, we love this idea so much, we are looking to get started now—even without funding approval votes from the community. If we can float the costs, and you see this service before it is even time to vote on it, we hope you will award us the funding to cover it.
</p>
<p class="page-subtitle">PLAN AND BUDGET</p>
<h3 class="page-header-title">
Phase 1
</h3>
<p class="page-plain-text">
- Research friendly fork methods and dialog with Handshake org and MuKn
<br/><br/>
- Market testing the concept and the potential uptake on the service
(In process already within NFT-DAO working groups)
<br/><br/>
</p>
<h3 class="page-header-title">
Phase 2
</h3>
<p class="page-plain-text">
- Prioritize Resource Utilization<br/>
- Assign teams and workload><br/>
- Mutual Knowledge will handle the development><br/>
- NFT-DAO will handle the commercialization (requirements, website, market research, partnerships, operations)><br/>
<br/><br/> <br/><br/>
Total: $8,200 To cover research time and solution architecture design
</p>
<h3 class="page-header-title">
Phase 3
</h3>
<p class="page-plain-text">
- Run Sprints to build components needed<br/>
<br/><br/> <br/><br/>
<h3 class="page-header-title">
Phase 4
</h3>
<p class="page-plain-text">
- Testing, Audit and hardening (dev/ops teams doing verification testing)
<br/><br/> <br/><br/>
<h3 class="page-header-title">
Phase 5
</h3>
<p class="page-plain-text">
- Go Live (alpha and beta testing in real world conditions)
<br/><br/> <br/><br/>
<h3 class="page-header-title">
Phase 6
</h3>
<p class="page-plain-text">
- G/A Launch (General Availability for developers to use)
<br/><br/> <br/><br/>
Total: $59, 842 # Includes contract development, marketing and operational estimates allowing for a six-month launch cycle.
</p>
</p>
<p class="page-subtitle">DEFINED SUCCESS REPORTING</p>
<p class="page-plain-text-but-lighter">
3-month: Post funding much of this work will be available to see firsthand and can be followed in the Github repository. The system should be up and running in General Availability (GA).<br/>
6-month: Active and Fully Operational (FO).<br/>
12-month: Working within the wider blockchain community with many of the list of collaborators listed below, and adopting our model for use with the wider community.
</p>
<p class="page-subtitle">BACKGROUND</p>
<p class="page-plain-text-but-lighter">
The NFT-DAO is committed to building infrastructure components that improve the use of NFTs on Cardano and deploy easy solutions for the community.
We see EZ-Name—the Cardano Name Service (CNS), as an integral part of making the Cardano ecosystem more user-friendly.
</p>
<p class="page-subtitle">We have two complementary goals:</p>
<p class="page-plain-text-but-lighter">
1. On the user side, we believe that in every instance a user might otherwise see a Cardano address or content hash, they should instead see an EZ-Name domain.
<br/>
2. On the developer side, we envision a future in which EZ-Name is not something your DApp might use, it's something without which your DApp remains unfinished. (Who would make a website today and not use DNS?)
</p>
<p class="page-subtitle">This means doing things like the following:
</p>
<p class="page-plain-text-but-lighter">
* All wallets should allow users to input EZ-Name domains (rather than only Cardano addresses) in the "Send to" field for sending tokens.
<br/>
* All wallets should display an EZ-Name domain as the user's wallet address (via Reverse Lookup; and this should be done rather than showing a Cardano address, which could still be accessed via an "advanced" option, or shown below the name).
<br/>
* Wallets and DApps can give users subdomains in the user on-boarding process to use as their username/wallet address.
<br/>
* All DApp contracts that users interact with should be displayed and used with an EZ-Name domain. This allows developers to substitute Cardano addresses without rewriting/publishing their code.
<br/>
* Making your offline storage content (i.e.; NFTs) available via an EZ-Name domain (which makes it accessible via CNS compliant browsers).
<br/>
* The system works like a DNS (Domain Name Service) and therefore is useable for wallet addresses, websites and anything a decentralized ID can and will be assignable to.
<br/>
There is of course significant integration work that needs to take place following the implementation. Once the system is installed and up and running for our domain names, there are numerous other systems that are already intrenched in the centralized web and some in the decentralized web that will need to be thoughtfully considered in integration. That is why this is the fastest solution, because Handshake is already well along the way making the right moves toward collaborative integrations that EZ-Name will benefit from.
</p>
<p class="page-subtitle">We want to do everything we can to help developers by making this happen:
</p>
<p class="page-plain-text-but-lighter">
* We will build EZ-Name as the Cardano Name Service (CNS) an ENS-like service to provide a more user friendly experience for the developer community we seek to attract to Cardano. It will also benefit the complete community as well. This can be used for things like trading NFT's among friends or easily searching/finding various creators.
<br/>
* EZ-Name's job is to map human-readable names like 'alice.ada' to machine-readable identifiers such as Cardano addresses, other cryptocurrency addresses, content hashes, and metadata. EZ-Name will also support 'reverse resolution', making it possible to associate metadata such as canonical names or interface descriptions with Cardano addresses.
<br/>
* EZ-Name has similar goals to DNS, the Internet's Domain Name Service, but has significantly different architecture, due to the capabilities provided by the Cardano blockchain. Like DNS, EZ-Name operates on a system of dot-separated hierarchical names called domains, with the owner of a domain having full control over subdomains.
<br/>
* Top-level domains, like '.ada' and '.sft' follow specific rules governing the allocation of their subdomains. Anyone may, by following the rules, obtain ownership of a domain for their own use.
<br/>
* Because of the hierarchal nature of CNS, anyone who owns a domain at any level may configure subdomains - for themselves or others - as desired. For instance, if Alice owns 'alice.ada', she can create 'pay.alice.ada' and configure it as she wishes.
</p>
<p class="page-subtitle">GUIDING QUESTIONS
</p>
<p class="page-subtitle">What are the the tools that we need to prioritize first
</p>
<p class="page-plain-text-but-lighter">
Our model centers on a NFT Framework of composable parts that continue to add functionality and ease the developer and user experience. Weighing that against the development cycles required to produce the components, this project fills a large gap in a short period of time.
</p>
<p class="page-subtitle">How do we attract developers from outside of our current community to participate in Catalyst?
</p>
<p class="page-plain-text-but-lighter">
Creating integrations that are useable across chains and ecosystems is one way, and this is thought through with this proposal.
</p>
<br/><br/>
<p class="page-subtitle">What do developers want, and how do they get it from the Cardano dev ecosystem?
</p>
<p class="page-plain-text-but-lighter">
Developers want tools and approaches that make their lives simpler. They also want clear documentation to ensure they can implement new things without too much trouble. They also want things to work they way they are intended. This project is well thought out and implemented already, it simply needs to be ported over and adjusted for the new environment. It will start small and grow over time with extensions.
</p>
<br/><br/>
<p class="page-subtitle">What would make a developer motivated to grind through the docs and code no matter how hard it is to create an app?
</p>
<p class="page-plain-text-but-lighter">
It has to be well worth the trouble. So rather than fight that, we aim to make it easier, faster and more fun with this project.
</p>
<br/><br/>
<p class="page-subtitle">
What are enterprise dev managers looking for in order to be able to build out enterprise projects - either internal or commercial?
</p>
<p class="page-plain-text-but-lighter">
Wether internal or commercial, the enterprise has a high standard of security, compliance, documentation, support, packaging and dev/ops. That is the reason a friendly fork of the Handshake project makes more sense than any other implementation.
Handshake was forked from a previous project that has numerous enterprise clients, bcoin . io is a solid basis and Handshake has a several year history of operations. Building from it, with the MuKn Glow team will offer us the quality of code required by the enterprise.
</p>
</div>
<div class="col-lg-6">
</div>
</div>
<div class="row">
<div class="col-lg-6 left-sided mt-5">
<p class="page-subtitle">WHO WILL DELIVER THIS SOLUTION?
TEAM MUTUAL KNOWLEDGE</p>
<p class="page-subtitle">What are the the tools that we need to prioritize first</p>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">François-René "Faré" Rideau</span>
- CEO++,++ Co-Founder, has been making programming languages and distributed systems usable for 25 years. Alumnus of the École Normale Supérieure, Former Senior Engineer at ITA Software, he also worked at Google and Bridgewater Associates.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
While working in the industry, he notably maintained and rewrote ASDF, the build system at the heart of the Common Lisp open source community; he also kept publishing academic papers and speaking at programming language conferences; early in his career, he even proved in Coq the correctness of a (centralized) payment protocol.
Eventually, his interests in economics and software security converged with his experience in open source software and formal methods and he started working on Layer 2 solutions for the Blockchain. Since January 2018, he has made plenty of mistakes as co-founder of startups, and learned the hard way to become his own CEO. </p>
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">Alexander Smart </span>
- Chief Operations Officier, Co-Founder, has always thought fast, but learned to think deep and sharp at UChicago. After studying law at Pepperdine, he spent nearly fifteen years guiding executives and decision makers through litigation, in matters ranging from shoplifting and speeding tickets to multi-forum international investment bank disputes.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
His practice honed his ability to quickly assimilate and master new information, and deliver that information clearly at any level of sophistication. Tiring of courthouses, he found his skills were readily applicable and desperately needed in the blockchain space.
</p>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">Gauthier Lamothe</span>
- Chief Communications Officer, Co-Founder, has been a seasoned coach, psychotherapist and instructor in communication and management.
He doubled his career as a media expert (film and software producer, then e-marketing manager).
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
He participated in the development of a few blockchains, for entities such as the Free Republic of Liberland, and worked on decentralized justice systems, tokenization of governance, and of course crypto-currencies.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
His work in the MuKn ecosystem is to take care of every aspect related to communications and human issues, both within the company and with customers and partners, for awareness of human-related safety risks are often dramatically underestimated in the blockchain space.
</p>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">Alexander Knauth </span>
- Developer, Alexander studied at Northeastern University College of Computer and Information Science and achieved a Bachelor of Science in Computer Science, where he researched Type Systems and Macros.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
Co-author of two research papers at POPL, he also contributed to the Racket programming language.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
Currently working for Mutual Knowledge Systems Inc. after a first collaboration on another project for Alacris/Legilogic
</p>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">Drew Crampsie </span>
- Developer, Drew is an independent systems developer with over 20 years of experience in designing, implementing and maintaining Internet based applications and servers with a focus on "bleeding edge" Web Apps.
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
Drew is a seasoned user in non-mainstream and mainstream techs and languages (Scheme, Common Lisp, SQL, Javascript, C…).
</p>
<br/><br/>
<p class="page-plain-text-but-lighter">
<span class="page-subtitle">Emeka Nwanko </span>
- Developer, After graduating in 2005 from Nnamdi Azikiwe University, Emeka Nwanko worked for several companies as a Field Engineer or Operations Manager, such as Schlumberger Nigeria or Northern Oilfield Services and Supplies.
</p>
<p class="page-plain-text-but-lighter">
He also worked for Satajanus Nigeria Limited as a software developer in the field of Blockchain industry, both in C# and F#, but also in Rust and Solidity.
He also offers free programming classes as a teacher.
</p>
<br/><br/>
<p class="page-subtitle">TEAM NFT-DAO</p>
<p class="page-plain-text-but-lighter">
Our team is drawing talent in at this writing over 320+ persons joined our NFT-DAO Discord. We're embracing everyone who strongly desires an overarching NFT framework on Cardano—especially those who proposed NFT solutions—and invite you to join our NFT DAO that will open-source the patterns we build as a community. Join us in a coordinated and consolidated effort. Others have already merged their proposal. You'll join:
<br/><br/>
<span class="page-subtitle">Rich Kopcho</span> , a life-long entrepreneur building 18 start-ups in his career. He has owned and managed a development shop and open-sourced the successful 'Restore' backup solution. He taught manufacturers around the world Holonic manufacturing (1997-2007); a heterarchical systems and technology approach that is the foundation DAOs are based on. He currently operates a venture studio in Laramie WY building technology solutions with partners. Rich is the executive producer of the Wyoming Blockchain Stampede - an annual conference by UWYO that IOHK/Cardano/Emurgo and others sponsor to educate the blockchain community.
<br/><br/>
<span class="page-subtitle">Michael Yagi</span> Michael Yagi, a senior software engineer with experience facilitating integration between different technologies across many different facets in a smooth, seamless fashion. He has a background in leading the development for projects that need to ship projects with many unknowns in a timely manner. His interest lie in building the bridge between the ocean and the pond (Cardano and "traditional" software engineering) as well as leveraging his game development background for NFT's in the game industry.
<br/><br/>
<span class="page-subtitle">Tyler Wales</span> Tyler Wales, an entrepreneur with product development and management expertise, and experience bringing new solutions to market. He has launched multiple profitable businesses in media and technology and has established relationships in film production and distribution. Tyler is currently a mentor at Portland Incubator Experiment.
<br/><br/>
<span class="page-subtitle"> Community Members n+1</span> Community Members n+1, is passionate about NFTs and has aligned themselves to a previous proposal seeking funding for a NFT point solution. They are eager to build their business model on top of a solid framework. Since none has existed for Cardano, they were planning to build one for themselves from scratch. They are one of ~300 individuals who could potentially pool their expertise into an all-embracing open-source version to benefit the entire community rather than one project. Their expertise is multivariate in development, SPO, marketing, design, business, and more.
</p>
<br/>
<br/>
<p class="page-subtitle">POTENTIAL COLLABORATIVE LANDSCAPE (who we will eventually need to integrate with)
</p>
<p class="page-subtitle">
ICANN has been the root namespace for the internet. ICANN (CA, US)
Cloudflare, Inc. (DE, US) is a corporation doing fundamental research for
naming, caching, and certificate authorities.
Namecoin is a decentralized naming blockchain.
Verisign, Inc. (VA, US) is the registrar for .com and .net.
Keybase has been innovating in the naming and certificate authority space.
Public Internet Registry (VA, US) maintains the .org namespace (sold).
Afilias plc (IE) has been the service provider for the .org namespace (sold).
Namecheap is a large domain registrar and has support cryptocurrency in the
past.
Godaddy (AZ, US) is a large domain registrar and has a Certificate Authority as
well.
Blockstack is a corporation developing a naming blockchain as well as a
decentralized internet stack.
ENS (True Names LTD (SG)) is developing an alternate naming root (.eth) using
an Ethereum smart contract.
GnuNet provides PKI infrastructure and provides identity via a DHT.
</p>
<p class="page-subtitle">CATALYST PROPOSALS DISCOVERED SINCE INITIAL WRITING
</p>
<p class="page-subtitle">
All these proposals are looking for the same end result, EZ-Names on Cardano. The differences come down to execution tactics and system design for the long-play and eventual interoperability across existing and future systems and blockchains.
</p>
<br/><br/>
<p class="page-subtitle">
Fund4 (a guy in our DAO, Phil, we didn't realize had this open, resubmitted from Fund 3)
<span class="page-subtitle">https://cardano.ideascale.com/a/dtd/ </span> DARP-Cardano-Address-Name-Service/ 341994-48088
</p>
<p class="page-subtitle">
PRO: Already on our NFT-DAO team and collaborating, DID based approach
CON: Atala PRISM not release yet, and DID resolve might be an extra layer TBD
</p>
<p class="page-subtitle">
Fund5 (ours)
<span class="page-subtitle">https://cardano.ideascale.com/a/dtd/ </span> CNS-as-NFT-Cardano-Name-Service/ 352159-48088
</p>
<p class="page-subtitle">
Fund5 (not ours, they asked to collaborate and we agreed and MERGED! )
https://cardano.ideascale.com/a/dtd/ Cardano-blockchain-domain-addresses/ 352215-48088
PRO: Have the right idea for use cases
CON: Doesn't consider the overall system architecture needing deployed
<br/><br/>
Fund5 (not ours, resubmitted from Fund 3, we reached out to collaborate, he is too busy with his other projects)
</p>
<p class="page-subtitle">
<span class="page-subtitle">https://cardano.ideascale.com/a/dtd/</span> Wallet-Name-System-WNS/ 350761-48088
PRO: Thinking about the server architecture, API access
CON: Propagating the server network not well planned yet
<p class="page-subtitle">Requested funds in USD_old
<span class="page-plain-text">
8200
</span>
<br/><br/>
Proposals that haven't indicated that they have included all items in the checklist by end of proposal Finalize stage, will not be eligible for voting and will be archived.
</p>
</div>
<div class="col-lg-6">
</div>
<div class="row mt-5">
<div class="col-lg-6">
<span class="highlighted-text"> Received emails from [email protected], Submitted this proposal to only one challenge, How my proposal impacts the challenge metrics, How I address the challenge question, Definition of success after 3, 6 and 12 months, Broken down my budget requirements, Defined expected public launch date.</span>
</div>
<div class="col-lg-6">
</div>
</div>
</div>
</div>
</div>
<footer id="contact-block" class="site-footer content-web">
<div class="container">
<div class="row footer-container align-items-end mb-5">
<div class="col-lg-2">
<img src="assets/images/logo.png" alt="" />
</div>
<div class="col-lg-2">
<div class="col-lg-12">
<img src="assets/images/footericon1.png" alt="" />
</div>
<div class="col-lg-12 mt-3">
<img src="assets/images/footericon2.png" alt="" />
</div>
</div>
<div class="col-lg-4 seeded">
<p>
Seeded by Catalys,<br />
Built on Cardano
</p>
</div>
<div class="col-lg-2 empty">
<svg
xmlns="http://www.w3.org/2000/svg"
width="728.722"
height="603.023"
viewBox="0 0 728.722 603.023"
style="margin-left: -37vh"
>
<g id="Group_389" data-name="Group 389" transform="translate(-1012.278 -3419.956)">
<g id="Icon_awesome-github" data-name="Icon awesome-github" transform="translate(1289.39 3640.292)">
<a target="_blank" href="https://github.com/NFT-DAO">
<path
class="test1"
id="Icon_awesome-github-2"
data-name="Icon awesome-github"
d="M69.273,163.159c0,.835-.96,1.5-2.171,1.5-1.378.125-2.338-.543-2.338-1.5,0-.835.96-1.5,2.171-1.5C68.188,161.531,69.273,162.2,69.273,163.159ZM56.287,161.28c-.292.835.543,1.8,1.8,2.046a1.959,1.959,0,0,0,2.589-.835c.251-.835-.543-1.8-1.8-2.171A2.143,2.143,0,0,0,56.287,161.28Zm18.456-.71c-1.211.292-2.046,1.086-1.921,2.046.125.835,1.211,1.378,2.464,1.086,1.211-.292,2.046-1.086,1.921-1.921C77.082,160.988,75.954,160.445,74.743,160.57ZM102.219.563C44.3.563,0,44.531,0,102.446c0,46.307,29.146,85.933,70.777,99.88,5.345.96,7.224-2.338,7.224-5.052,0-2.589-.125-16.869-.125-25.638,0,0-29.229,6.263-35.367-12.443,0,0-4.76-12.151-11.608-15.283,0,0-9.562-6.556.668-6.43a22.041,22.041,0,0,1,16.118,10.773c9.145,16.118,24.469,11.483,30.44,8.727.96-6.681,3.675-11.316,6.681-14.072-23.342-2.589-46.892-5.971-46.892-46.14,0-11.483,3.173-17.245,9.854-24.594-1.086-2.714-4.635-13.9,1.086-28.352C57.582,41.107,77.666,55.1,77.666,55.1a98.645,98.645,0,0,1,52.446,0s20.085-14.03,28.812-11.274c5.721,14.489,2.171,25.638,1.086,28.352,6.681,7.391,10.773,13.153,10.773,24.594,0,40.294-24.594,43.509-47.936,46.14,3.842,3.3,7.1,9.562,7.1,19.375,0,14.072-.125,31.484-.125,34.908,0,2.714,1.921,6.013,7.224,5.052,41.756-13.863,70.067-53.489,70.067-99.8C207.11,44.531,160.135.563,102.219.563ZM40.587,144.578c-.543.418-.418,1.378.292,2.171.668.668,1.628.96,2.171.418.543-.418.418-1.378-.292-2.171C42.09,144.327,41.13,144.035,40.587,144.578Zm-4.51-3.382c-.292.543.125,1.211.96,1.628a1.242,1.242,0,0,0,1.8-.292c.292-.543-.125-1.211-.96-1.628C37.038,140.653,36.37,140.778,36.077,141.2Zm13.529,14.865c-.668.543-.418,1.8.543,2.589.96.96,2.171,1.086,2.714.418.543-.543.292-1.8-.543-2.589C51.4,155.518,50.149,155.393,49.606,156.061Zm-4.76-6.138c-.668.418-.668,1.5,0,2.464s1.8,1.378,2.338.96a1.9,1.9,0,0,0,0-2.589C46.6,149.8,45.514,149.38,44.846,149.923Z"
transform="translate(0 -0.563)"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
<g
id="Icon_awesome-medium-m"
data-name="Icon awesome-medium-m"
transform="translate(1012.278 3640.292)"
>
<a href="https://medium.com/nft-dao" target="_blank">
<path
class="test1"
id="Icon_awesome-medium-m-2"
data-name="Icon awesome-medium-m"
d="M19.682,30.031a6.156,6.156,0,0,0-1.989-5.152L2.987,7.141V4.5H48.7L84.05,82.007,115.124,4.5h43.6V7.141L146.134,19.206a3.673,3.673,0,0,0-1.4,3.522v88.691a3.673,3.673,0,0,0,1.4,3.522l12.293,12.065v2.641H96.571v-2.641l12.75-12.358c1.239-1.239,1.239-1.63,1.239-3.522V39.455L75.115,129.418H70.322L29.106,39.455V99.745a8.213,8.213,0,0,0,2.283,6.913l16.565,20.086v2.641H1v-2.609l16.565-20.119a7.944,7.944,0,0,0,2.119-6.913Z"
transform="translate(-0.998 -4.5)"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
<g
id="Icon_awesome-twitter"
data-name="Icon awesome-twitter"
transform="translate(1217.683 3419.956)"
>
<a href="https://twitter.com/nft_dao" target="_blank">
<path
class="test1"
id="Icon_awesome-twitter-2"
data-name="Icon awesome-twitter"
d="M146.923,36.526c.1,1.455.1,2.91.1,4.364,0,44.367-33.769,95.489-95.49,95.489A94.842,94.842,0,0,1,0,121.313a69.431,69.431,0,0,0,8.1.415A67.214,67.214,0,0,0,49.771,107.39a33.621,33.621,0,0,1-31.38-23.275,42.322,42.322,0,0,0,6.339.519,35.5,35.5,0,0,0,8.832-1.143A33.566,33.566,0,0,1,6.65,50.554v-.415A33.8,33.8,0,0,0,21.82,54.4,33.611,33.611,0,0,1,11.429,9.511a95.4,95.4,0,0,0,69.2,35.12,37.886,37.886,0,0,1-.831-7.689,33.594,33.594,0,0,1,58.084-22.963,66.077,66.077,0,0,0,21.3-8.1,33.471,33.471,0,0,1-14.755,18.5,67.281,67.281,0,0,0,19.326-5.2A72.144,72.144,0,0,1,146.923,36.526Z"
transform="translate(0 -3.381)"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
<g
id="Icon_awesome-discord"
data-name="Icon awesome-discord"
transform="translate(1577.375 3486.455)"
>
<a href="https://discord.gg/AVJzsdaa5T" target="_blank">
<path
class="test1"
id="Icon_awesome-discord-2"
data-name="Icon awesome-discord"
d="M108.554,88.825c0,5.7-4.208,10.378-9.537,10.378-5.236,0-9.537-4.675-9.537-10.378s4.208-10.378,9.537-10.378S108.554,83.121,108.554,88.825ZM64.889,78.446c-5.33,0-9.537,4.675-9.537,10.378S59.653,99.2,64.889,99.2c5.33,0,9.537-4.675,9.537-10.378C74.52,83.121,70.219,78.446,64.889,78.446Zm98.736-59.185V187c-23.555-20.816-16.022-13.926-43.384-39.363l4.956,17.3H19.168A19.214,19.214,0,0,1,0,145.672V19.261A19.214,19.214,0,0,1,19.168,0h125.29A19.214,19.214,0,0,1,163.625,19.261ZM136.978,107.9c0-30.107-13.464-54.51-13.464-54.51C110.05,43.29,97.24,43.571,97.24,43.571l-1.309,1.5c15.9,4.862,23.282,11.874,23.282,11.874C97,44.768,70.913,44.766,49.368,54.23c-3.46,1.589-5.517,2.711-5.517,2.711s7.761-7.386,24.591-12.248l-.935-1.122s-12.81-.28-26.274,9.817c0,0-13.464,24.4-13.464,54.51,0,0,7.854,13.557,28.518,14.212,0,0,3.46-4.207,6.265-7.76-11.875-3.553-16.363-11.033-16.363-11.033,1.375.963,3.644,2.211,3.834,2.337,15.782,8.838,38.2,11.733,58.344,3.272a53.506,53.506,0,0,0,10.753-5.516s-4.675,7.667-16.924,11.126c2.805,3.553,6.171,7.573,6.171,7.573C129.03,121.456,136.978,107.9,136.978,107.9Z"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
<g
id="Icon_awesome-linkedin-in"
data-name="Icon awesome-linkedin-in"
transform="translate(1585.805 3784.715)"
>
<a href="https://www.linkedin.com/company/nft-dao/" target="_blank">
<path
class="test1"
id="Icon_awesome-linkedin-in-2"
data-name="Icon awesome-linkedin-in"
d="M25.747,115.021H1.9V38.228H25.747ZM13.811,27.753A13.876,13.876,0,1,1,27.621,13.811,13.927,13.927,0,0,1,13.811,27.753ZM115,115.021H91.2V77.639c0-8.909-.18-20.334-12.4-20.334-12.4,0-14.3,9.679-14.3,19.693v38.024H40.685V38.228H63.556V48.7h.334c3.184-6.034,10.961-12.4,22.563-12.4,24.135,0,28.571,15.893,28.571,36.535v42.184Z"
transform="translate(0 -0.001)"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
<g id="Icon_awesome-youtube" data-name="Icon awesome-youtube" transform="translate(1216.16 3919.954)">
<a href="https://www.youtube.com/channel/UCsT66TXtF48V4GRJzaUVwlw" target="_blank">
<path
class="test1"
id="Icon_awesome-youtube-2"
data-name="Icon awesome-youtube"
d="M144.449,20.62A18.407,18.407,0,0,0,131.5,7.582C120.079,4.5,74.28,4.5,74.28,4.5s-45.8,0-57.221,3.082A18.407,18.407,0,0,0,4.11,20.62c-3.06,11.5-3.06,35.5-3.06,35.5s0,24,3.06,35.5a18.133,18.133,0,0,0,12.949,12.83c11.422,3.082,57.221,3.082,57.221,3.082s45.8,0,57.221-3.082a18.133,18.133,0,0,0,12.949-12.83c3.06-11.5,3.06-35.5,3.06-35.5s0-24-3.06-35.5ZM59.3,77.9V34.33L97.58,56.117,59.3,77.9Z"
transform="translate(-1.05 -4.5)"
fill="#fff"
opacity="0.2"
/>
</a>
</g>
</g>
</svg>
</div>
<div class="col-lg-2"><img src="assets/images/followus.svg" alt="" /></div>
</div>
</div>
</footer>
<footer id="contact-block" class="site-footer content-mobile">
<div class="container ">
<div class="row footer-container align-items-start mb-5">
<div class="col-lg-12">
<svg width="300" height="290" viewBox="0 0 350 290" fill="none" xmlns="http://www.w3.org/2000/svg">
<a target="_blank" href="https://github.com/NFT-DAO">
<path opacity="0.2" d="M166.365 183.92C166.365 184.321 165.904 184.641 165.322 184.641C164.661 184.701 164.2 184.38 164.2 183.92C164.2 183.519 164.661 183.2 165.242 183.2C165.844 183.138 166.365 183.459 166.365 183.92ZM160.128 183.018C159.988 183.419 160.389 183.882 160.993 184C161.211 184.107 161.463 184.126 161.695 184.051C161.927 183.976 162.121 183.814 162.236 183.599C162.357 183.198 161.975 182.735 161.372 182.557C161.143 182.474 160.893 182.476 160.666 182.56C160.438 182.644 160.248 182.806 160.128 183.018ZM168.992 182.677C168.411 182.817 168.01 183.198 168.07 183.659C168.13 184.06 168.651 184.321 169.253 184.181C169.835 184.041 170.236 183.659 170.176 183.258C170.116 182.877 169.574 182.617 168.992 182.677ZM182.189 105.826C154.371 105.826 133.094 126.944 133.094 154.76C133.094 177.001 147.092 196.033 167.088 202.732C169.655 203.193 170.557 201.609 170.557 200.305C170.557 199.062 170.497 192.203 170.497 187.992C170.497 187.992 156.459 191 153.511 182.015C153.511 182.015 151.224 176.179 147.935 174.675C147.935 174.675 143.343 171.526 148.256 171.587C149.856 171.802 151.385 172.38 152.726 173.277C154.068 174.174 155.187 175.365 155.998 176.761C160.39 184.502 167.75 182.276 170.618 180.952C171.079 177.743 172.383 175.517 173.827 174.194C162.616 172.95 151.305 171.326 151.305 152.033C151.305 146.518 152.829 143.75 156.037 140.221C155.516 138.917 153.811 133.544 156.559 126.603C160.75 125.299 170.396 132.02 170.396 132.02C178.639 129.747 187.343 129.747 195.586 132.02C195.586 132.02 205.232 125.281 209.424 126.605C212.172 133.564 210.467 138.919 209.946 140.222C213.154 143.772 215.12 146.54 215.12 152.035C215.12 171.388 203.307 172.932 192.096 174.196C193.942 175.781 195.507 178.788 195.507 183.501C195.507 190.26 195.447 198.623 195.447 200.267C195.447 201.571 196.369 203.155 198.916 202.694C218.971 196.035 232.569 177.003 232.569 154.76C232.567 126.944 210.006 105.826 182.189 105.826ZM152.587 174.996C152.327 175.196 152.387 175.658 152.728 176.038C153.049 176.359 153.51 176.5 153.77 176.239C154.031 176.038 153.971 175.577 153.63 175.196C153.309 174.875 152.848 174.735 152.587 174.996ZM150.421 173.371C150.281 173.632 150.481 173.953 150.882 174.153C150.947 174.204 151.022 174.241 151.101 174.261C151.181 174.282 151.264 174.285 151.345 174.272C151.427 174.259 151.504 174.229 151.573 174.185C151.642 174.14 151.701 174.082 151.747 174.013C151.887 173.752 151.687 173.431 151.286 173.231C150.883 173.111 150.562 173.171 150.421 173.373V173.371ZM156.919 180.511C156.598 180.772 156.718 181.375 157.18 181.754C157.641 182.216 158.223 182.276 158.484 181.955C158.744 181.694 158.624 181.091 158.223 180.712C157.781 180.25 157.18 180.19 156.919 180.511V180.511ZM154.633 177.563C154.312 177.764 154.312 178.283 154.633 178.746C154.954 179.209 155.498 179.408 155.756 179.207C155.913 179.039 156.001 178.816 156.001 178.586C156.001 178.355 155.913 178.133 155.756 177.964C155.475 177.504 154.954 177.302 154.633 177.563V177.563Z" fill="white"/>
</a>
<a href="https://medium.com/nft-dao" target="_blank">
<path opacity="0.2" d="M8.97285 118.089C9.01732 117.63 8.95411 117.168 8.78825 116.738C8.6224 116.309 8.35849 115.924 8.01755 115.614L0.954344 107.095V105.826H22.91L39.8884 143.052L54.8131 105.826H75.7539V107.095L69.707 112.889C69.4517 113.084 69.2542 113.344 69.1358 113.642C69.0173 113.94 68.9823 114.265 69.0346 114.581V157.179C68.9823 157.495 69.0173 157.82 69.1358 158.118C69.2542 158.416 69.4517 158.676 69.707 158.87L75.6113 164.665V165.934H45.9022V164.665L52.0259 158.73C52.621 158.135 52.621 157.947 52.621 157.038V122.615L35.597 165.824H33.2949L13.4991 122.615V151.572C13.4144 152.172 13.4692 152.784 13.6594 153.36C13.8496 153.936 14.17 154.46 14.5957 154.892L22.5517 164.539V165.808H0V164.555L7.95607 154.892C8.3763 154.458 8.68766 153.931 8.86459 153.354C9.04152 152.777 9.07895 152.166 8.97382 151.571L8.97285 118.089Z" fill="white"/>
</a>
<a href="https://twitter.com/nft_dao" target="_blank">
<path opacity="0.2" d="M169.22 15.9196C169.268 16.6184 169.268 17.3172 169.268 18.0156C169.268 39.3248 153.049 63.8784 123.404 63.8784C114.629 63.9007 106.034 61.388 98.6533 56.6423C99.9451 56.7845 101.244 56.851 102.544 56.8416C109.799 56.8605 116.85 54.4346 122.558 49.9551C119.194 49.894 115.934 48.7838 113.232 46.7796C110.53 44.7754 108.521 41.9774 107.486 38.7763C108.494 38.9356 109.511 39.0189 110.531 39.0256C111.962 39.0214 113.388 38.8369 114.773 38.4766C111.123 37.7383 107.841 35.7592 105.485 32.8755C103.128 29.9917 101.843 26.3811 101.847 22.6571V22.4578C104.081 23.7045 106.577 24.4057 109.133 24.5043C105.712 22.2226 103.29 18.7209 102.362 14.7141C101.435 10.7073 102.072 6.49764 104.143 2.94442C108.191 7.92783 113.242 12.0046 118.968 14.9105C124.694 17.8164 130.966 19.4864 137.379 19.8123C137.12 18.5982 136.987 17.3608 136.98 16.1194C136.983 12.8863 137.957 9.72864 139.777 7.05594C141.596 4.38324 144.176 2.31871 147.183 1.13005C150.189 -0.0586134 153.484 -0.316592 156.639 0.389562C159.794 1.09572 162.664 2.73343 164.877 5.09037C168.487 4.39582 171.948 3.07946 175.108 1.19999C173.906 4.92589 171.386 8.08531 168.021 10.0854C171.222 9.72033 174.351 8.87851 177.303 7.5879C175.096 10.7999 172.363 13.6167 169.22 15.9196Z" fill="white"/>
</a>
<a href="https://discord.gg/AVJzsdaa5T" target="_blank">
<path opacity="0.2" d="M323.549 74.6016C323.549 77.3393 321.528 79.5861 318.968 79.5861C316.454 79.5861 314.388 77.3407 314.388 74.6016C314.388 71.8625 316.409 69.6171 318.968 69.6171C321.528 69.6171 323.549 71.862 323.549 74.6016ZM302.577 69.6166C300.017 69.6166 297.996 71.862 297.996 74.6011C297.996 77.3402 300.062 79.5846 302.577 79.5846C305.137 79.5846 307.158 77.3393 307.158 74.6001C307.203 71.862 305.137 69.6166 302.577 69.6166ZM349.999 41.1904V121.754C338.686 111.757 342.304 115.066 329.162 102.849L331.543 111.158H280.617C279.405 111.155 278.206 110.913 277.087 110.447C275.968 109.98 274.953 109.298 274.098 108.438C273.243 107.579 272.565 106.56 272.104 105.439C271.644 104.318 271.408 103.117 271.411 101.905V41.1904C271.408 39.9785 271.644 38.7778 272.105 37.657C272.566 36.5362 273.243 35.5172 274.098 34.6582C274.953 33.7991 275.969 33.1169 277.087 32.6504C278.206 32.1839 279.406 31.9424 280.617 31.9395H340.793C342.005 31.9424 343.205 32.184 344.323 32.6506C345.442 33.1171 346.457 33.7993 347.312 34.6583C348.167 35.5174 348.844 36.5364 349.305 37.6571C349.766 38.7779 350.002 39.9785 349.999 41.1904V41.1904ZM337.201 83.7632C337.201 69.303 330.734 57.5824 330.734 57.5824C324.268 52.7314 318.115 52.8663 318.115 52.8663L317.486 53.5868C325.123 55.922 328.668 59.2898 328.668 59.2898C318 53.4413 305.47 53.4403 295.122 57.9858C293.461 58.749 292.473 59.2879 292.473 59.2879C292.473 59.2879 296.2 55.7404 304.283 53.4052L303.834 52.8663C303.834 52.8663 297.682 52.7319 291.215 57.5814C291.215 57.5814 284.748 69.3006 284.748 83.7622C284.748 83.7622 288.521 90.2736 298.445 90.5882C298.445 90.5882 300.107 88.5676 301.455 86.8611C295.751 85.1546 293.595 81.562 293.595 81.562C294.256 82.0245 295.346 82.6239 295.437 82.6845C303.017 86.9293 313.784 88.3197 323.459 84.256C325.275 83.5708 327.008 82.682 328.624 81.6067C328.624 81.6067 326.378 85.2891 320.495 86.9504C321.843 88.6569 323.459 90.5877 323.459 90.5877C333.384 90.2741 337.201 83.7632 337.201 83.7632Z" fill="white"/>
</a>
<a href="https://www.linkedin.com/company/nft-dao/" target="_blank">
<path opacity="0.2" d="M287.826 230.435H276.373V193.552H287.826V230.435ZM282.094 188.52C280.776 188.527 279.485 188.142 278.386 187.415C277.286 186.688 276.427 185.651 275.917 184.436C275.407 183.22 275.268 181.881 275.519 180.587C275.77 179.293 276.4 178.102 277.327 177.166C278.255 176.229 279.439 175.589 280.731 175.326C282.022 175.062 283.363 175.188 284.583 175.687C285.803 176.185 286.848 177.035 287.586 178.127C288.323 179.219 288.72 180.506 288.727 181.824C288.728 183.59 288.032 185.285 286.79 186.539C285.547 187.793 283.859 188.506 282.094 188.52V188.52ZM330.694 230.435H319.263V212.48C319.263 208.201 319.177 202.714 313.307 202.714C307.352 202.714 306.439 207.363 306.439 212.173V230.435H295.001V193.552H305.986V198.581H306.146C307.676 195.683 311.411 192.626 316.983 192.626C328.575 192.626 330.706 200.259 330.706 210.173V230.434L330.694 230.435Z" fill="white"/>
</a>
<a href="https://www.youtube.com/channel/UCsT66TXtF48V4GRJzaUVwlw" target="_blank">
<path opacity="0.2" d="M166.797 247.889C166.399 246.392 165.616 245.025 164.524 243.926C163.433 242.827 162.072 242.034 160.577 241.627C155.092 240.146 133.095 240.146 133.095 240.146C133.095 240.146 111.097 240.146 105.612 241.627C104.118 242.034 102.756 242.827 101.665 243.926C100.573 245.025 99.7898 246.392 99.3926 247.889C97.9229 253.412 97.9229 264.939 97.9229 264.939C97.9229 264.939 97.9229 276.466 99.3926 281.99C99.7929 283.474 100.579 284.827 101.672 285.909C102.764 286.991 104.123 287.765 105.612 288.152C111.098 289.632 133.095 289.632 133.095 289.632C133.095 289.632 155.092 289.632 160.578 288.152C162.066 287.765 163.426 286.991 164.518 285.909C165.61 284.827 166.397 283.474 166.797 281.99C168.267 276.466 168.267 264.939 168.267 264.939C168.267 264.939 168.267 253.412 166.797 247.889H166.797ZM125.9 275.4V254.474L144.286 264.938L125.9 275.4Z" fill="white"/>
</a>
</svg>
</div>
<div class="row rowflexed">
<div class="col-lg-4"> <img src="assets/images/Mobile.svg" alt="">
</div>
<!-- <div class="col-lg-4"> <img src="assets/images/Project Catalyst Logo.svg" alt="">
</div>
<div class="col-lg-4"> <img src="assets/images/" alt="">
</div>C
-->
</div>
</div>
</div>
</footer>
<!--~./ end site footer ~-->
</div>
<!--~~./ end site content ~~-->
<!-- All The JS Files
================================================== -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/simple-scrollbar.min.js"></script>
<script src="assets/js/background-parallax.js"></script>
<script src="assets/js/theia-sticky-sidebar.min.js"></script>
<script src="assets/js/ResizeSensor.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/isotope.pkgd.min.js"></script>
<script src="assets/js/packery-mode.pkgd.min.js"></script>
<script src="assets/js/scrolla.jquery.min.js"></script>
<script src="assets/js/odometer.min.js"></script>
<script src="assets/js/isInViewport.jquery.js"></script>
<script src="assets/js/contact.js"></script>
<script src="assets/js/main.js"></script>
<!-- main-js -->
</body>
</html>