Skip to content

Commit

Permalink
structure_update_2
Browse files Browse the repository at this point in the history
  • Loading branch information
reveloper committed Oct 30, 2024
1 parent 9c0ff23 commit d6a427d
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 39 deletions.
93 changes: 69 additions & 24 deletions navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
items: [
{
to: '/v3/concepts/dive-into-ton/introduction',
label: 'Introduction to TON',
label: 'Introduction',
},
{
to: '/v3/concepts/dive-into-ton/ton-ecosystem/wallet-apps',
Expand Down Expand Up @@ -58,6 +58,18 @@ module.exports = {
to: 'v3/guidelines/dapps/apis-sdks/sdk',
label: 'APIs and SDKs',
},
{
to: '/v3/guidelines/dapps/cookbook',
label: 'Cookbook',
},
],
},
{
type: 'dropdown',
to: '/v3/documentation/dapps/assets/overview',
position: 'left',
label: 'Assets',
items: [
{
to: '/v3/guidelines/dapps/asset-processing/payments-processing',
label: 'Payment Processing',
Expand All @@ -66,6 +78,14 @@ module.exports = {
to: 'v3/guidelines/dapps/asset-processing/jettons',
label: 'Jetton Processing',
},
{
to: '/v3/documentation/dapps/assets/usdt',
label: 'USDT Processing',
},
{
to: 'v3/guidelines/dapps/asset-processing/mintless-jettons',
label: 'Mintless Jetton Processing',
},
{
to: '/v3/guidelines/dapps/tutorials/mint-your-first-token',
label: 'Mint your Tokens',
Expand All @@ -74,10 +94,6 @@ module.exports = {
to: '/v3/guidelines/dapps/tutorials/nft-minting-guide',
label: 'Mint your NFTs',
},
{
to: '/v3/guidelines/dapps/cookbook',
label: 'Cookbook',
},
],
},
{
Expand All @@ -88,35 +104,60 @@ module.exports = {
items: [
{
to: '/v3/documentation/smart-contracts/contracts-specs/wallet-contracts',
label: 'Wallets',
label: 'Contracts Specification',
},
{
to: '/v3/documentation/smart-contracts/message-management/sending-messages',
label: 'Sending Messages',
to: '/v3/documentation/smart-contracts/addresses',
label: 'Address Specification',
},
{
to: 'v3/documentation/smart-contracts/message-management/messages-and-transactions',
label: 'Messages and Transactions',
},
{
to: 'v3/documentation/smart-contracts/transaction-fees/fees',
label: 'Transaction Fees',
},
{
to: '/v3/guidelines/smart-contracts/security/things-to-focus',
label: 'Best Practices',
},
{
to: 'v3/documentation/tvm/tvm-overview',
label: 'TON Virtual Machine (TVM)',
},
],
},

{
type: 'dropdown',
to: 'v3/documentation/smart-contracts/overview',
position: 'left',
label: 'Program Languages',
items: [
{
to: 'v3/documentation/smart-contracts/func/overview',
label: 'FunC Development Language',
label: 'FunC',
},
{
to: '/v3/documentation/tvm/instructions',
label: 'TVM Instruction',
},
{
to: 'v3/documentation/smart-contracts/func/cookbook',
label: 'FunC Cookbook',
},
{
to: '/v3/documentation/data-formats/tlb/cell-boc',
label: 'Data formats',
to: 'https://docs.tact-lang.org/',
label: 'Tact',
},
{
to: 'v3/documentation/tvm/tvm-overview',
label: 'TON Virtual Machine (TVM)',
to: '/v3/documentation/smart-contracts/fift/overview',
label: 'Fift',
},
{
to: 'v3/guidelines/smart-contracts/guidelines',
label: 'Best Practices for Contracts',
to: '/v3/documentation/data-formats/tlb/tl-b-language',
label: 'TL-B',
},
],
},
Expand All @@ -128,23 +169,27 @@ module.exports = {
items: [
{
to: '/v3/documentation/infra/nodes/mytonctrl/mytonctrl-overview',
label: 'Manage Blockchain Nodes',
label: 'Software (Mytonctrl)',
},
{
to: '/v3/guidelines/nodes/nodes-troubleshooting',
label: 'Troubleshooting the Node',
to: '/v3/guidelines/nodes/running-nodes/liteserver-node',
label: 'Liteserver',
},
{
to: '/v3/documentation/smart-contracts/contracts-specs/single-nominator-pool',
label: 'Single Nominator Pool',
to: '/v3/guidelines/nodes/running-nodes/validator-node',
label: 'Validator',
},
{
to: '/v3/documentation/smart-contracts/contracts-specs/nominator-pool',
label: 'Nominator Pool',
to: '/v3/guidelines/smart-contracts/howto/single-nominator-pool',
label: 'Single Nominator Pool',
},
// {
// to: '/v3/guidelines/nodes/running-nodes/archive-node', // TODO: add article
// label: 'Running Nodes',
// },
{
to: '/v3/guidelines/nodes/running-nodes/archive-node', // TODO: add article
label: 'Running Nodes',
to: '/v3/guidelines/nodes/nodes-troubleshooting',
label: 'Troubleshooting',
},
{
to: '/v3/guidelines/nodes/faq',
Expand Down
30 changes: 15 additions & 15 deletions sidebars/documentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ module.exports = [
'v3/documentation/smart-contracts/getting-started/testnet',
],
},
{
type: 'category',
label: 'Contracts Specification',
items: [
'v3/documentation/smart-contracts/contracts-specs/wallet-contracts',
'v3/documentation/smart-contracts/contracts-specs/highload-wallet',
'v3/documentation/smart-contracts/contracts-specs/vesting-contract',
'v3/documentation/smart-contracts/contracts-specs/governance',
'v3/documentation/smart-contracts/contracts-specs/nominator-pool',
'v3/documentation/smart-contracts/contracts-specs/single-nominator-pool',
'v3/documentation/smart-contracts/contracts-specs/precompiled-contracts',
'v3/documentation/smart-contracts/contracts-specs/examples',
],
},
{
type: 'category',
label: 'Message Management',
Expand Down Expand Up @@ -54,20 +68,6 @@ module.exports = [
'v3/documentation/smart-contracts/shards/infinity-sharding-paradigm',
],
},
{
type: 'category',
label: 'Contracts Specification',
items: [
'v3/documentation/smart-contracts/contracts-specs/wallet-contracts',
'v3/documentation/smart-contracts/contracts-specs/highload-wallet',
'v3/documentation/smart-contracts/contracts-specs/vesting-contract',
'v3/documentation/smart-contracts/contracts-specs/governance',
'v3/documentation/smart-contracts/contracts-specs/nominator-pool',
'v3/documentation/smart-contracts/contracts-specs/single-nominator-pool',
'v3/documentation/smart-contracts/contracts-specs/precompiled-contracts',
'v3/documentation/smart-contracts/contracts-specs/examples',
],
},
{
type: 'category',
label: 'FunC language',
Expand Down Expand Up @@ -280,11 +280,11 @@ module.exports = [
type: 'category',
label: 'TL-B',
items: [
'v3/documentation/data-formats/tlb/tl-b-language',
'v3/documentation/data-formats/tlb/cell-boc',
'v3/documentation/data-formats/tlb/exotic-cells',
'v3/documentation/data-formats/tlb/library-cells',
'v3/documentation/data-formats/tlb/proofs',
'v3/documentation/data-formats/tlb/tl-b-language',
'v3/documentation/data-formats/tlb/tl-b-types',
'v3/documentation/data-formats/tlb/canonical-cell-serialization',
'v3/documentation/data-formats/tlb/msg-tlb',
Expand Down

0 comments on commit d6a427d

Please sign in to comment.