-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from CosmWasm/minor-review-remarks
Minor review remarks
- Loading branch information
Showing
10 changed files
with
159 additions
and
133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,35 @@ | ||
# The Sylvia Book | ||
|
||
This book is about writing Smart Contracts using [Sylvia](https://github.com/CosmWasm/sylvia) framework. | ||
This book is about writing **Smart Contracts** using [Sylvia](https://github.com/CosmWasm/sylvia) framework. | ||
|
||
To learn about CosmWasm on which Sylvia rely check [The Cosmwasm Book](https://book.cosmwasm.com/index.html) | ||
To learn about [CosmWasm](https://github.com/CosmWasm), | ||
on which Sylvia relies, please check [The CosmWasm Book](https://book.cosmwasm.com). | ||
|
||
## About | ||
|
||
This repo contains source code for [The Sylvia Book](https://cosmwasm.github.io/sylvia-book/). | ||
This repo contains a source code for [The Sylvia Book](https://cosmwasm.github.io/sylvia-book/). | ||
|
||
## Building | ||
|
||
The book is built using [mdbook](https://github.com/rust-lang/mdBook). | ||
|
||
The book is built using [mdBook](https://github.com/rust-lang/mdBook). | ||
To build it, you must first install [Rust](https://www.rust-lang.org/tools/install). | ||
|
||
Then install `mdbook` using cargo: | ||
Having Rust installed, install `mdBook` using cargo: | ||
|
||
```bash | ||
$ cargo install mdbook | ||
``` | ||
|
||
and build the book from this directory: | ||
and then build the book from this repository: | ||
|
||
```bash | ||
$ mdbook build | ||
``` | ||
|
||
To serve the book locally, run: | ||
|
||
```bash | ||
mdbook build | ||
$ mdbook serve | ||
``` | ||
|
||
For more info about using mdbook read its own [book](https://rust-lang.github.io/mdBook/index.html). | ||
To learn more about using `mdBook`, read its own [book](https://rust-lang.github.io/mdBook/index.html). |
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
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
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,4 +1,4 @@ | ||
# Basics | ||
|
||
This chapter will go through creating basic smart contract step by step. | ||
I will explain the core features of `sylvia` and some good practices. | ||
This chapter will guide you through creating basic smart contract, step by step. | ||
I will explain the core features of `Sylvia` framework and some good practices. |
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
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
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
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.