// Copyright 2017-2021 @polkadot/types authors & contributors // SPDX-License-Identifier: Apache-2.0 // order important in structs... :) /* eslint-disable sort-keys */ import type { Definitions } from '../../types'; export default { rpc: { call: { alias: ['state_callAt'], description: 'Perform a call to a builtin on the chain', params: [ { name: 'method', type: 'Text' }, { name: 'data', type: 'Bytes' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Bytes' }, getKeys: { description: 'Retrieves the keys with a certain prefix', params: [ { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Vec' }, getPairs: { description: 'Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)', params: [ { name: 'prefix', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Vec' }, getKeysPaged: { alias: ['state_getKeysPagedAt'], description: 'Returns the keys with prefix with pagination support.', params: [ { name: 'key', type: 'StorageKey' }, { name: 'count', type: 'u32' }, { name: 'startKey', type: 'StorageKey', isOptional: true }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Vec' }, getStorage: { alias: ['state_getStorageAt'], description: 'Retrieves the storage for a key', params: [ { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'StorageData' }, getStorageHash: { alias: ['state_getStorageHashAt'], description: 'Retrieves the storage hash', params: [ { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Hash' }, getStorageSize: { alias: ['state_getStorageSizeAt'], description: 'Retrieves the storage size', params: [ { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'u64' }, getChildKeys: { description: 'Retrieves the keys with prefix of a specific child storage', params: [ { name: 'childStorageKey', type: 'StorageKey' }, { name: 'childDefinition', type: 'StorageKey' }, { name: 'childType', type: 'u32' }, { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Vec' }, getChildStorage: { description: 'Retrieves the child storage for a key', params: [ { name: 'childStorageKey', type: 'StorageKey' }, { name: 'childDefinition', type: 'StorageKey' }, { name: 'childType', type: 'u32' }, { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'StorageData' }, getChildStorageHash: { description: 'Retrieves the child storage hash', params: [ { name: 'childStorageKey', type: 'StorageKey' }, { name: 'childDefinition', type: 'StorageKey' }, { name: 'childType', type: 'u32' }, { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Hash' }, getChildStorageSize: { description: 'Retrieves the child storage size', params: [ { name: 'childStorageKey', type: 'StorageKey' }, { name: 'childDefinition', type: 'StorageKey' }, { name: 'childType', type: 'u32' }, { name: 'key', type: 'StorageKey' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'u64' }, getMetadata: { description: 'Returns the runtime metadata', params: [ { name: 'at', type: 'BlockHash', isCached: true, isOptional: true } ], type: 'Metadata' }, getRuntimeVersion: { alias: ['chain_getRuntimeVersion'], description: 'Get the runtime version', params: [ { name: 'at', type: 'BlockHash', isCached: true, isOptional: true } ], type: 'RuntimeVersion' }, queryStorage: { description: 'Query historical storage entries (by key) starting from a start block', params: [ { name: 'keys', type: 'Vec' }, { name: 'fromBlock', type: 'Hash' }, { name: 'toBlock', type: 'BlockHash', isOptional: true } ], type: 'Vec' }, queryStorageAt: { description: 'Query storage entries (by key) starting at block hash given as the second parameter', params: [ { name: 'keys', type: 'Vec' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'Vec' }, getReadProof: { description: 'Returns proof of storage entries at a specific block state', params: [ { name: 'keys', type: 'Vec' }, { name: 'at', type: 'BlockHash', isHistoric: true, isOptional: true } ], type: 'ReadProof' }, subscribeRuntimeVersion: { alias: ['chain_subscribeRuntimeVersion', 'chain_unsubscribeRuntimeVersion'], description: 'Retrieves the runtime version via subscription', params: [], pubsub: [ 'runtimeVersion', 'subscribeRuntimeVersion', 'unsubscribeRuntimeVersion' ], type: 'RuntimeVersion' }, subscribeStorage: { description: 'Subscribes to storage changes for the provided keys', params: [ { name: 'keys', type: 'Vec', isOptional: true } ], pubsub: [ 'storage', 'subscribeStorage', 'unsubscribeStorage' ], type: 'StorageChangeSet' } }, types: { ApiId: '[u8; 8]', KeyValueOption: '(StorageKey, Option)', ReadProof: { at: 'Hash', proof: 'Vec' }, RuntimeVersionApi: '(ApiId, u32)', RuntimeVersion: { specName: 'Text', implName: 'Text', authoringVersion: 'u32', specVersion: 'u32', implVersion: 'u32', apis: 'Vec', transactionVersion: 'u32' }, StorageChangeSet: { block: 'Hash', changes: 'Vec' } } } as Definitions;