-
Notifications
You must be signed in to change notification settings - Fork 394
/
Copy pathdefaults.ts
40 lines (37 loc) · 1.72 KB
/
defaults.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
import { ETHEREUM, MINUTE, USD } from "../../constants"
import { storageGatewayURL } from "../../lib/storage-gateway"
export const DEFAULT_AUTOLOCK_INTERVAL = 60 * MINUTE
const defaultPreferences = {
tokenLists: {
autoUpdate: false,
urls: [
storageGatewayURL(
"ipfs://bafybeihufwj43zej34itf66qyguq35k4f6s4ual4uk3iy643wn3xnff2ka",
).href, // the Taho community-curated list
"https://gateway.ipfs.io/ipns/tokens.uniswap.org", // the Uniswap default list
"https://messari.io/tokenlist/messari-verified", // Messari-verified projects
"https://wrapped.tokensoft.eth.limo", // Wrapped tokens
"https://tokenlist.aave.eth.limo", // Aave-listed tokens and interest-bearing assets
"https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json", // Compound-listed tokens and interest-bearing assets
"https://api-polygon-tokens.polygon.technology/tokenlists/default.tokenlist.json", // Polygon Default Tokens
"https://static.optimism.io/optimism.tokenlist.json", // Optimism Default Tokens
"https://bridge.arbitrum.io/token-list-42161.json", // Arbitrum Default tokens
"https://raw.githubusercontent.com/traderjoe-xyz/joe-tokenlists/1722d8c47a728a64c8dca8ac160b32cf39c5e671/mc.tokenlist.json", // Trader Joe tokens
"https://tokens.pancakeswap.finance/pancakeswap-default.json", // PancakeSwap Default List
],
},
currency: USD,
defaultWallet: false,
selectedAccount: {
address: "",
network: ETHEREUM,
},
accountSignersSettings: [],
analytics: {
isEnabled: false,
hasDefaultOnBeenTurnedOn: false,
},
autoLockInterval: DEFAULT_AUTOLOCK_INTERVAL,
shouldShowNotifications: false,
}
export default defaultPreferences