UNPKG

@polkadot/jsonrpc

Version:
35 lines (30 loc) 972 B
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _method = _interopRequireDefault(require("./create/method")); // Copyright 2017-2020 @polkadot/jsonrpc authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. // NOTE order here is the same as in Rust, alphabetical below const methods = { description: 'Retrieves the list of RPC methods that are exposed by the node', params: [], type: 'RpcMethods' }; const section = 'rpc'; /** * @summary Calls to retrieve system info. */ var _default = { isDeprecated: false, isHidden: false, description: 'Retrieves information about the RPC endpoints', section, methods: { methods: (0, _method.default)(section, 'methods', methods) } }; exports.default = _default;