UNPKG

@openzeppelin/relayer-sdk

Version:
46 lines (45 loc) 1.27 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { JsonRpcError } from './json-rpc-error'; import type { JsonRpcId } from './json-rpc-id'; import type { JsonRpcResponseNetworkRpcResultResult } from './json-rpc-response-network-rpc-result-result'; /** * JSON-RPC 2.0 Response structure. Represents a JSON-RPC response that can contain either a result or an error. * @export * @interface JsonRpcResponseNetworkRpcResult */ export interface JsonRpcResponseNetworkRpcResult { /** * * @type {JsonRpcError} * @memberof JsonRpcResponseNetworkRpcResult */ 'error'?: JsonRpcError; /** * * @type {JsonRpcId} * @memberof JsonRpcResponseNetworkRpcResult */ 'id'?: JsonRpcId; /** * * @type {string} * @memberof JsonRpcResponseNetworkRpcResult */ 'jsonrpc': string; /** * * @type {JsonRpcResponseNetworkRpcResultResult} * @memberof JsonRpcResponseNetworkRpcResult */ 'result'?: JsonRpcResponseNetworkRpcResultResult; }