web3-0.9.1.0: Web3 API for Haskell.

CopyrightAlexander Krupenkin 2016
LicenseBSD3
Maintainermail@akru.me
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Network.Polkadot.Api.Childstate

Description

Polkadot RPC methods with childstate prefix.

Synopsis

Documentation

getKeys Source #

Arguments

:: JsonRpc m 
=> HexString

Prefixed storage key

-> HexString

Storage key

-> Maybe HexString

Block hash

-> m [HexString] 

Returns the keys with prefix from a child storage, leave empty to get all the keys.

getStorage Source #

Arguments

:: JsonRpc m 
=> HexString

Prefixed storage key

-> HexString

Storage key

-> Maybe HexString

Block hash

-> m (Maybe HexString) 

Returns a child storage entry at a specific block state.

getStorageHash Source #

Arguments

:: JsonRpc m 
=> HexString

Prefixed storage key

-> HexString

Storage key

-> Maybe HexString

Block hash

-> m (Maybe HexString) 

Returns the hash of a child storage entry at a block state

getStorageSize Source #

Arguments

:: JsonRpc m 
=> HexString

Prefixed storage key

-> HexString

Storage key

-> Maybe HexString

Block hash

-> m (Maybe Int) 

Returns the size of a child storage entry at a block state.