Skip to content

Commit

Permalink
Primitives: Fix Menu links and Introductions (#1642)
Browse files Browse the repository at this point in the history
* added deposits at least 1 yocto near

* fix: links

* fix: links

* fix: menu links

* fix: introductions

---------

Co-authored-by: garikbesson <garikbesson@gmail.com>
  • Loading branch information
gagdiez and garikbesson authored Jan 9, 2024
1 parent ac7e8f9 commit 8c12966
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 41 deletions.
7 changes: 0 additions & 7 deletions docs/7.primitives/dao/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ hide_table_of_contents: false
import {FeatureList, Column, Feature} from "@site/src/components/featurelist"
import ContactUs from '@site/src/components/ContactUs.mdx';


- [What is DAO?](#what-is-dao)

---

## What is DAO?

Decentralized Autonomous Organizations (DAOs) are self-organized groups that form around common purposes. Membership, decision making, and funding are coordinated by publicly voting on proposals through a smart contract.

This section provides some examples how to create or interact with DAO from [a NEAR component](./interacting/bos.md), [web app](./interacting/web-app.md), [near-cli](./interacting/near-cli.md) and [smart contract](./interacting/smart-contract.md).
Expand Down
7 changes: 0 additions & 7 deletions docs/7.primitives/dex/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ hide_table_of_contents: false
import {FeatureList, Column, Feature} from "@site/src/components/featurelist"
import ContactUs from '@site/src/components/ContactUs.mdx';


- [What is DEX?](#what-is-dex)

---

## What is DEX?

DEX is an app which allows users to trade tokens by using only smart contracts. Usually users interact with DEX by web app. But since DEX is a set of smart contracts you can use these contracts from your code.

This section provides some examples how to interact with DEX from [a NEAR component](./interacting/bos), [web app](./interacting/web-app), [near-cli](./interacting/near-cli) and [smart contract](./interacting/smart-contract).
Expand Down
8 changes: 0 additions & 8 deletions docs/7.primitives/ft/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ hide_table_of_contents: false
import {FeatureList, Column, Feature} from "@site/src/components/featurelist"
import ContactUs from '@site/src/components/ContactUs.mdx';


- [What is an FT?](#what-is-an-ft)
- [How to create FT token](#how-to-create-ft-token)

---

## What is an FT?

Fungible token is representation of an asset on a blockchain that is interchangeable.

Besides the native NEAR token, user can issue their own fungible tokens or use those that are already present in the ecosystem and created by other users or projects.
Expand Down
9 changes: 1 addition & 8 deletions docs/7.primitives/linkdrop/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@ hide_table_of_contents: false
import {FeatureList, Column, Feature} from "@site/src/components/featurelist"
import ContactUs from '@site/src/components/ContactUs.mdx';


- [What is linkdrop?](#what-is-linkdrop)

---

## What is linkdrop?

Linkdrop is an easy way to distribute blockchain items (NFTs, FTs) via links. You provide a link for user and they can claim your drop.
Linkdrops are an easy way to distribute blockchain items (NFTs, FTs) via links. You provide a link for user and they can claim your drop.

This section provides some examples how to create different linkdrops from [a NEAR component](./interacting/bos.md), [web app](./interacting/web-app.md) and [near-cli](./interacting/near-cli.md).

Expand Down
8 changes: 0 additions & 8 deletions docs/7.primitives/nft/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ hide_table_of_contents: false
import {FeatureList, Column, Feature} from "@site/src/components/featurelist"
import ContactUs from '@site/src/components/ContactUs.mdx';


- [What is an NFT?](#what-is-an-nft)
- [How to create NFT collection](#how-to-create-nft-collection)

---

## What is an NFT?

In contrast with fungible tokens, non-fungible tokens (NFT) are unitary and therefore unique. This makes NFTs ideal to represent ownership of assets such as a piece of digital content, or a ticket for an event.

As with fungible tokens, NFTs are **not stored** in the user's wallet, instead, each NFT lives in a **NFT contract**. The NFT contract works as a bookkeeper, this is: it is in charge of handling the creation, storage and transfers of NFTs.
Expand Down
6 changes: 3 additions & 3 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ ${content}`, // <-- this last part adds in the rest of the content, which would
label: "Primitives",
position: "left",
items: [
{ label: "Drops", href: "/primitives/dao/introduction" },
{ label: "Fungible Tokens", href: "/primitives/nft/introduction" },
{ label: "Non-Fungible Tokens", href: "/primitives/ft/introduction" },
{ label: "Drops", href: "/primitives/linkdrop/introduction" },
{ label: "Fungible Tokens", href: "/primitives/ft/introduction" },
{ label: "Non-Fungible Tokens", href: "/primitives/nft/introduction" },
{ label: "Decentralized Exchanges", href: "/primitives/dex/introduction" },
{ label: "Autonomous Organizations", href: "/primitives/dao/introduction" },
]
Expand Down

0 comments on commit 8c12966

Please sign in to comment.