-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
8 changed files
with
473 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
packages: | ||
- 'spirekey' | ||
- 'spirekey-web' | ||
- 'sdk' | ||
- 'packages/*' | ||
- 'examples/*' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,85 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Spirekey</title> | ||
<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=Inter:ital,opsz,[email protected]&family=Kode+Mono:[email protected]&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" crossorigin href="/assets/index-BxS8GbLC.css"> | ||
</head> | ||
<body> | ||
<main class="card"> | ||
<p> | ||
Kadena SpireKey leverages WebAuthn standards to deliver secure backend, | ||
enabling end users to generate and store keypairs directly on their | ||
hardware devices. Developers can generate keypairs using the in-browser | ||
SDK, integrate their application with SpireKey using the SDK package, or | ||
explore the technical documentation outlined in the KIPs. | ||
</p> | ||
<div> | ||
<a class="button" href="https://chainweaver.kadena.io" target="_blank" | ||
>Launch Chainweaver V3 Alpha</a | ||
> | ||
<a | ||
class="button outline" | ||
href="https://www.npmjs.com/package/@kadena/spirekey-sdk" | ||
target="_blank" | ||
>Install SDK Package</a | ||
> | ||
</div> | ||
<div> | ||
<h3>Developer Resources</h3> | ||
<a | ||
href="https://github.com/kadena-community/spirekey/blob/main/docs/KIP-0023/KIP-0023.md" | ||
target="_blank" | ||
>KIP-0023</a | ||
> | ||
<a | ||
href="https://github.com/kadena-community/spirekey/blob/main/docs/KIP-0030/KIP-0030.md" | ||
target="_blank" | ||
>KIP-0030</a | ||
> | ||
<a target="_blank">SpireKey Documentation</a> | ||
<a target="_blank">Discord Support</a> | ||
</div> | ||
<div> | ||
<h3>Demo Applications</h3> | ||
<div> | ||
<h4> | ||
<a href="https://chainweaver.kadena.io" target="_blank" | ||
>Demo Wallet</a | ||
> | ||
</h4> | ||
<p> | ||
Experience Kadena SpireKey authentication showcased with wallet | ||
functionality | ||
</p> | ||
</div> | ||
<div> | ||
<h4> | ||
<a href="https://proof.kadena.io" target="_blank" | ||
>Demo NFT Minting</a | ||
> | ||
</h4> | ||
<p>Mint your own NFT using SpireKey authentication</p> | ||
</div> | ||
|
||
<footer class="action-bar"> | ||
<p>Not a developer?</p> | ||
<a class="button" href="https://kadena.io/spirekey" target="_blank" | ||
>Learn about Use Cases</a | ||
> | ||
</footer> | ||
</div> | ||
</main> | ||
<footer class="footer"> | ||
<a>Discord</a> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.