Skip to content

Commit 73a58aa

Browse files
authored
Update repository links from master to main branch (#2143)
* Update INTEGRATION.md * Update Governance.md
1 parent cae1e2a commit 73a58aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

INTEGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ to `bank` and `staking`... more below on [customization](#Adding-Custom-Hooks)).
7474

7575
The requirement here is that you have imported the standard sdk modules
7676
from the Cosmos SDK, and enabled them in `app.go`. If so, you can just look
77-
at [`wasmd/app/app.go`](https://github.com/CosmWasm/wasmd/blob/master/app/app.go#)
77+
at [`wasmd/app/app.go`](https://github.com/CosmWasm/wasmd/blob/master/app/app.go)
7878
for how to do so (just search there for lines with `wasm`).
7979

8080
`wasmd` also comes with 2 custom `ante handlers`:

x/wasm/Governance.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Settings via sdk `params` module:
3030
- `code_upload_access` - who can upload a wasm binary: `Nobody`, `Everybody`, `AnyOfAddresses`
3131
- `instantiate_default_permission` - platform default, who can instantiate a wasm binary when the code owner has not set it
3232

33-
See [params.go](https://github.com/CosmWasm/wasmd/blob/master/x/wasm/types/params.go)
33+
See [params.go](https://github.com/CosmWasm/wasmd/blob/main/x/wasm/types/params.go)
3434

3535
### Init Params Via Genesis
3636

@@ -47,7 +47,7 @@ See [params.go](https://github.com/CosmWasm/wasmd/blob/master/x/wasm/types/param
4747

4848
The values can be updated via gov proposal `MsgUpdateParams`.
4949

50-
### Update Params Via [MsgUpdateParams](https://github.com/CosmWasm/wasmd/blob/v0.41.0/proto/cosmwasm/wasm/v1/tx.proto#L263)
50+
### Update Params Via [MsgUpdateParams](https://github.com/CosmWasm/wasmd/blob/main/proto/cosmwasm/wasm/v1/tx.proto)
5151
Example to submit a parameter change gov proposal:
5252

5353
- First create a draft proposal using the interactive CLI
@@ -165,9 +165,9 @@ wasmd tx gov submit-proposal <proposal-json-file> --from validator --chain-id=te
165165
```
166166

167167
### Tests
168-
* [params validation unit tests](https://github.com/CosmWasm/wasmd/blob/master/x/wasm/types/params_test.go)
169-
* [genesis validation tests](https://github.com/CosmWasm/wasmd/blob/master/x/wasm/types/genesis_test.go)
170-
* [policy integration tests](https://github.com/CosmWasm/wasmd/blob/master/x/wasm/keeper/keeper_test.go)
168+
* [params validation unit tests](https://github.com/CosmWasm/wasmd/blob/main/x/wasm/types/params_test.go)
169+
* [genesis validation tests](https://github.com/CosmWasm/wasmd/blob/main/x/wasm/types/genesis_test.go)
170+
* [policy integration tests](https://github.com/CosmWasm/wasmd/blob/main/x/wasm/keeper/keeper_test.go)
171171

172172
## CLI
173173

0 commit comments

Comments
 (0)