File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33This is a simple contract to demonstrate using contracts using IBC messages. The
44first case we build is to simulate the ` reflect ` contract on another chain. That
5- is, you can send a message over IBC to the reflect contract and it will
5+ is, you can send a message over IBC to the ` reflect ` contract, and it will
66"reflect" that message on the remote chain as if it sent it.
77
88This is inspired by
@@ -25,7 +25,7 @@ point), it will create a new `reflect` contract instance. The reflect `code_id`
2525must be set when initializing the factory. This ` reflect ` contract address will
2626be saved and connected to the channel.
2727
28- Once the channel is fully established and the reflect contract instantiated it
28+ Once the channel is fully established and the ` reflect ` contract instantiated it
2929will expect a ` RunTx ` message, which contains ` Vec<CosmosMsg> ` . When this
3030message is received, it will execute it on the ` reflect ` contract, performing
3131the requested action on behalf of the remote user.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ cargo generate --git https://github.com/confio/cosmwasm-template.git --name YOUR
2929```
3030
3131You will now have a new folder called ` YOUR_NAME_HERE ` (I hope you changed that
32- to something else) containing a simple working contract and build system that
32+ to something else) containing a simple working contract and a build system that
3333you can customize.
3434
3535## Create a Repo
@@ -49,7 +49,7 @@ git push -u origin main
4949
5050## CI Support
5151
52- We have templates for both github actions and Circle CI in the generated
52+ We have templates for both GitHub actions and Circle CI in the generated
5353project, so you can get up and running with CI right away. One note is that the
5454CI runs all ` cargo ` commands with ` --locked ` to ensure it uses the exact same
5555versions as you have locally. This also means you must have an up-to-date
You can’t perform that action at this time.
0 commit comments