@polkadot/jsonrpc
Version:
Method definitions for the Polkadot RPC layer
23 lines (20 loc) • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = createParam;
// 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.
/** @internal */
function createParam(name, type, {
isOptional = false
} = {
isOptional: false
}) {
return {
isOptional,
name,
type
};
}