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/docs/03-light-clients/04-wasm/03-integration.md
+9-16Lines changed: 9 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,9 @@ Learn how to integrate the `08-wasm` module in a chain binary and about the reco
14
14
`08-wasm` has no stable releases yet. To use it, you need to import the git commit that contains the module with the compatible versions of `ibc-go` and `wasmvm`. To do so, run the following command with the desired git commit in your project:
15
15
16
16
```sh
17
-
go get github.com/cosmos/ibc-go/modules/light-clients/08-wasm@7ee2a2452b79d0bc8316dc622a1243afa058e8cb
17
+
go get github.com/cosmos/ibc-go/modules/light-clients/08-wasm/v10
18
18
```
19
19
20
-
The following table shows the compatibility matrix between the `08-wasm` module, `ibc-go`, and `wasmvm`.
The sample code below shows the relevant integration points in `app.go` required to set up the `08-wasm` module in a chain binary. Since `08-wasm` is a light client module itself, please check out as well the section [Integrating light clients](../../01-ibc/02-integration.md#integrating-light-clients) for more information:
Copy file name to clipboardExpand all lines: docs/docs/04-middleware/01-callbacks/02-integration.md
+1-10Lines changed: 1 addition & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,19 +21,10 @@ For Cosmos SDK chains this setup is done via the `app/app.go` file, where module
21
21
22
22
## Importing the callbacks middleware
23
23
24
-
The callbacks middleware has no stable releases yet. To use it, you need to import the git commit that contains the module with the compatible version of `ibc-go`. To do so, run the following command with the desired git commit in your project:
25
-
26
24
```sh
27
-
go get github.com/cosmos/ibc-go/modules/apps/callbacks@342c00b0f8bd7feeebf0780f208a820b0faf90d1
25
+
go get github.com/cosmos/ibc-go/modules/apps/callbacks/v10
28
26
```
29
27
30
-
The following table shows the compatibility matrix between the callbacks middleware, `ibc-go`.
## Configuring an application stack with the callbacks middleware
38
29
39
30
As mentioned in [IBC middleware development](../../01-ibc/04-middleware/02-develop.md) an application stack may be composed of many or no middlewares that nest a base application.
0 commit comments