Skip to content

Commit c5a3594

Browse files
committed
CONTENT: Add Module 2 Market Design
1 parent c3f9908 commit c5a3594

File tree

8 files changed

+246
-177
lines changed

8 files changed

+246
-177
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [0.1.0] - 2023-19-12
7+
## [0.3.0] - 2024-06-20
8+
9+
Added Token Engineering tutorial:
10+
- Module 2: Market Design
11+
12+
## [0.2.0] - 2024-04-24
13+
14+
- Updated lock file
15+
- Updated License
16+
- Added Crowdin cli
17+
- Updated EUTxO accounting article
18+
- Added Token Engineering tutorials:
19+
- Introduction
20+
- Module 1: Introduction to Token Engineering
21+
22+
## [0.1.0] - 2023-12-19
823

924
Initial tokenflows landing page.

src/_config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ import multilanguage from "lume/plugins/multilanguage.ts";
1616
import mdtable from "npm:markdown-it-multimd-table";
1717
import mdanchor from "npm:markdown-it-anchor";
1818
import mdvideo from "npm:markdown-it-video";
19+
import mdfootnote from "npm:markdown-it-footnote";
1920

2021
const markdown = {
21-
plugins: [[mdtable, { multiline: true, rowspan: true }], mdanchor, [mdvideo, {youtube: { width: 640, height: 360 }}]],
22+
plugins: [[mdtable, { multiline: true, rowspan: true }], mdfootnote, mdanchor, [mdvideo, {youtube: { width: 640, height: 360 }}]],
2223
keepDefaultPlugins: true,
2324
options: {
2425
html: true,

src/_data/doks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ header:
1010
item_url: '/methods/'
1111
- item_name: Models
1212
item_url: '/models'
13+
- item_name: Tutorials
14+
item_url: '/tutorials/introduction-tutorials/introduction'
1315
- item_name: About
1416
item_url: '/about'
1517
footer:

src/pages/en/index.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ author:
2929

3030
# Grid navigation
3131
grid_navigation:
32+
- title: Introduction to Token Engineering Tutorial
33+
excerpt: "Learn the fundamental concepts of token engineering, its importance in digital economic systems, and why it matters."
34+
cta: Learn More
35+
url: '/tutorials/introduction-tutorials/module1/'
36+
- title: Market Design Tutorial
37+
excerpt: "Discover how markets function, their role in cryptoeconomic systems, and how well designed markets can be used as a tool for social good."
38+
cta: Learn More
39+
url: '/tutorials/introduction-tutorials/module2/'
3240
- title: What is Token Engineering?
3341
excerpt: Join us on this journey to learn Token Engineering. Discover how it's shaping the future of the digital economy and how you can be a part of this transformation. Click here to learn more.
3442
cta: Learn More
@@ -46,7 +54,7 @@ grid_navigation:
4654
cta: More on Design Methods
4755
url: '/methods/cardsandcanvases/'
4856
- title: Developing a Cardano Stakepool cadCAD Model
49-
excerpt: Unlock the power of Cardano for your community! Learn the art of token engineering with our latest guide and start building fair, impactful tokenomics today. Click to master the future of decentralized finance.
57+
excerpt: Unlock the power of Cardano for your community! Learn the art of token engineering with our latest guide and start building fair, impactful tokenomics today. Click to master the future of decentralised finance.
5058
cta: Let's go!
5159
url: '/models/stakepoolmodel/'
5260
- title: eUTXO and Token Engineering

src/pages/en/posts/selectingastakepool.md

Lines changed: 0 additions & 167 deletions
This file was deleted.

src/pages/en/tutorials/introduction-tutorials/courseintroduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description: "Become a leader in the transformative field of token engineering.
1515

1616
# Author box
1717
author:
18-
title: Introduction to Token Engineering
18+
title: "Introduction to Token Engineering"
1919
title_url: '/tutorials/introduction-tutorials/module1/'
2020
external_url: true
2121
description: First part of our five-part tutorial series.
@@ -57,7 +57,7 @@ An outline of the topics discussed in each part of our five-part tutorial series
5757
- Why it is important to understand _**human behaviour**_ in a digital world of complex interactions
5858
- The _**what**_, _**why**_ and _**how**_ of Token Engineering
5959

60-
#### **Module 2** - Market Design
60+
#### **Module 2** - [Market Design](/tutorials/introduction-tutorials/module2/)
6161

6262
- What are _**markets**_ and what do they do?
6363
- Markets as a tool for _**governance**_

src/pages/en/tutorials/introduction-tutorials/introductiontotokenengineering.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ comments: false
1111

1212
# Hero section
1313
title: "Introduction to Token Engineering"
14-
description: "Module 1: Introduction to Token Engineering, is the first part of our five-part tutorial series covers fundamental concepts of token engineering, its importance in digital economic systems, and why it matters."
14+
description: "Module 1: Introduction to Token Engineering, is the first part of our five-part tutorial series. Covering fundamental concepts of token engineering, its importance in digital economic systems, and why it matters."
1515

1616
# Author box
1717
author:
18-
title: Token Engineering Tutorials
19-
title_url: '/tutorials/introduction-tutorials/introduction/'
18+
title: "Market Design"
19+
title_url: '/tutorials/introduction-tutorials/module2/'
2020
external_url: true
21-
description: Become a leader in the transformative field of token engineering. Learn skills to build robust, equitable, and sustainable digital economies.
21+
description: Second part of our five-part tutorial series.
2222

2323
# Micro navigation
2424
micro_nav: true
2525

2626
# Page navigation
2727
nav:
2828
index:
29-
content: Back the tutorial series overview
29+
content: Back to tutorial series overview
3030
url: '/tutorials/introduction-tutorials/introduction/'
3131

3232
---

0 commit comments

Comments
 (0)