// 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: { methods: { description: 'Retrieves the list of RPC methods that are exposed by the node', params: [], type: 'RpcMethods' } }, types: { RpcMethods: { version: 'u32', methods: 'Vec' } } } as Definitions;