You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cosmwasm/cw-orch.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ let count = counter.get_count()?;
20
20
assert_eq!(count.count, 1);
21
21
```
22
22
23
-
In this quick-start guide, we will review the necessary steps in order to integrate [`cw-orch`](https://github.com/AbstractSDK/cw-orchestrator) into a simple contract crate. [We review integration of rust-workspaces (multiple contracts) at the end of this page](#integration-in-a-workspace).
23
+
In this quick-start guide, we will review the necessary steps in order to integrate [`cw-orch`](https://github.com/AbstractSDK/cw-orchestrator) into a simple contract create. [We review integration of rust-workspaces (multiple contracts) at the end of this page](#integration-in-a-workspace).
24
24
25
25
> **NOTE**: *Quicker than the quick start*
26
26
>
@@ -40,7 +40,7 @@ In this quick-start guide, we will review the necessary steps in order to integr
40
40
-[Using the integration](#using-the-integration)
41
41
-[Integration in a workspace](#integration-in-a-workspace)
42
42
-[Handling dependencies and features](#handling-dependencies-and-features)
43
-
-[Creating an interface crate](#creating-an-interface-crate)
43
+
-[Creating an interface create](#creating-an-interface-create)
44
44
-[Integrating single contracts](#integrating-single-contracts)
45
45
-[More examples and scripts](#more-examples-and-scripts)
46
46
@@ -93,7 +93,7 @@ Then, inside that `interface.rs` file, you can define the interface for your con
Nowthatallthesetupisdone, youcanuse your contract in tests, integration-tests or scripts.
185
185
186
-
Start by importing your crate, with the `interface` feature enabled.Depending on your use-case this will be in `[dependencies]` or `[dev-dependencies]`:
186
+
Start by importing your create, with the `interface` feature enabled.Depending on your use-case this will be in `[dependencies]` or `[dev-dependencies]`:
187
187
188
188
```toml
189
189
counter-contract = { path = "../counter-contract", features = ["interface"] }
@@ -244,9 +244,9 @@ Refer above to [Adding `cw-orch` to your `Cargo.toml` file](#adding-cw-orch-to-y
244
244
245
245
For instance, for the `cw20_base` contract, you need to execute those 2 steps on the `cw20-base` contract (where the `QueryMsg` are defined) as well as on the `cw20` package (where the `ExecuteMsg` are defined).
246
246
247
-
### Creating an interface crate
247
+
### Creating an interface create
248
248
249
-
When using a workspace, we advise you to create a new crate inside your workspace for defining your contract's interfaces. In order to do that, use:
249
+
When using a workspace, we advise you to create a new create inside your workspace for defining your contract's interfaces. In order to do that, use:
250
250
251
251
```shell
252
252
cargo new interface --lib
@@ -260,7 +260,7 @@ Add the interface package to your workspace `Cargo.toml` file
260
260
members = ["packages/*", "contracts/*", "interface"]
261
261
```
262
262
263
-
Inside this `interface`crate, we advise to integrate all your contracts 1 by 1 in separate files. Here is the structure of the `cw-plus` integration for reference:
263
+
Inside this `interface`create, we advise to integrate all your contracts 1 by 1 in separate files. Here is the structure of the `cw-plus` integration for reference:
Copy file name to clipboardExpand all lines: docs/cosmwasm/javascript.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Create a new index.ts file
32
32
touch index.ts
33
33
```
34
34
35
-
The class CosmWasmClient is exported from the CosmJS package @cosmjs/cosmwasm-stargate. Learn more in the [offical docs](https://cosmwasm.github.io/CosmWasmJS/clients/reading/CosmWasmClient.html).
35
+
The class CosmWasmClient is exported from the CosmJS package @cosmjs/cosmwasm-stargate. Learn more in the [official docs](https://cosmwasm.github.io/CosmWasmJS/clients/reading/CosmWasmClient.html).
Copy file name to clipboardExpand all lines: docs/cosmwasm/local/submit-wasm-proposal.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ CONTRACT=cw20_base
42
42
```
43
43
44
44
## Define proposal ID
45
-
We cannot really do this progamatically. Proposal `1` will come out after submitting it for the first time on a new chain. You can always update this manually when testing multiple times on the same state.
45
+
We cannot really do this programmatically. Proposal `1` will come out after submitting it for the first time on a new chain. You can always update this manually when testing multiple times on the same state.
@@ -53,7 +53,7 @@ Note how we added `--network testnet` to tell beaker to deploy to the testnet Os
53
53
In this example we are using `osmo1nyphwl8p5yx6fxzevjwqunsfqpcxukmtk8t60m` which is the address from the beaker test1 account as seen in the [config.rs](https://github.com/osmosis-labs/beaker/blob/main/packages/cli/src/framework/config.rs) file.
54
54
55
55
:::warning
56
-
Please note that account test1 is publicaly available as documented [here](https://github.com/osmosis-labs/beaker/blob/main/docs/config/global.md) and only used for development purposes. Beaker will support local keyring in about 1-2 weeks.
56
+
Please note that account test1 is publicly available as documented [here](https://github.com/osmosis-labs/beaker/blob/main/docs/config/global.md) and only used for development purposes. Beaker will support local keyring in about 1-2 weeks.
57
57
:::
58
58
59
59
```
@@ -149,7 +149,7 @@ Run the following command to vote from beaker
Even though the testnet is configured as permisionless, it's important to undertanding the voting process. We need validators to vote for your proposal in order to reach the quorum. We created a simple utility in our faucet that will allow you to request a validator with enough voting power to vote for your proposal as well.
152
+
Even though the testnet is configured as permisionless, it's important to understanding the voting process. We need validators to vote for your proposal in order to reach the quorum. We created a simple utility in our faucet that will allow you to request a validator with enough voting power to vote for your proposal as well.
0 commit comments