Skip to content

Commit

Permalink
add Learn card for docs and general info (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
biancabuzea200 authored Sep 29, 2023
1 parent 613e3f6 commit be59fc5
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
47 changes: 47 additions & 0 deletions docs/learn/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Basics

## What is LUKSO?

LUKSO is L1 blockchain, EVM (Ethereum Virtual Machine) compatible, based on PoS (Proof of Stake), for creative economies.

## How LUKSO started?

The story of LUKSO started with ERC725, a standard proposed by Fabian Vogelsteller for blockchain-based identity. ERC725 allows for self-sovereign identity. Over the years we saw the negative effects of having a centralized identity with damaging leaks and unfair selling of user data and identity. An open, portable standard for identities enables decentralized reputation, governance, and more. Users can take their identity across different dApps and platforms that support this standard.
LUKSO is the first blockchain that powers self-sovereign identities.

## Why choose LUKSO?

[LSPs](/standards/introduction.md) (LUKSO Standard Proposals) are the building blocks of LUKSO. They are used to to build blockchain-based applications that offer an enhanced user experience, and allow for more flexibility and interaction. LSPs are part of the more general LIPs used to discuss protocol specifications and client API improvements.

**LSPs introduce new concepts like blockchain-based accounts, also known as Universal Profiles (UPs), Digital Assets, and NFT 2.0.**

By integrating different LSPs in unique ways, LUKSO solves fundamental problems that we currently face when it comes to blockchains such as:

- [upgradeable security](/standards/universal-profile/lsp6-key-manager): UPs can be owned by an EOA or a custom contract such as a multisig. Therefore, users can have multiple devices and applications controlling their account, each of them with different permissions. Users can even have social recovery, such that you grant certain permissions to their account to their friends and family
- [onchain persona](docs/standards/generic-standards/lsp2-json-schema.md): users can build their profiles onchain, adding images, tags, descriptions and links to their accounts to shape their online persona
- [senders and receivers are notified upon transfers (e.g.: tokens transfers)](docs/standards/generic-standards/lsp1-universal-receiver-delegate.md): users can see which assets they own within their profile. They can even block transfers of certain assets by creating a list of allowed assets they want to accept.
- [updatable and flexible metadata](docs/standards/nft-2.0/LSP4-Digital-Asset-Metadata.md): metadata can be updated, enabling dynamic NFTs that can change certain properties over time, while other properties remain immutable
- [extend your account over time](/standards/lsp-background/erc725.md): users can extend their account over time seamlessly, with no need to redeploy the associated smart contract
- gassless experience: UPs support transaction relay services that cover the gas for users's transactions.

:::success
Currently, there is a relay service that subsidizes users' transactions maintained by the LUKSO team. In the future, various relay services will be offered by multiple third parties, evolving into a competitive relay ecosystem with various business models.
:::

Since LUKSO is EVM-compatible, Solidity developers can build on LUKSO's implementation of the EVM straight out-of-the box, using the same tools they are familiar with.

## Who is LUKSO intended for?

LUKSO is intended for creative economies, where identities play a key role.
LUKSO allows brands, creatives, and developers to dictate the distribution of wealth and influence from lifestyle activities. They can do so by having Universal Profiles (UPs), creating Digital Identities and Certificates, and by building Tokenized Communities.

## What can you build on LUKSO?

The number of LSPs is constantly evolving. Even more, there are innumerable ways one can connect the LSPs and create innovative dApps. The following list contains several potential use cases. Please bear in mind that those represent only the tip of the iceberg.

- social media applications
- content publishing platforms
- identity and reputation systems
- marketplaces
- news outlets
- tokenized communities for artists and creatives
6 changes: 6 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ module.exports = {
src: 'img/logo.png',
},
items: [
{
type: 'doc',
docId: 'learn/introduction',
position: 'left',
label: 'Learn',
},
{
type: 'doc',
docId: 'guides/getting-started',
Expand Down
7 changes: 7 additions & 0 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ function Index() {
/>
</div>
<div className={styles.cardContainer}>
<Box
icon={GuidesIcon}
link="./learn/introduction"
title="LEARN"
className="learn"
content="Learn about the LUKSO ecosystem"
/>
<Box
icon={GuidesIcon}
link="./guides/getting-started"
Expand Down

0 comments on commit be59fc5

Please sign in to comment.