forked from AbdelStark/askeladd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75c814d
commit 407ae74
Showing
2 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.min.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/theme/black.min.css" | ||
/> | ||
<style> | ||
.reveal h1, | ||
.reveal h2, | ||
.reveal h3, | ||
.reveal p { | ||
font-family: Arial, sans-serif; | ||
} | ||
.reveal h1 { | ||
font-size: 2.5em; | ||
} | ||
.reveal h2 { | ||
font-size: 1.8em; | ||
} | ||
.reveal p { | ||
font-size: 1.2em; | ||
} | ||
.reveal ul { | ||
font-size: 1em; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="reveal"> | ||
<div class="slides"> | ||
<section> | ||
<h1>Askeladd</h1> | ||
<h2>Censorship-Resistant Global Proving Network</h2> | ||
</section> | ||
|
||
<section> | ||
<h2>The Vision</h2> | ||
<p> | ||
Empowering a decentralized future with accessible, | ||
censorship-resistant proof generation and verification | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>The Problem</h2> | ||
<ul> | ||
<li>Zero-Knowledge Proofs are transforming industries</li> | ||
<li>Growing need for decentralized proving networks</li> | ||
<li>Centralized solutions risk censorship and control</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Solution: Askeladd</h2> | ||
<ul> | ||
<li>Decentralized proving network</li> | ||
<li>Censorship-resistant by design</li> | ||
<li>Leverages Nostr protocol for communication</li> | ||
<li>Utilizes STWO prover for proof generation</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Why Nostr?</h2> | ||
<ul> | ||
<li>Minimalistic and simple</li> | ||
<li>Focused on censorship resistance</li> | ||
<li>Decentralized without blockchain overhead</li> | ||
<li>Built-in payment system (Lightning Network)</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Why Data Vending Machines ?</h2> | ||
<ul> | ||
<li>Standardized</li> | ||
<li>Flexible flow for service providers and customers</li> | ||
<li>Stimulate healthy competition of proving services</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Why STWO?</h2> | ||
<ul> | ||
<li>Fastest STARK prover</li> | ||
<li>Open source</li> | ||
<li>Easy to integrate</li> | ||
<li>WASM compatible</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Market Potential</h2> | ||
<ul> | ||
<li>ZK proofs transforming blockchain industry</li> | ||
<li>Expanding to other sectors (finance, healthcare, etc.)</li> | ||
<li>Growing need for decentralized infrastructure</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Competitive Advantage</h2> | ||
<ul> | ||
<li>True decentralization</li> | ||
<li>Censorship resistance</li> | ||
<li>Scalability through Nostr's simplicity</li> | ||
<li>Cost-effective solution</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Roadmap</h2> | ||
<ul> | ||
<li>Implement NIP-90 for service provider interactions</li> | ||
<li>Integrate NIP-57 for Lightning Network payments</li> | ||
<li>Develop spam protection using NIP-13</li> | ||
<li>Enhance proof metadata handling with NIP-94/96</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Investment Opportunity</h2> | ||
<p> | ||
Join us in building the future of decentralized proof generation and | ||
verification | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h1>Thank You</h1> | ||
<p>Askeladd: Empowering a Censorship-Resistant Future</p> | ||
</section> | ||
</div> | ||
</div> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.js"></script> | ||
<script> | ||
Reveal.initialize(); | ||
</script> | ||
</body> | ||
</html> |