Interface EthereumProviderRpcError

interface EthereumProviderRpcError {
    code: number;
    data?: any;
    message: string;
    name: string;
    stack?: string;
}

Hierarchy

  • Error
    • EthereumProviderRpcError

Properties

code: number
data?: any
message: string
name: string
stack?: string