Skip to content

Commit

Permalink
Move Schema tool
Browse files Browse the repository at this point in the history
  • Loading branch information
jlvandenhout committed Jan 24, 2024
1 parent 1eb72c5 commit 27957fb
Show file tree
Hide file tree
Showing 20 changed files with 104 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
104 changes: 104 additions & 0 deletions docs/build/schema/v1.0.0-rc.6/sidebars.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/

module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],

// But you can create a sidebar manually
SchemaSidebar: [
{
type: 'doc',
label: 'The Schema Tool',
id: 'introduction',
},
{
type: 'doc',
label: 'Create a Schema',
id: 'usage',
},
{
type: 'doc',
label: 'Define the State',
id: 'state',
},
{
type: 'doc',
label: 'Use Structured Data Types',
id: 'structs',
},
{
type: 'doc',
label: 'Generate Type Definitions',
id: 'typedefs',
},
{
type: 'doc',
label: 'Trigger Events',
id: 'events',
},
{
type: 'doc',
label: 'Define Functions',
id: 'funcs',
},
{
type: 'doc',
label: 'Limit Access',
id: 'access',
},
{
type: 'doc',
label: 'Define Function Parameters',
id: 'params',
},
{
type: 'doc',
label: 'Define Function Results',
id: 'results',
},
{
type: 'doc',
label: 'Use Thunk Functions',
id: 'thunks',
},
{
type: 'doc',
label: 'Use View-Only Functions',
id: 'views',
},
{
type: 'doc',
label: 'Initialize a Smart Contract',
id: 'init',
},
{
type: 'doc',
label: 'Transfer Tokens',
id: 'transfers',
},
{
type: 'doc',
label: 'Add Function Descriptors',
id: 'funcdesc',
},
{
type: 'doc',
label: 'Call Functions',
id: 'call',
},
{
type: 'doc',
label: 'Post Asynchronous Requests',
id: 'post',
},
],
};

0 comments on commit 27957fb

Please sign in to comment.