Files
wasmd/app/wasm.go
Simon Warta cec66aeb79 Add BuiltInCapabilities() to x/wasm/keeper and deprecate AllCapabilities() (#1855)
* Add BuiltInCapabilities() to x/wasm/keeper and deprecate AllCapabilities()

* Replace usage with new wasmkeeper.BuiltInCapabilities()
2024-04-12 15:36:26 +02:00

11 lines
240 B
Go

package app
import (
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
)
// Deprecated: Use BuiltInCapabilities from github.com/CosmWasm/wasmd/x/wasm/keeper
func AllCapabilities() []string {
return wasmkeeper.BuiltInCapabilities()
}