UNPKG

@rarcifa/cronos-evm-client

Version:

A Node.js client library for interacting with the Cronos EVM, facilitating operations on both CRC20 and CRC721 tokens.

12 lines (11 loc) 208 B
export interface JsonRpcResponse<T> { jsonrpc: string; id: number; result?: T; error?: JsonRpcError; } export interface JsonRpcError { code: number; message: string; data?: any; }