File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contract and its environment.
10
10
## Definitions
11
11
12
12
** Contract** is a [ WebAssembly] ( https://webassembly.org/ ) code stored in the blockchain's state.
13
- This has no state except that which is contained in the binary code (eg . static constants).
13
+ This has no state except that which is contained in the binary code (e.g . static constants).
14
14
15
15
** Instance** refers to a specific instantiation of a contract. It includes a reference to the
16
16
contract's binary as well as a state unique to the instance, which is initialized upon its creation.
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ import { Callout } from "nextra/components";
9
9
Execute pretty much does what it says on the tin: It executes some routine in your contract after a
10
10
remote (either another contract or some client) sent a message.
11
11
12
- This function is called when some wants you to, for example, increment a counter or add a user to a
13
- lottery. Anything that might modify the state of the contract.
12
+ This function is called when someone wants you to, for example, increment a counter or add a user to
13
+ a lottery. Anything that might modify the state of the contract.
14
14
15
15
## Definition
16
16
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ contract is a set of traits you implement on your contract type.
20
20
21
21
The framework generates things like entry point structures, functions dispatching the messages, or
22
22
even helpers for [ ` MultiTest ` ] ( ../cw-multi-test ) . It allows for better control of interfaces,
23
- including validating their completeness in compile time.
23
+ including validating their completeness at compile time.
24
24
25
25
Sylvia consists of two crates:
26
26
Original file line number Diff line number Diff line change 3
3
This module is a collection of guides for creating CosmWasm smart contracts. It will lead you step
4
4
by step, and explain relevant topics from the easiest to the trickier ones.
5
5
6
- The point of these tutorials is not only to tell you about smart contracts API but also to show you
6
+ The point of these tutorials is not only to tell you about smart contract API but also to show you
7
7
how to write contracts in a clean and maintainable way. We will show you patterns that CosmWasm
8
8
creators established and encourage you to use.
You can’t perform that action at this time.
0 commit comments