UNPKG

@mobile-wallet-protocol/client

Version:
15 lines (14 loc) 340 B
import { SerializedEthereumRpcError } from '../error'; export type RPCResponse = { result: { value: unknown; } | { error: SerializedEthereumRpcError; }; data?: { chains?: { [key: number]: string; }; capabilities?: Record<`0x${string}`, Record<string, unknown>>; }; };