Skip to content

Commit dcc9a56

Browse files
committed
[docs]: first cookbook structure
Signed-off-by: Dmitry Balashov <a.marcius26@gmail.com>
1 parent e2c7f7b commit dcc9a56

File tree

2 files changed

+80
-0
lines changed

2 files changed

+80
-0
lines changed

.vitepress/config.mts

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,84 @@ export default defineConfig({
379379
text: 'Last Updated',
380380
},
381381

382+
nav: [
383+
{
384+
text: 'Guide',
385+
link: '/',
386+
},
387+
{
388+
text: 'Cookbook',
389+
link: '/cookbook/',
390+
activeMatch: '^/cookbook/',
391+
},
392+
],
393+
382394
sidebar: {
395+
'/cookbook/': [
396+
{
397+
text: 'Assets',
398+
items: [
399+
{
400+
text: 'Numeric Assets',
401+
},
402+
{
403+
text: 'Store Assets',
404+
},
405+
{
406+
text: 'Transferring Assets Between Accounts',
407+
},
408+
{
409+
text: 'Minting More of a Mintable Asset',
410+
},
411+
{
412+
text: 'Non-Mintable Assets',
413+
},
414+
{
415+
text: 'Creating Asset-backed Tokens',
416+
},
417+
{
418+
text: 'Creating Non-Fungible Tokens (NFTs)',
419+
},
420+
],
421+
},
422+
{
423+
text: 'Access Control',
424+
items: [{ text: 'Permissions' }, { text: 'Roles' }],
425+
},
426+
{
427+
text: 'Metadata',
428+
items: [{ text: 'Set/Remove/Access' }],
429+
},
430+
{
431+
text: 'Events and Filters',
432+
items: [
433+
{ text: 'Pipeline Events' },
434+
{ text: 'Data Events' },
435+
{ text: 'Trigger Events' },
436+
{ text: 'Some case with advanced filtering' },
437+
],
438+
},
439+
{
440+
text: 'Triggers',
441+
items: [{ text: 'Different kinds' }],
442+
},
443+
{
444+
text: 'Executor',
445+
items: [{ text: 'Write and Update' }],
446+
},
447+
{
448+
text: 'Telemetry',
449+
items: [{ text: 'Check Status' }, { text: 'Work with Metrics' }],
450+
},
451+
{
452+
text: 'Miscellaneous',
453+
items: [
454+
{ text: 'Transactions with Smartcontracts' },
455+
{ text: 'Multi-Signature Transactions (MSTs)' },
456+
{ text: 'Expressions' },
457+
],
458+
},
459+
],
383460
'/guide/': getGuideSidebar(),
384461
'/': getGuideSidebar(),
385462
},

src/cookbook/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Cookbook
2+
3+
TODO

0 commit comments

Comments
 (0)