From a6bc93ca9997a4ba411d9d1e9c4d0702d2776387 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:37:34 +0100 Subject: [PATCH 01/11] typos genesis.go --- app/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/genesis.go b/app/genesis.go index 454409107..f47c2bafb 100644 --- a/app/genesis.go +++ b/app/genesis.go @@ -5,7 +5,7 @@ import ( ) // GenesisState The genesis state of the blockchain is represented here as a map of raw json -// messages key'd by a identifier string. +// messages key'd by an identifier string. // The identifier is used to determine which module genesis information belongs // to so it may be appropriately routed during init chain. // Within this application default genesis information is retrieved from From dfb7728502af61a08cf9be3f8468f03215d4a45c Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:38:04 +0100 Subject: [PATCH 02/11] typos README.md --- cosmwasm/contracts/v010/dist/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/dist/README.md b/cosmwasm/contracts/v010/dist/README.md index bb2da60eb..41921215e 100644 --- a/cosmwasm/contracts/v010/dist/README.md +++ b/cosmwasm/contracts/v010/dist/README.md @@ -34,7 +34,7 @@ you can customize. ## Create a Repo -After generating, you have a initialized local git repo, but no commits, and no +After generating, you have an initialized local git repo, but no commits, and no remote. Go to a server (eg. github) and create a new upstream repo (called `YOUR-GIT-URL` below). Then run the following: From 8bbe4c093f256649ecd8b706e41c3d0d057e8e90 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:38:33 +0100 Subject: [PATCH 03/11] typos README.md --- cosmwasm/contracts/v010/dist/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/dist/README.md b/cosmwasm/contracts/v010/dist/README.md index 41921215e..300a42795 100644 --- a/cosmwasm/contracts/v010/dist/README.md +++ b/cosmwasm/contracts/v010/dist/README.md @@ -50,7 +50,7 @@ git push -u origin master ## CI Support We have templates for both github actions and Circle CI in the generated -project, so you can get up an running with CI right away. One note is that the +project, so you can get up a running with CI right away. One note is that the CI runs all `cargo` commands with `--locked` to ensure it uses the exact same versions as you have locally. This also means you must have an up-to-date `Cargo.lock` file, which is not auto-generated. From 8514c08736fc8dde6b02e6ded70f5433eebf0223 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:39:17 +0100 Subject: [PATCH 04/11] typos Developing.md --- cosmwasm/contracts/v010/erc20/Developing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/erc20/Developing.md b/cosmwasm/contracts/v010/erc20/Developing.md index 056ae7d9a..e46e0f078 100644 --- a/cosmwasm/contracts/v010/erc20/Developing.md +++ b/cosmwasm/contracts/v010/erc20/Developing.md @@ -109,7 +109,7 @@ docker run --rm -v "$(pwd)":/code \ cosmwasm/rust-optimizer:0.9.0 ``` -We must mount the contract code to `/code`. You can use a absolute path instead +We must mount the contract code to `/code`. You can use an absolute path instead of `$(pwd)` if you don't want to `cd` to the directory first. The other two volumes are nice for speedup. Mounting `/code/target` in particular is useful to avoid docker overwriting your local dev files with root permissions. From 9b2564c9c51ff148a3c7fa01c0ea90288f80aea5 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:39:42 +0100 Subject: [PATCH 05/11] typos Developing.md --- cosmwasm/contracts/v010/escrow/Developing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/escrow/Developing.md b/cosmwasm/contracts/v010/escrow/Developing.md index e94cd10b0..0e2142f73 100644 --- a/cosmwasm/contracts/v010/escrow/Developing.md +++ b/cosmwasm/contracts/v010/escrow/Developing.md @@ -109,7 +109,7 @@ docker run --rm -v "$(pwd)":/code \ cosmwasm/rust-optimizer:0.8.0 ``` -We must mount the contract code to `/code`. You can use a absolute path instead +We must mount the contract code to `/code`. You can use an absolute path instead of `$(pwd)` if you don't want to `cd` to the directory first. The other two volumes are nice for speedup. Mounting `/code/target` in particular is useful to avoid docker overwriting your local dev files with root permissions. From 06c82d1cc85b7f94a17d659e3240f4bdd0ada4c1 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:40:23 +0100 Subject: [PATCH 06/11] typos README.md --- cosmwasm/contracts/v010/gov/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/gov/README.md b/cosmwasm/contracts/v010/gov/README.md index bb2da60eb..41921215e 100644 --- a/cosmwasm/contracts/v010/gov/README.md +++ b/cosmwasm/contracts/v010/gov/README.md @@ -34,7 +34,7 @@ you can customize. ## Create a Repo -After generating, you have a initialized local git repo, but no commits, and no +After generating, you have an initialized local git repo, but no commits, and no remote. Go to a server (eg. github) and create a new upstream repo (called `YOUR-GIT-URL` below). Then run the following: From 9558433196c314441048284a8d3a80c28cf008fb Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:40:52 +0100 Subject: [PATCH 07/11] typos README.md --- cosmwasm/contracts/v010/gov/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/gov/README.md b/cosmwasm/contracts/v010/gov/README.md index 41921215e..300a42795 100644 --- a/cosmwasm/contracts/v010/gov/README.md +++ b/cosmwasm/contracts/v010/gov/README.md @@ -50,7 +50,7 @@ git push -u origin master ## CI Support We have templates for both github actions and Circle CI in the generated -project, so you can get up an running with CI right away. One note is that the +project, so you can get up a running with CI right away. One note is that the CI runs all `cargo` commands with `--locked` to ensure it uses the exact same versions as you have locally. This also means you must have an up-to-date `Cargo.lock` file, which is not auto-generated. From 46666403fc2c87cc829c301f21cce803af314ca2 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:41:22 +0100 Subject: [PATCH 08/11] typos README.md --- cosmwasm/contracts/v010/mint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/mint/README.md b/cosmwasm/contracts/v010/mint/README.md index bb2da60eb..41921215e 100644 --- a/cosmwasm/contracts/v010/mint/README.md +++ b/cosmwasm/contracts/v010/mint/README.md @@ -34,7 +34,7 @@ you can customize. ## Create a Repo -After generating, you have a initialized local git repo, but no commits, and no +After generating, you have an initialized local git repo, but no commits, and no remote. Go to a server (eg. github) and create a new upstream repo (called `YOUR-GIT-URL` below). Then run the following: From 32bad18ecbfed810ac8ba032279dc2a9effd74c2 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:41:55 +0100 Subject: [PATCH 09/11] typos README.md --- cosmwasm/contracts/v010/mint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/mint/README.md b/cosmwasm/contracts/v010/mint/README.md index 41921215e..300a42795 100644 --- a/cosmwasm/contracts/v010/mint/README.md +++ b/cosmwasm/contracts/v010/mint/README.md @@ -50,7 +50,7 @@ git push -u origin master ## CI Support We have templates for both github actions and Circle CI in the generated -project, so you can get up an running with CI right away. One note is that the +project, so you can get up a running with CI right away. One note is that the CI runs all `cargo` commands with `--locked` to ensure it uses the exact same versions as you have locally. This also means you must have an up-to-date `Cargo.lock` file, which is not auto-generated. From 7990843ec3ce6fb25656ef99a7a3a83bea61f68f Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:42:23 +0100 Subject: [PATCH 10/11] typos README.md --- cosmwasm/contracts/v010/reflect/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/reflect/README.md b/cosmwasm/contracts/v010/reflect/README.md index bb2da60eb..41921215e 100644 --- a/cosmwasm/contracts/v010/reflect/README.md +++ b/cosmwasm/contracts/v010/reflect/README.md @@ -34,7 +34,7 @@ you can customize. ## Create a Repo -After generating, you have a initialized local git repo, but no commits, and no +After generating, you have an initialized local git repo, but no commits, and no remote. Go to a server (eg. github) and create a new upstream repo (called `YOUR-GIT-URL` below). Then run the following: From 4641558c2247b97f9d5bc9bb710ecddd378d85c5 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 19 Dec 2024 18:42:53 +0100 Subject: [PATCH 11/11] typos README.md --- cosmwasm/contracts/v010/reflect/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmwasm/contracts/v010/reflect/README.md b/cosmwasm/contracts/v010/reflect/README.md index 41921215e..300a42795 100644 --- a/cosmwasm/contracts/v010/reflect/README.md +++ b/cosmwasm/contracts/v010/reflect/README.md @@ -50,7 +50,7 @@ git push -u origin master ## CI Support We have templates for both github actions and Circle CI in the generated -project, so you can get up an running with CI right away. One note is that the +project, so you can get up a running with CI right away. One note is that the CI runs all `cargo` commands with `--locked` to ensure it uses the exact same versions as you have locally. This also means you must have an up-to-date `Cargo.lock` file, which is not auto-generated.