-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1eb72c5
commit 27957fb
Showing
20 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,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', | ||
}, | ||
], | ||
}; |