Skip to content

Commit

Permalink
[docs]: first cookbook structure
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Balashov <[email protected]>
  • Loading branch information
0x009922 committed Oct 30, 2023
1 parent e2c7f7b commit dcc9a56
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,84 @@ export default defineConfig({
text: 'Last Updated',
},

nav: [
{
text: 'Guide',
link: '/',
},
{
text: 'Cookbook',
link: '/cookbook/',
activeMatch: '^/cookbook/',
},
],

sidebar: {
'/cookbook/': [
{
text: 'Assets',
items: [
{
text: 'Numeric Assets',
},
{
text: 'Store Assets',
},
{
text: 'Transferring Assets Between Accounts',
},
{
text: 'Minting More of a Mintable Asset',
},
{
text: 'Non-Mintable Assets',
},
{
text: 'Creating Asset-backed Tokens',
},
{
text: 'Creating Non-Fungible Tokens (NFTs)',
},
],
},
{
text: 'Access Control',
items: [{ text: 'Permissions' }, { text: 'Roles' }],
},
{
text: 'Metadata',
items: [{ text: 'Set/Remove/Access' }],
},
{
text: 'Events and Filters',
items: [
{ text: 'Pipeline Events' },
{ text: 'Data Events' },
{ text: 'Trigger Events' },
{ text: 'Some case with advanced filtering' },
],
},
{
text: 'Triggers',
items: [{ text: 'Different kinds' }],
},
{
text: 'Executor',
items: [{ text: 'Write and Update' }],
},
{
text: 'Telemetry',
items: [{ text: 'Check Status' }, { text: 'Work with Metrics' }],
},
{
text: 'Miscellaneous',
items: [
{ text: 'Transactions with Smartcontracts' },
{ text: 'Multi-Signature Transactions (MSTs)' },
{ text: 'Expressions' },
],
},
],
'/guide/': getGuideSidebar(),
'/': getGuideSidebar(),
},
Expand Down
3 changes: 3 additions & 0 deletions src/cookbook/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Cookbook

TODO

0 comments on commit dcc9a56

Please sign in to comment.