Skip to main content
Module

x/capi/mod.ts>known.ChildStateCalls

[WIP] A framework for crafting interactions with Substrate chains
Latest
type alias known.ChildStateCalls
Re-export
import { type known } from "https://deno.land/x/capi@v0.1.1-beta.1/mod.ts";
const { ChildStateCalls } = known;
definition: { childState_getKeys(
childStorageKey: PrefixedStorageKey,
prefix: StorageKey,
hash?: string,
): StorageKey[]; childState_getKeysPaged(
childStorageKey: PrefixedStorageKey,
prefix: StorageKey,
count: number,
startKey?: StorageKey,
hash?: string,
): StorageKey[]; childState_getStorage(
childStorageKey: PrefixedStorageKey,
hash?: string,
): StorageData | null; childState_getStorageEntries(
childStorageKey: PrefixedStorageKey,
keys: StorageKey[],
hash?: string,
): (StorageData | null)[]; childState_getStorageHash(
childStorageKey: PrefixedStorageKey,
hash?: string,
): string | null; childState_getStorageSize(
childStorageKey: PrefixedStorageKey,
hash?: string,
): number | null; state_getChildReadProof(
childStorageKey: PrefixedStorageKey,
keys: StorageKey[],
hash?: string,
): ReadProof; }