Copyright | Alexander Krupenkin 2016 |
---|---|
License | BSD3 |
Maintainer | mail@akru.me |
Stability | experimental |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
Polkadot RPC methods with childstate
prefix.
Synopsis
- getKeys :: JsonRpc m => HexString -> HexString -> Maybe HexString -> m [HexString]
- getStorage :: JsonRpc m => HexString -> HexString -> Maybe HexString -> m (Maybe HexString)
- getStorageHash :: JsonRpc m => HexString -> HexString -> Maybe HexString -> m (Maybe HexString)
- getStorageSize :: JsonRpc m => HexString -> HexString -> Maybe HexString -> m (Maybe Int)
Documentation
:: 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.
:: 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.