Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewriting Ternoa Fundamentals denominations #86

Merged
merged 1 commit into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ For your first examples you can check our [CookBook](https://docs.ternoa.network

### Docmap

- [ ] [Ternoa Fundamentals](https://github.com/capsule-corp-ternoa/ternoa-doc/blob/main/docs/intro.md#-ternoa-fundamentals)
- [ ] [Ternoa Wiki](https://github.com/capsule-corp-ternoa/ternoa-doc/blob/main/docs/intro.md#-ternoa-wiki)
- [ ] [Core Blockchain](https://docs.ternoa.network/category/core-blockchain)
- [ ] [Offchain Components](https://docs.ternoa.network/category/offchain-components)
- [ ] [TEE Enclaves](https://docs.ternoa.network/category/tee-enclaves)
Expand Down
2 changes: 1 addition & 1 deletion docs/for-developers/indexer/dictionary/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_label: Overview

# Overview

If you already looked at our documentation, you should now [understand](/ternoa-fundamentals/offchain-components/builder-tools/dictionary) that the indexing datas provided by the chain can be retrieved both on our (**[alphanet indexer](https://indexer-alphanet.ternoa.dev/)** or **[mainnet indexer](https://indexer-mainnet.ternoa.network/)**), but also on our [dictionary](https://dictionary-mainnet.ternoa.dev/).
If you already looked at our documentation, you should now [understand](/ternoa-wiki/offchain-components/builder-tools/dictionary) that the indexing datas provided by the chain can be retrieved both on our (**[alphanet indexer](https://indexer-alphanet.ternoa.dev/)** or **[mainnet indexer](https://indexer-mainnet.ternoa.network/)**), but also on our [dictionary](https://dictionary-mainnet.ternoa.dev/).

Since the [Dictionary](/for-developers/#what-are-the-differences-between-the-dictionary-or-the-indexer) is focused on native substrate on-chain data contained in **blocks**, (instead of being focused on listening events like the indexer), you can use it for :
- [Installing](/for-developers/indexer/dictionary/use-dictionary) it into your own indexer as we do to improve performance.
Expand Down
2 changes: 1 addition & 1 deletion docs/fundamentals/_category_.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"label": "Fundamentals",
"label": "Wiki",
"position": 3,
"link": {
"type": "generated-index"
Expand Down
2 changes: 1 addition & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sidebar_label: 👋 Welcome
>
> Creating NFTs and building dApps on most blockchains is complex. Ternoa was designed to break barriers for developers, web3 enthusiasts, and entrepreneurs and empower them to save time and money. We believe mass adoption of NFTs is only possible with a fundamental tech evolution. In this guide, we have developed a range of tools to walk you through how to use and build on Ternoa for the first time.

## 📚 Ternoa Fundamentals
## 📚 Ternoa Wiki

Review below to learn the core foundation of the blockchain architecture, offchain components, trusted execution environment, and NFT specifications.

Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ const config = {
to: '/intro',
},
{
label: 'Ternoa Fundamentals',
to: '/category/fundamentals',
label: 'Ternoa Wiki',
to: '/category/wiki',
},
{
label: 'For Developers',
Expand Down
10 changes: 5 additions & 5 deletions i18n/fr/docusaurus-plugin-content-docs/current.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"message": "Next",
"description": "The label for version current"
},
"sidebar.tutorialSidebar.category.Ternoa Fundamentals": {
"message": "Ternoa Fondamentaux",
"description": "The label for category Ternoa Fundamentals in sidebar tutorialSidebar"
"sidebar.tutorialSidebar.category.Ternoa Wiki": {
"message": "Ternoa Wiki",
"description": "The label for category Ternoa Wiki in sidebar tutorialSidebar"
},

"sidebar.tutorialSidebar.category.Ternoa Fundamentals.link.generated-index.description": {
"sidebar.tutorialSidebar.category.Ternoa Wiki.link.generated-index.description": {
"message": "Tout ce que vous devez savoir",
"description": "The generated-index page description for category Ternoa Fundamentals in sidebar tutorialSidebar"
"description": "The generated-index page description for category Ternoa Wiki in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Core Blockchain": {
"message": "Core Blockchain",
Expand Down
4 changes: 2 additions & 2 deletions src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type FeatureItem = {

const FeatureList: FeatureItem[] = [
{
title: 'Ternoa fundamentals',
title: 'Ternoa Wiki',
icon: '🔎',
description: (
<>
Expand All @@ -21,7 +21,7 @@ const FeatureList: FeatureItem[] = [
and get new experience with creation, minting and trading NFTs.
</>
),
url: '/category/fundamentals'
url: '/category/wiki'
},

{
Expand Down