-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[move-book] Extending Book by Move 2.0 Documentation
Adds documentation derived from our internal preparation documents. Also adds an overview page for Move 2 which links to other sections in the book.
- Loading branch information
Showing
10 changed files
with
571 additions
and
112 deletions.
There are no files selected for viewing
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
220 changes: 113 additions & 107 deletions
220
apps/nextra/pages/en/build/smart-contracts/book/_meta.tsx
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 |
---|---|---|
@@ -1,109 +1,115 @@ | ||
export default { | ||
SUMMARY: { | ||
title: "Summary", | ||
}, | ||
"---getting-started---": { | ||
type: "separator", | ||
title: "Getting Started", | ||
}, | ||
"modules-and-scripts": { | ||
title: "Modules and Scripts", | ||
}, | ||
"move-tutorial": { | ||
title: "Move Tutorial", | ||
}, | ||
"---primitive-types---": { | ||
type: "separator", | ||
title: "Primitive Types", | ||
}, | ||
integers: { | ||
title: "Integers", | ||
}, | ||
bool: { | ||
title: "Bool", | ||
}, | ||
address: { | ||
title: "Address", | ||
}, | ||
vector: { | ||
title: "Vector", | ||
}, | ||
signer: { | ||
title: "Signer", | ||
}, | ||
references: { | ||
title: "References", | ||
}, | ||
tuples: { | ||
title: "Tuples and Unit", | ||
}, | ||
"---basic-concepts---": { | ||
type: "separator", | ||
title: "Basic Concepts", | ||
}, | ||
variables: { | ||
title: "Local Variables and Scopes", | ||
}, | ||
equality: { | ||
title: "Equality", | ||
}, | ||
"abort-and-assert": { | ||
title: "Abort and Assert", | ||
}, | ||
conditionals: { | ||
title: "Conditionals", | ||
}, | ||
loops: { | ||
title: "While, For, and Loop", | ||
}, | ||
functions: { | ||
title: "Functions", | ||
}, | ||
"structs-and-resources": { | ||
title: "Structs and Resources", | ||
}, | ||
constants: { | ||
title: "Constants", | ||
}, | ||
generics: { | ||
title: "Generics", | ||
}, | ||
abilities: { | ||
title: "Type abilities", | ||
}, | ||
uses: { | ||
title: "Uses and Aliases", | ||
}, | ||
friends: { | ||
title: "Friends", | ||
}, | ||
packages: { | ||
title: "Packages", | ||
}, | ||
"package-upgrades": { | ||
title: "Package Upgrades", | ||
}, | ||
"unit-testing": { | ||
title: "Unit Tests", | ||
}, | ||
"---global-storage---": { | ||
type: "separator", | ||
title: "Global Storage", | ||
}, | ||
"global-storage-structure": { | ||
title: "Global Storage Structure", | ||
}, | ||
"global-storage-operators": { | ||
title: "Global Storage Operators", | ||
}, | ||
"---reference---": { | ||
type: "separator", | ||
title: "Reference", | ||
}, | ||
"standard-library": { | ||
title: "Standard Library", | ||
}, | ||
"coding-conventions": { | ||
title: "Coding Conventions", | ||
}, | ||
SUMMARY: { | ||
title: "Summary", | ||
}, | ||
"---getting-started---": { | ||
type: "separator", | ||
title: "Getting Started", | ||
}, | ||
"modules-and-scripts": { | ||
title: "Modules and Scripts", | ||
}, | ||
"move-tutorial": { | ||
title: "Move Tutorial", | ||
}, | ||
"---primitive-types---": { | ||
type: "separator", | ||
title: "Primitive Types", | ||
}, | ||
integers: { | ||
title: "Integers", | ||
}, | ||
bool: { | ||
title: "Bool", | ||
}, | ||
address: { | ||
title: "Address", | ||
}, | ||
vector: { | ||
title: "Vector", | ||
}, | ||
signer: { | ||
title: "Signer", | ||
}, | ||
references: { | ||
title: "References", | ||
}, | ||
tuples: { | ||
title: "Tuples and Unit", | ||
}, | ||
"---basic-concepts---": { | ||
type: "separator", | ||
title: "Basic Concepts", | ||
}, | ||
variables: { | ||
title: "Local Variables and Scopes", | ||
}, | ||
equality: { | ||
title: "Equality", | ||
}, | ||
"abort-and-assert": { | ||
title: "Abort and Assert", | ||
}, | ||
conditionals: { | ||
title: "Conditionals", | ||
}, | ||
loops: { | ||
title: "While, For, and Loop", | ||
}, | ||
functions: { | ||
title: "Functions", | ||
}, | ||
"structs-and-resources": { | ||
title: "Structs and Resources", | ||
}, | ||
"enums": { | ||
title: "Enum Types", | ||
}, | ||
constants: { | ||
title: "Constants", | ||
}, | ||
generics: { | ||
title: "Generics", | ||
}, | ||
abilities: { | ||
title: "Type abilities", | ||
}, | ||
uses: { | ||
title: "Uses and Aliases", | ||
}, | ||
friends: { | ||
title: "Friends", | ||
}, | ||
packages: { | ||
title: "Packages", | ||
}, | ||
"package-upgrades": { | ||
title: "Package Upgrades", | ||
}, | ||
"unit-testing": { | ||
title: "Unit Tests", | ||
}, | ||
"---global-storage---": { | ||
type: "separator", | ||
title: "Global Storage", | ||
}, | ||
"global-storage-structure": { | ||
title: "Global Storage Structure", | ||
}, | ||
"global-storage-operators": { | ||
title: "Global Storage Operators", | ||
}, | ||
"---reference---": { | ||
type: "separator", | ||
title: "Reference", | ||
}, | ||
"move-2.0": { | ||
title: "Move 2.0 Release Notes", | ||
}, | ||
"standard-library": { | ||
title: "Standard Library", | ||
}, | ||
"coding-conventions": { | ||
title: "Coding Conventions", | ||
}, | ||
}; |
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
Oops, something went wrong.