UNPKG

@hashgraph/hedera-wallet-connect

Version:

A library to facilitate integrating Hedera with WalletConnect

10 lines (9 loc) 325 B
import { SignClientTypes } from '@walletconnect/types'; export interface EthFilter { address?: string; topics?: Array<string | null>; fromBlock?: string; toBlock?: string; blockHash?: string; } export type WalletRequestEventArgs = Omit<SignClientTypes.EventArguments['session_request'], 'verifyContext'>;