-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.tree
73 lines (73 loc) · 2.01 KB
/
new.tree
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
├── .DS_Store
├── .eslintrc.json
├── .gitignore
│ └── _
│ ├── .gitignore
│ ├── applypatch-msg
│ ├── commit-msg
│ ├── h
│ ├── husky.sh
│ ├── post-applypatch
│ ├── post-checkout
│ ├── post-commit
│ ├── post-merge
│ ├── post-rewrite
│ ├── pre-applypatch
│ ├── pre-auto-gc
│ ├── pre-commit
│ ├── pre-push
│ ├── pre-rebase
│ └── prepare-commit-msg
├── design-tyche.jpg
├── LICENSE
├── new.tree
├── next-env.d.ts
├── next.config.mjs
├── package.json
├── pnpm-lock.yaml
├── postcss.config.mjs
├── prependFileName.js
├── public
│ ├── .DS_Store
│ ├── aave.png
│ ├── compound.png
│ ├── ethereum.png
│ ├── işlem geçmişi.png
│ ├── Merkeziyetsiz Uygulama.png
│ ├── sushiswap.png
│ ├── tyche.png
│ └── uniswap.png
├── README.md
├── src
│ ├── .DS_Store
│ ├── app
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ └── layout.tsx
│ ├── components
│ │ ├── Dapps.tsx
│ │ ├── Footer.tsx
│ │ ├── GeneralSettings.tsx
│ │ ├── Header.tsx
│ │ ├── Modal.tsx
│ │ ├── NetworkDropdown.tsx
│ │ ├── Portfolio.tsx
│ │ ├── SaveWalletModal.tsx
│ │ ├── SearchBar.tsx
│ │ ├── Settings.tsx
│ │ ├── SettingsModal.tsx
│ │ ├── TxHistory.tsx
│ │ └── WalletAddresses.tsx
│ ├── contexts
│ │ └── AppContext.tsx
│ ├── helpers
│ │ └── storage.ts
│ ├── pages
│ │ ├── _app.tsx
│ │ ├── [address].tsx
│ │ └── index.tsx
│ ├── services
│ └── styles
│ └── globals.css
├── tailwind.config.ts
└── tsconfig.json