-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix 08-wasm light client documentation #5439
Merged
crodriguezvega
merged 6 commits into
cosmos:main
from
Reecepbcups:reece/wasm-doc-tweaks
Dec 19, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a1ffefc
tweaks per Juno's integration
Reecepbcups d771f93
add `RegisterUpgradeHandlers` requirement
Reecepbcups da8327b
Merge branch 'main' into reece/wasm-doc-tweaks
damiannolan 660012a
code alignment
crodriguezvega fd3477b
review comment
crodriguezvega ddaca75
remove v7 comments
crodriguezvega File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ The sample code below shows the relevant integration points in `app.go` required | |
import ( | ||
... | ||
"github.com/cosmos/cosmos-sdk/runtime" | ||
|
||
cmtos "github.com/cometbft/cometbft/libs/os" | ||
|
||
wasm "github.com/cosmos/ibc-go/modules/light-clients/08-wasm" | ||
|
@@ -55,7 +55,7 @@ func NewSimApp( | |
keys := sdk.NewKVStoreKeys( | ||
... | ||
wasmtypes.StoreKey, | ||
) | ||
) | ||
|
||
// Instantiate 08-wasm's keeper | ||
// This sample code uses a constructor function that | ||
|
@@ -70,22 +70,22 @@ func NewSimApp( | |
authtypes.NewModuleAddress(govtypes.ModuleName).String(), | ||
wasmVM, | ||
app.GRPCQueryRouter(), | ||
) | ||
) | ||
app.ModuleManager = module.NewManager( | ||
// SDK app modules | ||
... | ||
wasm.NewAppModule(app.WasmClientKeeper), | ||
) | ||
) | ||
app.ModuleManager.SetOrderBeginBlockers( | ||
... | ||
wasmtypes.ModuleName, | ||
... | ||
) | ||
) | ||
app.ModuleManager.SetOrderEndBlockers( | ||
... | ||
wasmtypes.ModuleName, | ||
... | ||
) | ||
) | ||
genesisModuleOrder := []string{ | ||
... | ||
wasmtypes.ModuleName, | ||
|
@@ -95,7 +95,7 @@ func NewSimApp( | |
app.ModuleManager.SetOrderExportGenesis(genesisModuleOrder...) | ||
... | ||
|
||
// initialize BaseApp | ||
// initialize BaseApp | ||
app.SetInitChainer(app.InitChainer) | ||
... | ||
|
||
|
@@ -145,7 +145,7 @@ The code to set this up would look something like this: | |
import ( | ||
... | ||
"github.com/cosmos/cosmos-sdk/runtime" | ||
|
||
wasmvm "github.com/CosmWasm/wasmvm" | ||
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" | ||
... | ||
|
@@ -155,10 +155,10 @@ import ( | |
|
||
// instantiate the Wasm VM with the chosen parameters | ||
wasmer, err := wasmvm.NewVM( | ||
dataDir, | ||
availableCapabilities, | ||
contractMemoryLimit, | ||
contractDebugMode, | ||
dataDir, | ||
availableCapabilities, | ||
contractMemoryLimit, // default of 32 | ||
contractDebugMode, | ||
memoryCacheSize, | ||
) | ||
if err != nil { | ||
|
@@ -238,7 +238,7 @@ wasmConfig := wasmtypes.WasmConfig{ | |
app.WasmClientKeeper = wasmkeeper.NewKeeperWithConfig( | ||
appCodec, | ||
runtime.NewKVStoreService(keys[wasmtypes.StoreKey]), | ||
app.IBCKeeper.ClientKeeper, | ||
app.IBCKeeper.ClientKeeper, | ||
authtypes.NewModuleAddress(govtypes.ModuleName).String(), | ||
wasmConfig, | ||
app.GRPCQueryRouter(), | ||
|
@@ -276,7 +276,7 @@ You may leave any of the fields in the `QueryPlugins` object as `nil` if you do | |
Then, we pass the `QueryPlugins` object to the `WithQueryPlugins` option: | ||
|
||
```go | ||
querierOption := ibcwasmtypes.WithQueryPlugins(queryPlugins) | ||
querierOption := ibcwasmkeeper.WithQueryPlugins(&queryPlugins) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. looks like this reference is required for both v7 & v8 |
||
``` | ||
|
||
Finally, we pass the option to the `NewKeeperWithConfig` or `NewKeeperWithVM` constructor function during [Keeper instantiation](#keeper-instantiation): | ||
|
@@ -285,7 +285,7 @@ Finally, we pass the option to the `NewKeeperWithConfig` or `NewKeeperWithVM` co | |
app.WasmClientKeeper = wasmkeeper.NewKeeperWithConfig( | ||
appCodec, | ||
runtime.NewKVStoreService(keys[wasmtypes.StoreKey]), | ||
app.IBCKeeper.ClientKeeper, | ||
app.IBCKeeper.ClientKeeper, | ||
authtypes.NewModuleAddress(govtypes.ModuleName).String(), | ||
wasmConfig, | ||
app.GRPCQueryRouter(), | ||
|
@@ -337,6 +337,28 @@ func CreateWasmUpgradeHandler( | |
|
||
Or alternatively the parameter can be updated via a governance proposal (see at the bottom of section [`Creating clients`](../01-developer-guide/09-setup.md#creating-clients) for an example of how to do this). | ||
|
||
## Adding the module to the store | ||
|
||
As part of the upgrade migration you must also add the module to the upgrades store. | ||
|
||
```go | ||
func (app SimApp) RegisterUpgradeHandlers() { | ||
|
||
... | ||
|
||
if upgradeInfo.Name == UpgradeName && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { | ||
storeUpgrades := storetypes.StoreUpgrades{ | ||
Added: []string{ | ||
ibcwasmtypes.ModuleName, | ||
}, | ||
} | ||
|
||
// configure store loader that checks if version == upgradeHeight and applies store upgrades | ||
app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades)) | ||
} | ||
} | ||
``` | ||
|
||
## Adding snapshot support | ||
|
||
In order to use the `08-wasm` module chains are required to register the `WasmSnapshotter` extension in the snapshot manager. This snapshotter takes care of persisting the external state, in the form of contract code, of the Wasm VM instance to disk when the chain is snapshotted. [This code](https://github.com/cosmos/ibc-go/blob/2bd29c08fd1fe50b461fc33a25735aa792dc896e/modules/light-clients/08-wasm/testing/simapp/app.go#L768-L776) should be placed in `NewSimApp` function in `app.go`. | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wasmvm does not expose this in any way, just a nice to have to let others know the default