Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn committed Jun 3, 2024
1 parent 3aebf71 commit 33dbddd
Showing 1 changed file with 175 additions and 175 deletions.
350 changes: 175 additions & 175 deletions docusaurus/sidebars.js
Original file line number Diff line number Diff line change
@@ -1,177 +1,177 @@
// @ts-check
// @ts-check

/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'overview',
{
type: 'category',
label: 'Getting Started',
link: {type: 'doc', id: 'getting-started/getting-started'},
items: [
{
type: 'category',
label: 'Local Setup',
link: {type: 'doc', id: 'getting-started/local-setup/local-setup'},
items: [
'getting-started/local-setup/installation',
'getting-started/local-setup/working-with-key-pairs',
'getting-started/local-setup/browsing-gnoland',
'getting-started/local-setup/interacting-with-gnoland',
]
},
'getting-started/playground-start',
],
},
{
type: 'category',
label: 'How-to Guides',
link: {type: 'doc', id: 'how-to-guides/how-to-guides'},
items: [
'how-to-guides/simple-contract',
'how-to-guides/simple-library',
'how-to-guides/testing-gno',
'how-to-guides/deploy',
'how-to-guides/write-simple-dapp',
'how-to-guides/creating-grc20',
'how-to-guides/connect-from-go',
'how-to-guides/connect-wallet-dapp',
],
},
{
type: 'category',
label: 'Concepts',
link: {type: 'doc', id: 'concepts/concepts'},
items: [
'concepts/realms',
'concepts/packages',
'concepts/namespaces',
{
type: 'category',
label: 'Standard Libraries',
link: {type: 'doc', id: 'concepts/stdlibs/stdlibs'},
items: [
'concepts/stdlibs/banker',
'concepts/stdlibs/coin',
'concepts/stdlibs/events',
'concepts/stdlibs/gnopher-hole-stdlib',
]
},
'concepts/gnovm',
'concepts/gno-language',
'concepts/testnets',
'concepts/effective-gno',
'concepts/proof-of-contribution',
'concepts/tendermint2',
'concepts/portal-loop',
'concepts/gno-modules',
'concepts/gno-test',
'concepts/from-go-to-gno',
],
},
{
type: 'category',
label: 'Gno Tooling',
link: {type: 'doc', id: 'gno-tooling/gno-tooling'},
items: [
'gno-tooling/cli/gno-tooling-gno',
'gno-tooling/cli/gno-tooling-gnokey',
'gno-tooling/cli/gno-tooling-gnodev',
'gno-tooling/cli/gno-tooling-gnoland',
{
type: 'category',
label: 'gnofaucet',
link: {type: 'doc', id: 'gno-tooling/cli/faucet/gno-tooling-gnofaucet'},
items: [
'gno-tooling/cli/faucet/running-a-faucet',
]
},
]
},
{
type: 'category',
label: 'Gno Infra',
link: {type: 'doc', id: 'gno-infrastructure/gno-infrastructure'},
items: [
'gno-infrastructure/setting-up-a-local-chain',
'gno-infrastructure/premining-balances',
],
},
{
type: 'category',
label: 'Reference',
link: {type: 'doc', id: 'reference/reference'},
items: [
'reference/rpc-endpoints',
'reference/network-config',
{
type: 'category',
label: 'Standard Libraries',
link: {type: 'doc', id: 'reference/stdlibs/stdlibs'},
items: [
{
type: 'category',
label: 'std',
items: [
'reference/stdlibs/std/address',
'reference/stdlibs/std/banker',
'reference/stdlibs/std/coin',
'reference/stdlibs/std/coins',
'reference/stdlibs/std/chain',
'reference/stdlibs/std/testing',
]
}
]
},
'reference/go-gno-compatibility',
{
type: 'category',
label: 'tm2-js-client',
link: {type: 'doc', id: 'reference/tm2-js-client/tm2-js-client'},
items: [
'reference/tm2-js-client/tm2-js-wallet',
{
type: 'category',
label: 'Provider',
items: [
'reference/tm2-js-client/Provider/tm2-js-provider',
'reference/tm2-js-client/Provider/tm2-js-json-rpc-provider',
'reference/tm2-js-client/Provider/tm2-js-ws-provider',
'reference/tm2-js-client/Provider/tm2-js-utility',
]
},
{
type: 'category',
label: 'Signer',
items: [
'reference/tm2-js-client/Signer/tm2-js-signer',
'reference/tm2-js-client/Signer/tm2-js-key',
'reference/tm2-js-client/Signer/tm2-js-ledger',
]
},
]
},
{
type: 'category',
label: 'gno-js-client',
link: {type: 'doc', id: 'reference/gno-js-client/gno-js-client'},
items: [
'reference/gno-js-client/gno-js-provider',
'reference/gno-js-client/gno-js-wallet',
]
},
{
type: 'category',
label: 'gnoclient',
link: {type: 'doc', id: 'reference/gnoclient/gnoclient'},
items: [
'reference/gnoclient/signer',
'reference/gnoclient/client'
]
},
],
},
],
};
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'overview',
{
type: 'category',
label: 'Getting Started',
link: {type: 'doc', id: 'getting-started/getting-started'},
items: [
{
type: 'category',
label: 'Local Setup',
link: {type: 'doc', id: 'getting-started/local-setup/local-setup'},
items: [
'getting-started/local-setup/installation',
'getting-started/local-setup/working-with-key-pairs',
'getting-started/local-setup/browsing-gnoland',
'getting-started/local-setup/interacting-with-gnoland',
]
},
'getting-started/playground-start',
],
},
{
type: 'category',
label: 'How-to Guides',
link: {type: 'doc', id: 'how-to-guides/how-to-guides'},
items: [
'how-to-guides/simple-contract',
'how-to-guides/simple-library',
'how-to-guides/testing-gno',
'how-to-guides/deploy',
'how-to-guides/write-simple-dapp',
'how-to-guides/creating-grc20',
'how-to-guides/connect-from-go',
'how-to-guides/connect-wallet-dapp',
],
},
{
type: 'category',
label: 'Concepts',
link: {type: 'doc', id: 'concepts/concepts'},
items: [
'concepts/realms',
'concepts/packages',
'concepts/namespaces',
{
type: 'category',
label: 'Standard Libraries',
link: {type: 'doc', id: 'concepts/stdlibs/stdlibs'},
items: [
'concepts/stdlibs/banker',
'concepts/stdlibs/coin',
'concepts/stdlibs/events',
'concepts/stdlibs/gnopher-hole-stdlib',
]
},
'concepts/gnovm',
'concepts/gno-language',
'concepts/testnets',
'concepts/effective-gno',
'concepts/proof-of-contribution',
'concepts/tendermint2',
'concepts/portal-loop',
'concepts/gno-modules',
'concepts/gno-test',
'concepts/from-go-to-gno',
],
},
{
type: 'category',
label: 'Gno Tooling',
link: {type: 'doc', id: 'gno-tooling/gno-tooling'},
items: [
'gno-tooling/cli/gno-tooling-gno',
'gno-tooling/cli/gno-tooling-gnokey',
'gno-tooling/cli/gno-tooling-gnodev',
'gno-tooling/cli/gno-tooling-gnoland',
{
type: 'category',
label: 'gnofaucet',
link: {type: 'doc', id: 'gno-tooling/cli/faucet/gno-tooling-gnofaucet'},
items: [
'gno-tooling/cli/faucet/running-a-faucet',
]
},
]
},
{
type: 'category',
label: 'Gno Infrastructure',
link: {type: 'doc', id: 'gno-infrastructure/gno-infrastructure'},
items: [
'gno-infrastructure/setting-up-a-local-chain',
'gno-infrastructure/premining-balances',
],
},
{
type: 'category',
label: 'Reference',
link: {type: 'doc', id: 'reference/reference'},
items: [
'reference/rpc-endpoints',
'reference/network-config',
{
type: 'category',
label: 'Standard Libraries',
link: {type: 'doc', id: 'reference/stdlibs/stdlibs'},
items: [
{
type: 'category',
label: 'std',
items: [
'reference/stdlibs/std/address',
'reference/stdlibs/std/banker',
'reference/stdlibs/std/coin',
'reference/stdlibs/std/coins',
'reference/stdlibs/std/chain',
'reference/stdlibs/std/testing',
]
}
]
},
'reference/go-gno-compatibility',
{
type: 'category',
label: 'tm2-js-client',
link: {type: 'doc', id: 'reference/tm2-js-client/tm2-js-client'},
items: [
'reference/tm2-js-client/tm2-js-wallet',
{
type: 'category',
label: 'Provider',
items: [
'reference/tm2-js-client/Provider/tm2-js-provider',
'reference/tm2-js-client/Provider/tm2-js-json-rpc-provider',
'reference/tm2-js-client/Provider/tm2-js-ws-provider',
'reference/tm2-js-client/Provider/tm2-js-utility',
]
},
{
type: 'category',
label: 'Signer',
items: [
'reference/tm2-js-client/Signer/tm2-js-signer',
'reference/tm2-js-client/Signer/tm2-js-key',
'reference/tm2-js-client/Signer/tm2-js-ledger',
]
},
]
},
{
type: 'category',
label: 'gno-js-client',
link: {type: 'doc', id: 'reference/gno-js-client/gno-js-client'},
items: [
'reference/gno-js-client/gno-js-provider',
'reference/gno-js-client/gno-js-wallet',
]
},
{
type: 'category',
label: 'gnoclient',
link: {type: 'doc', id: 'reference/gnoclient/gnoclient'},
items: [
'reference/gnoclient/signer',
'reference/gnoclient/client'
]
},
],
},
],
};

module.exports = sidebars;
module.exports = sidebars;

0 comments on commit 33dbddd

Please sign in to comment.