Skip to content
Open
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 x/meshsecurity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Projects that want to integrate the meshsecurity module onto their Cosmos SDK ch
- [x/staking](https://github.com/cosmos/cosmos-sdk/tree/main/x/staking)
- [x/auth](https://github.com/cosmos/cosmos-sdk/tree/main/x/auth)
- [x/bank](https://github.com/cosmos/cosmos-sdk/tree/main/x/bank)
- [x/wasm](github.com/CosmWasm/wasmd/x/wasm)
- [x/wasm](https://github.com/CosmWasm/wasmd/tree/main/x/wasm)

## Configuring and Adding Module
1. Add the mesh security package to the go.mod and install it.
Expand Down Expand Up @@ -149,4 +149,4 @@ Projects that want to integrate the meshsecurity module onto their Cosmos SDK ch
// add support for the mesh-security queries
wasmkeeper.WithQueryHandlerDecorator(meshseckeeper.NewQueryDecorator(app.MeshSecKeeper, app.SlashingKeeper)),
)
```
```
4 changes: 2 additions & 2 deletions x/meshsecurityprovider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Projects that want to integrate the meshsecurityprovider module onto their Cosmo
- [x/staking](https://github.com/cosmos/cosmos-sdk/tree/main/x/staking)
- [x/auth](https://github.com/cosmos/cosmos-sdk/tree/main/x/auth)
- [x/bank](https://github.com/cosmos/cosmos-sdk/tree/main/x/bank)
- [x/wasm](github.com/CosmWasm/wasmd/x/wasm)
- [x/wasm](https://github.com/CosmWasm/wasmd/tree/main/x/wasm)

## Configuring and Adding Module
1. Add the mesh security package to the go.mod and install it.
Expand Down Expand Up @@ -108,4 +108,4 @@ Projects that want to integrate the meshsecurityprovider module onto their Cosmo
)
})
wasmOpts = append(wasmOpts, meshMessageHandler)
```
```
4 changes: 2 additions & 2 deletions x/setup_mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This document describes about how to deploy and setup mesh security for cosmos chains

## Consumer chain
1. Integrate `meshsecurity` module by this [guide](./x/meshsecurity/README.md).
1. Integrate `meshsecurity` module by this [guide](./meshsecurity/README.md).
2. Deploy price feed contract:
- Store code file `mesh_simple_price_feed.wasm`
- Instantiate contract with parameters: `{"native_per_foreign": $token_ratio}`
Expand All @@ -21,7 +21,7 @@ type MsgSetVirtualStakingMaxCap struct {
}
```
## Provider chain
1. Integrate `meshsecurityprovider` module by this [guide](./x/meshsecurityprovider/README.md).
1. Integrate `meshsecurityprovider` module by this [guide](./meshsecurityprovider/README.md).
2. Store contract codes:
- `mesh_vault.wasm`
- `mesh_native_staking_proxy.wasm`
Expand Down