Skip to content

Commit

Permalink
move-move (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka authored Mar 26, 2024
1 parent caaffe3 commit 1d4ee20
Show file tree
Hide file tree
Showing 102 changed files with 11 additions and 8 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
build
book
14 changes: 9 additions & 5 deletions book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,25 @@ description = "First book about the Move programming language and the Move VM. M
authors = ["Damir Shamanaev"]
language = "en"
multilingual = false
src = "src"
src = "book"
repository = "damirka/move-book"

[build]
build-dir = "build"
extra-watch-dirs = ["packages"] # rebuild on Move Source changes

[output.html]
additional-css = ["theme/css/custom.css"]
git-repository-url = "https://github.com/MystenLabs/move-book"
git-repository-icon = "fa-github"
edit-url-template = "https://github.com/MystenLabs/move-book/edit/second-edition/{path}"

# Contains the redirects from the old book
[output.html.redirect]
# optional = true
"introduction/foreword" = "foreword"
"introduction/getting-started" = "before-we-begin"

# syntax basics redirects
"syntax-basics/index.html" = "/basic-syntax/index.html"
"syntax-basics/concept.html" = "/basic-syntax/module.html"
"syntax-basics/comments.html" = "/basic-syntax/comments.html"
Expand All @@ -27,10 +32,10 @@ edit-url-template = "https://github.com/MystenLabs/move-book/edit/second-edition
"syntax-basics/function.html" = "/basic-syntax/function.html"
"advanced-topics/struct.html" = "/basic-syntax/struct.html"

# advanced topics redirects
"advanced-topics/index.html" = "/programmability/index.html"

# TBD Redirects

# TODO:
"advanced-topics/types-with-abilities/index.html" = "/index.html"
"advanced-topics/ownership-and-references.html" = "/index.html"
"advanced-topics/understanding-generics.html" = "/index.html"
Expand All @@ -45,7 +50,6 @@ edit-url-template = "https://github.com/MystenLabs/move-book/edit/second-edition
"resources/resource-by-example/destroy-resource.html" = "/index.html"
"resources/resource-by-example/furher-steps.html" = "/index.html"


"tutorials/index.html" = "/index.html"
"tutorials/erc20.html" = "/index.html"
"translations.html" = "/index.html"
Expand Down
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.
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an [address](./address.md).

Sui supports multiple cryptographic algorithms for account generation. The supported two curves are ed25519, secp256k1, there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.
Sui supports multiple cryptographic algorithms for account generation. The two supported curves are ed25519, secp256k1, and there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.

<!-- The cryptographic agility allows for flexibility in the account generation -->
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.
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.
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.
2 changes: 1 addition & 1 deletion temp.publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ mv book sui;
git add sui;
git commit -m "update $time";
git push origin head;
git checkout second-edition;
git checkout main;

0 comments on commit 1d4ee20

Please sign in to comment.