We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22b96eb commit e55ef02Copy full SHA for e55ef02
x/wasm/keeper/ibc.go
@@ -24,7 +24,8 @@ func ContractFromPortID(portID string) (sdk.AccAddress, error) {
24
return sdk.AccAddressFromBech32(portID[len(portIDPrefix):])
25
}
26
27
-const portIDPrefixV2 = "wasmV2"
+// The port prefix refers to "CosmWasm over IBC v2" and ensures packets are routed to the right entry points
28
+const portIDPrefixV2 = "wasm2"
29
30
func PortIDForContractV2(addr sdk.AccAddress) string {
31
return portIDPrefixV2 + addr.String()
0 commit comments