UNPKG

473 BPlain TextView Raw
1// Copyright 2017-2018 @polkadot/api-provider authors & contributors
2// This software may be modified and distributed under the terms
3// of the ISC license. See the LICENSE file for details.
4
5import { JsonRpcRequest } from '../../types';
6import { RpcCoderState } from './types';
7
8export default function encodeObject (self: RpcCoderState, method: string, params: Array<any>): JsonRpcRequest {
9 return {
10 id: ++self.id,
11 jsonrpc: '2.0',
12 method,
13 params
14 };
15}