-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstructure.txt
More file actions
49 lines (49 loc) · 1.59 KB
/
structure.txt
File metadata and controls
49 lines (49 loc) · 1.59 KB
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
binarychain/
├── components/
│ ├── Footer.tsx
│ ├── BlockchainVisualization.tsx
│ ├── Header.tsx
│ ├── Layout.tsx
│ ├── MiningInfo.tsx
│ ├── TransactionList.tsx
│ ├── ConceptCard.tsx
│ └── VisualBreakdown.tsx
├── lib/
│ ├── blockchain.ts
│ ├── block.ts
│ ├── cryptoUtil.ts
│ ├── transaction.ts
│ ├── wallet.ts
│ ├── blockchainInstance.ts
│ ├── walletPersistence.ts
│ ├── prisma.ts
│ └── contract.ts
├── pages/
│ ├── api/
│ │ ├── blockchain/
│ │ │ ├── index.ts
│ │ │ └── receive.ts
│ │ ├── peers/
│ │ │ ├── add.ts
│ │ │ └── list.ts
│ │ └── transaction.ts
│ ├── index.tsx
│ ├── status.tsx
│ ├── mine.tsx
│ ├── transactions.tsx
│ ├── smart-contracts.tsx
│ ├── privacy.tsx
│ ├── about.tsx
│ ├── p2p-network.tsx
│ ├── immutable-records.tsx
│ ├── distributed-ledger.tsx
│ ├── cryptographic.tsx
│ ├── consensus-algorithm.tsx
│ ├── peers.tsx
│ ├── concepts.tsx
│ └── _app.tsx
├── prisma/
│ └── schema.prisma
├── .env
├── package.json
└── README.md