childstate
getKeys(childKey: PrefixedStorageKey
, prefix: StorageKey
, at?: Hash
): Vec<StorageKey>
PrefixedStorageKey
, prefix: StorageKey
, at?: Hash
): Vec<StorageKey>
interface:
api.rpc.childstate.getKeys
jsonrpc:
childstate_getKeys
summary: 자식 스토리지에서 접두사가 있는 키를 반환하며, 모든 키를 가져오려면 비워 둡니다.
getKeysPaged(childKey: PrefixedStorageKey
, prefix: StorageKey
, count: u32
, startKey?: StorageKey
, at?: Hash
): Vec<StorageKey>
PrefixedStorageKey
, prefix: StorageKey
, count: u32
, startKey?: StorageKey
, at?: Hash
): Vec<StorageKey>
interface:
api.rpc.childstate.getKeysPaged
jsonrpc:
childstate_getKeysPaged
summary: 페이지네이션 (pagination)이 지원되는 자식 스토리지에서 접두사가 있는 키를 반환합니다.
getStorage(childKey: PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<StorageData>
PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<StorageData>
interface:
api.rpc.childstate.getStorage
jsonrpc:
childstate_getStorage
summary: 특정 블록 상태의 자식 스토리지 항목을 반환합니다.
getStorageEntries(childKey: PrefixedStorageKey
, keys: Vec<StorageKey>
, at?: Hash
): Vec<Option<StorageData>>
PrefixedStorageKey
, keys: Vec<StorageKey>
, at?: Hash
): Vec<Option<StorageData>>
interface:
api.rpc.childstate.getStorageEntries
jsonrpc:
childstate_getStorageEntries
summary: 특정 블록 상태에서 여러 키에 대한 자식 스토리지 항목을 반환합니다.
getStorageHash(childKey: PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<Hash>
PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<Hash>
interface:
api.rpc.childstate.getStorageHash
jsonrpc:
childstate_getStorageHash
summary: 블록 상태의 자식 스토리지 항목 해시를 반환합니다.
getStorageSize(childKey: PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<u64>
PrefixedStorageKey
, key: StorageKey
, at?: Hash
): Option<u64>
interface:
api.rpc.childstate.getStorageSize
jsonrpc:
childstate_getStorageSize
summary: 블록 상태의 자식 스토리지 항목 크기를 반환합니다.
Last updated