-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove next.js site content * move tutorials * Move overview to new location * New overview section from v2 site * Move content for architecture section * Bring in new content for architecture section * Move content for developing section * Update content for developing section * Move content for smart contracts section * Migrate content for smart contract section, including breaking up the smart contract concepts topic * Move content for dApps section * Migrate dApps section from v2 * Reuse existing indexers topic * Move topics for reference section * Move content from reference section in v2 * Remove old unused docs * Move images and fonts * Move tutorials to the right place * move tutorial content from v2 * docusaurus code * fixes * Fix some images and links that got lost * Add indexers topic back in * Duplicate topic * Update build paths * Hide merkle formats topic until it has content * Sidebar for NFT marketplace tutorial * next callouts to docusaurus notes * Upgrade to docusaurus 2.4.3 * Get code blocks to have a light blue background to follow style * This rule is not used * reuse card styles from home page * Remove unused images * Correct links to images; * Remove .DS_Store * Delete some placeholder topics * no need to escape parens * Simplify * Remove placeholder topics * Fix staging * Make these language topics more consistent * remove unused search options * NFT web app tutorial * Capitalization * Correct path to taquito NFT tutorial * tutorial landing page and clarifying titles * Swizzle and style search bar * Better first app tutorial that works in testnet * next environment variables no longer needed * Bad find-replace * Standardize sizes of tutorial cards * unused class * no need to enclose in angle brackets * missed this one * fixed new cards style for tutorials homepage * List consistency: periods * Docusaurus v3 * Escape raw html due to MDX upgrade https://github.com/orgs/mdx-js/discussions/2241 * Upgrade math plugins * Node 18 --------- Co-authored-by: Giselle <[email protected]>
- Loading branch information
1 parent
ba090b3
commit a7e6e65
Showing
499 changed files
with
21,404 additions
and
31,991 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -2,4 +2,7 @@ node_modules | |
.next | ||
.env.local | ||
.DS_Store | ||
out | ||
.docusaurus/* | ||
out | ||
build | ||
|
This file was deleted.
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Trilitech | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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
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,3 @@ | ||
module.exports = { | ||
presets: [require.resolve('@docusaurus/core/lib/babel/preset')], | ||
}; |
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,24 @@ | ||
# Architecture | ||
|
||
- Who created it and who is in charge of it | ||
- What entities participate in it | ||
- How it is built (architecture, with diagrams) | ||
|
||
## Decentralization | ||
## p2p network (introducting nodes, baking) | ||
## smart contracts and dapps | ||
## governance and roadmap for scaling | ||
|
||
## goals/inspiration, tiny bit of history | ||
need for decentralization, smart contracts, then for Tezos, need for blockchains to evolve, be environmental friendly, secure | ||
## p2p network, DOS protection, etc. | ||
Idea: to make it more active, create an interactive experience where people simulate playing different roles, through the path of a transaction | ||
## accounts, cryptocurrency, transactions | ||
Here the animation would let people play with transactions ana d simulated wallet | ||
## chain of blocks | ||
idea that for people to agree on a sequence of transactions, they need to be grouped in block, and we create an append-only structure | ||
## baking, consensus mechanism | ||
"someone needs to propose a new block, so we have a system involving bakers, then a mechanism to pick the baker, confirm the block through attestations, and finality | ||
you could have a small interface where you try to create the best block" | ||
## recap: path of a transaction | ||
wallet, simulation, propagation through the nodes, mempool, accepted by a baker, block is propagated and validated, then becomes final, shown as validated on the wallet, and visible by everyone |
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,15 @@ | ||
--- | ||
title: Accounts | ||
authors: "Tim McMackin" | ||
lastUpdated: 18th October 2023 | ||
--- | ||
|
||
Tezos uses two types of accounts: | ||
|
||
- Classic accounts (also known as _implicit accounts_) with an address, storing tez (ꜩ). | ||
These accounts have addresses that start with "tz1", "tz2", "tz3" or "tz4." | ||
Any wallet application or the Octez command-line tool can create implicit accounts. | ||
|
||
- Smart contract accounts (also known as _originated accounts_) with an address, storing code and tez (ꜩ). | ||
Originated accounts have addresses that start with "KT1." | ||
Creating an originated account is part of the process of deploying a smart contract; see [Smart contracts](../smart-contracts). |
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,9 @@ | ||
# Baking | ||
|
||
- What is baking? | ||
- Why would I want to do it? | ||
- What's involved in baking | ||
|
||
Should this link to tezos.gitlab.io instead of being here? There are no topics on Baking there, but octez is how you bake. | ||
|
||
We write an overview, based on what is on opentezos, to give a good understanding of what running nodes involve, without diving into details |
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,3 @@ | ||
# Hosting a baking node | ||
|
||
We write an overview, based on what is on opentezos, to give a good understanding of what running nodes involve, without diving into details |
5 changes: 3 additions & 2 deletions
5
src/pages/tezos-basics/governance/index.md → docs/architecture/governance.md
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
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
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
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
Oops, something went wrong.