-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcrypto.ts
More file actions
56 lines (53 loc) · 1.45 KB
/
crypto.ts
File metadata and controls
56 lines (53 loc) · 1.45 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
50
51
52
53
54
55
56
export interface CryptoAccountType {
type: string;
label: string;
network: string;
}
export interface ExamplePerson {
fullName: string;
nationality: string;
}
export interface CryptoAsset {
symbol: string;
name: string;
accountTypes: CryptoAccountType[];
examplePerson: ExamplePerson;
}
export const cryptoAssets: CryptoAsset[] = [
{
symbol: 'BTC',
name: 'Bitcoin',
accountTypes: [
{ type: 'SPARK_WALLET', label: 'Wallet', network: 'Spark' },
{ type: 'LIGHTNING', label: 'Lightning', network: 'Lightning' },
],
examplePerson: { fullName: 'Satoshi Tanaka', nationality: 'JP' },
},
{
symbol: 'USDC',
name: 'USD Coin',
accountTypes: [
{ type: 'SOLANA_WALLET', label: 'Wallet', network: 'Solana' },
{ type: 'POLYGON_WALLET', label: 'Wallet', network: 'Polygon' },
{ type: 'BASE_WALLET', label: 'Wallet', network: 'Base' },
{ type: 'ETHEREUM_WALLET', label: 'Wallet', network: 'Ethereum' },
],
examplePerson: { fullName: 'Alex Rivera', nationality: 'US' },
},
{
symbol: 'USDT',
name: 'Tether',
accountTypes: [
{ type: 'TRON_WALLET', label: 'Wallet', network: 'Tron' },
],
examplePerson: { fullName: 'Sam Chen', nationality: 'US' },
},
{
symbol: 'USDB',
name: 'Bitcoin USD',
accountTypes: [
{ type: 'SPARK_WALLET', label: 'Wallet', network: 'Spark' },
],
examplePerson: { fullName: 'Jordan Lee', nationality: 'US' },
},
];