Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/ibc-reflect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a simple contract to demonstrate using contracts using IBC messages. The
first case we build is to simulate the `reflect` contract on another chain. That
is, you can send a message over IBC to the reflect contract and it will
is, you can send a message over IBC to the `reflect` contract, and it will
"reflect" that message on the remote chain as if it sent it.

This is inspired by
Expand All @@ -25,7 +25,7 @@ point), it will create a new `reflect` contract instance. The reflect `code_id`
must be set when initializing the factory. This `reflect` contract address will
be saved and connected to the channel.

Once the channel is fully established and the reflect contract instantiated it
Once the channel is fully established and the `reflect` contract instantiated it
will expect a `RunTx` message, which contains `Vec<CosmosMsg>`. When this
message is received, it will execute it on the `reflect` contract, performing
the requested action on behalf of the remote user.
Expand Down
4 changes: 2 additions & 2 deletions contracts/reflect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cargo generate --git https://github.com/confio/cosmwasm-template.git --name YOUR
```

You will now have a new folder called `YOUR_NAME_HERE` (I hope you changed that
to something else) containing a simple working contract and build system that
to something else) containing a simple working contract and a build system that
you can customize.

## Create a Repo
Expand All @@ -49,7 +49,7 @@ git push -u origin main

## CI Support

We have templates for both github actions and Circle CI in the generated
We have templates for both GitHub actions and Circle CI in the generated
project, so you can get up and 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
Expand Down