File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -271,12 +271,12 @@ pub struct Region {
271
271
272
272
## Implementing the Smart Contract
273
273
274
- If you followed the [ instructions above] ( #Creating ) , you should have a runable
275
- smart contract. You may notice that all of the Wasm exports are taken care of by
276
- ` lib.rs ` , which you shouldn't need to modify. What you need to do is simply look
277
- in ` contract.rs ` and implement ` instantiate ` and ` execute ` functions, defining
278
- your custom ` InstantiateMsg ` and ` ExecuteMsg ` structs for parsing your custom
279
- message types (as json):
274
+ If you followed the [ instructions above] ( #Creating-a-smart-contract ) , you should
275
+ have a runable smart contract. You may notice that all of the Wasm exports are
276
+ taken care of by ` lib.rs ` , which you shouldn't need to modify. What you need to
277
+ do is simply look in ` contract.rs ` and implement ` instantiate ` and ` execute `
278
+ functions, defining your custom ` InstantiateMsg ` and ` ExecuteMsg ` structs for
279
+ parsing your custom message types (as json):
280
280
281
281
``` rust
282
282
#[entry_point]
You can’t perform that action at this time.
0 commit comments