forked from Uniswap/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-app-env.d.ts
48 lines (41 loc) · 1.34 KB
/
react-app-env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/// <reference types="react-scripts" />
declare module '@metamask/jazzicon' {
export default function (diameter: number, seed: number): HTMLElement
}
interface Window {
GIT_COMMIT_HASH?: string
// walletLinkExtension is injected by the Coinbase Wallet extension
walletLinkExtension?: any
ethereum?: {
// set by the Coinbase Wallet mobile dapp browser
isCoinbaseWallet?: true
// set by the Brave browser when using built-in wallet
isBraveWallet?: true
// set by the MetaMask browser extension (also set by Brave browser when using built-in wallet)
isMetaMask?: true
// set by the Rabby browser extension
isRabby?: true
// set by the Trust Wallet browser extension
isTrustWallet?: true
// set by the Ledger Extension Web 3 browser extension
isLedgerConnect?: true
autoRefreshOnNetworkChange?: boolean
}
web3?: Record<string, unknown>
}
declare module 'content-hash' {
declare function decode(x: string): string
declare function getCodec(x: string): string
}
declare module 'multihashes' {
declare function decode(buff: Uint8Array): { code: number; name: string; length: number; digest: Uint8Array }
declare function toB58String(hash: Uint8Array): string
}
declare module '*.webm' {
const src: string
export default src
}
declare module '*.mov' {
const src: string
export default src
}