UNPKG

@dfinity/oisy-wallet-signer

Version:

A library designed to facilitate communication between a dApp and the OISY Wallet on the Internet Computer.

8 lines (7 loc) 289 B
import type { RpcResponseError, RpcResponseErrorCode } from './rpc'; export declare class RelyingPartyResponseError extends Error { code: RpcResponseErrorCode; constructor({ message, code }: RpcResponseError); } export declare class RelyingPartyDisconnectedError extends Error { }