-
Notifications
You must be signed in to change notification settings - Fork 28
/
global-wallets-env.d.ts
43 lines (42 loc) · 1.21 KB
/
global-wallets-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
export {};
declare global {
interface Window {
// Some dependencies can override global environments, so maybe we needed to make some changes to make them compatible.
// This should be optional to `provider-solfare` can be compiled. see: `@solflare-wallet/metamask-sdk/lib/cjs/types.d.ts(74,18)`
ethereum?: any;
braveSolana?: any;
BinanceChain?: any;
clover?: any;
clover_solana?: any;
cosmostation?: any;
exodus?: any;
solana?: any;
phantom?: any;
xfi?: any;
coinbaseWalletExtension?: any;
coinbaseSolana?: any;
coin98?: any;
keplr?: any;
isSafePal?: any;
safepal?: any;
safepalProvider?: any;
trustwallet?: any;
okxwallet?: any;
starknet_argentX?: any;
starknet_braavos?: any;
tronLink?: any;
kucoin?: any;
leap?: any;
frontier?: any;
// This is for Station provider, `@terra-money/wallet-controller` adds this property to window automatically.
// file: node_modules/@terra-money/wallet-controller/modules/extension-router/multiChannel.d.ts
// terraWallets: any;
enkrypt?: any;
tally?: any;
bitkeep?: any;
mytonwallet?: any;
offlineSigner?: any;
tomo_evm?: any;
solflare?: any;
}
}