UNPKG

@cyberk/hyperion-sdk

Version:

Hyperion SDK from Cyberk

11 lines 388 B
import { getCosmWasmClient } from "../utils/getCosmWasmClient"; export function getCosmWasmClientQueryOptions(options) { return { queryKey: getCosmWasmClientQueryKey(options.rpc), queryFn: () => getCosmWasmClient(options.rpc), }; } export function getCosmWasmClientQueryKey(rpc) { return ["cosmwasmClient", rpc]; } //# sourceMappingURL=getCosmWasmClient.js.map