mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-05 06:13:11 +00:00
15 lines
377 B
TypeScript
15 lines
377 B
TypeScript
|
|
/// <reference types="react-scripts" />
|
||
|
|
|
||
|
|
type EthereumEvents = "accountsChanged" | "chainChanged";
|
||
|
|
type EthereumEventListener = (v: any) => void;
|
||
|
|
|
||
|
|
type Ethereum = {
|
||
|
|
request: () => void;
|
||
|
|
on: (name: EthereumEvents, fn: EthereumEventListener) => void;
|
||
|
|
removeListener: (name: EthereumEvents, fn: EthereumEventListener) => void;
|
||
|
|
};
|
||
|
|
|
||
|
|
interface Window {
|
||
|
|
ethereum: Ethereum;
|
||
|
|
}
|