-
Notifications
You must be signed in to change notification settings - Fork 6
/
donation.js
66 lines (65 loc) · 1.54 KB
/
donation.js
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
export const orgDonation = [
{
type: 'donation',
image: '/donation/ether.svg',
description: `The Ethereum Foundation (EF) is a non-profit organization dedicated to supporting Ethereum and related technologies.`,
title: 'Ethereum Foundation',
website: 'https://ethereum.org/',
twitter: 'https://twitter.com/ethdotorg',
donation: 10,
},
]
export const personDonation = [
{
type: 'donation',
image: '/donation/harry.png',
description: 'professor / entrepreneur / maker',
title: 'Harry',
twitter: 'https://twitter.com/harryjwang',
donation: 0.042,
},
{
type: 'donation',
image: '/donation/su.jpeg',
description: '良心家人',
title: 'su007.eth',
twitter: 'https://twitter.com/wutaner',
donation: 0.02,
},
{
type: 'donation',
image: '/donation/dinglun.png',
title: 'dinglun',
twitter: 'https://twitter.com/dinglunnft',
donation: 0.02,
},
{
type: 'donation',
image: '/donation/0xflipping.jpg',
title: '0xflipping',
description: 'WAGMI',
twitter: 'https://twitter.com/zxxkill',
donation: 0.01,
},
{
type: 'donation',
image: '/donation/8757.png',
title: '8757.eth',
description: '加密兔',
website: 'https://mirror.xyz/cryptorabit.eth',
twitter: 'https://twitter.com/jiashu211',
donation: 0.01,
},
{
type: 'donation',
image: '/donation/uniwarp.png',
title: 'Uniwarp',
description: 'The multiverse where no unicorn has gone before.',
website: 'https://opensea.io/collection/uniwarp',
twitter: 'https://twitter.com/uniwarp_',
donation: 0.01,
},
{
type: 'instruction',
},
]