UNPKG

452 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 { RpcCoderState } from './types';
6
7import encodeObject from './encodeObject';
8
9export default function encodeJson (self: RpcCoderState, method: string, params: Array<any>): string {
10 return JSON.stringify(
11 encodeObject(self, method, params)
12 );
13}