Skip to content

Commit

Permalink
remove outdated info
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuripetusko committed Feb 22, 2024
1 parent aae32c2 commit f8a0bea
Show file tree
Hide file tree
Showing 33 changed files with 109 additions and 665 deletions.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/rmrk-docs.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ make up complex _use cases_ and enable certain _concepts_.
appearance, also known as composable NFTs
- [On-chain emotes](/lego3-emote)
- The social mechanic of sending and rendering received emotes (emoji reactions) on any NFT
- [Conditional Rendering](/lego4-conditional-rendering)
- The ability for an NFT to have different client-side outputs depending on some on-chain or
off-chain values
- [NFTs as DAOs](/lego5-dao)
- The ability for NFTs to be fractionalized and community governed

## RMRK Concepts

Expand Down
7 changes: 1 addition & 6 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ together allows a user to create NFT systems of arbitrary complexity.

If you want to dive right in, see the [concepts](/concepts) page.

Broadly, the RMRK standard exists in three formats:

- [Kusama implementation](/rmrk2)
- [EVM implementation](/evm)
- [FRAME Pallet implementation](/pallets)

One of the best short introductions into RMRK is the following video:

Expand Down Expand Up @@ -52,8 +48,7 @@ knowledgebase is set up [here](https://coda.io/@rmrk/faq), and
our [YouTube channel](https://url.rmrk.app/yt) has various tutorials on how to use the app.

As a developer who wants to build their own wallet or UI for RMRK, you probably want to
[learn the concepts first](/concepts), then refer to the individual tech stack you are interested in
(Kusama, EVM, pallets (Rust)).
[learn the concepts first](/concepts), then refer to the EVM implementation.

## RMRK-based projects

Expand Down
4 changes: 1 addition & 3 deletions docs/lego1-nested.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,4 @@ The concept of nested NFTs is further expanded through the idea of

The implementations below lead directly to code. For examples of how to utilize them to mint your own NFTs, please refer to the sidebar section for each implementation subtype.

- [Kusama](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/entities/nft.md#children)
- [EVM: EIP 6059](https://eips.ethereum.org/EIPS/eip-6059) - more documentation [here](https://evm.rmrk.app/rmrk-legos-examples/nestable).
- [Pallets](https://github.com/rmrk-team/rmrk-substrate/blob/main/pallets/rmrk-core/src/lib.rs)
- [EVM: EIP 6059](https://eips.ethereum.org/EIPS/eip-6059) - more documentation [here](https://evm.rmrk.app/implementations#nestable).
4 changes: 0 additions & 4 deletions docs/lego2-multi-resource.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,4 @@ ahead of time, or it can be made on-demand as a new asset is proposed.
The implementations below lead directly to code. For examples of how to utilize them to mint your
own NFTs, please refer to the sidebar section for each implementation subtype.

- [Kusama](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/entities/nft.md#resources-and-resource)
- [EVM: EIP 5773](https://eips.ethereum.org/EIPS/eip-5773)
- In production examples:
- [NCVerse](https://neoncrisis.io/my-collection/ncverse)
- [Pallets](https://github.com/rmrk-team/rmrk-substrate/blob/main/pallets/rmrk-core/src/lib.rs)
2 changes: 0 additions & 2 deletions docs/lego25-equippable.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,4 @@ For a breakdown, please see the video below.
The implementations below lead directly to code. For examples of how to utilize them to mint your
own NFTs, please refer to the sidebar section for each implementation subtype.

- [Kusama](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/equip.md)
- [EVM: EIP 6059](https://eips.ethereum.org/EIPS/eip-6059)
- [Pallets](https://github.com/rmrk-team/rmrk-substrate/tree/main/pallets/rmrk-equip)
8 changes: 2 additions & 6 deletions docs/lego3-emote.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,11 @@ Currently, all reactions apply equally and are rendered by all implementations,

During a transfer, all reactions travel with an NFT. The reactions are not NFTs themselves, just flair added to an existing data record - the NFT.

Emotes are a key part of [conditional rendering](/lego4-conditional-rendering).

You can try it using our [Emotes.app](https://emotes.app/).

## Implementations

The implementations below lead directly to code. For examples of how to utilize them to mint your own NFTs, please refer to the sidebar section for each implementation subtype.

- [Kusama](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/emote.md)
- Implemented in production on [Singular](https://singular.app)
- EVM (research phase)
- Pallets (research phase)
- [EVM](https://evm.rmrk.app/emotable)
- Implemented in production on [Emotes.app](https://emotes.app)
58 changes: 0 additions & 58 deletions docs/lego4-conditional-rendering.md

This file was deleted.

21 changes: 0 additions & 21 deletions docs/lego5-dao.md

This file was deleted.

4 changes: 1 addition & 3 deletions docs/nontransferable.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,4 @@ therefore get new utility over time, all the time.
The implementations below lead directly to code. For examples of how to utilize them to mint your
own NFTs, please refer to the sidebar section for each implementation subtype.

- [Kusama](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/entities/nft.md#nft-standard)
- [EVM](https://evm.rmrk.app/evm-contracts-documentation/rmrk/extension/soulbound)
- [Pallets](https://github.com/rmrk-team/rmrk-substrate/blob/main/traits/src/nft.rs)
- [EVM](https://evm.rmrk.app/soulbound)
24 changes: 0 additions & 24 deletions docs/pallets.md

This file was deleted.

65 changes: 0 additions & 65 deletions docs/rmrk1.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/rmrk2.md

This file was deleted.

Loading

0 comments on commit f8a0bea

Please sign in to comment.