mirror of
https://github.com/logos-messaging/logos-delivery-frontend.git
synced 2026-05-19 20:09:25 +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;
|
||
|
|
}
|