-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathfooter.js
More file actions
118 lines (118 loc) · 2.65 KB
/
Copy pathfooter.js
File metadata and controls
118 lines (118 loc) · 2.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
module.exports = [
{
title: 'About',
items: [
{
label: 'Jobs and Vacancy',
href: 'https://github.com/everscale-org/job/issues',
},
{
label: 'White Paper',
href: 'https://everscale.network/files/Everscale_Whitepaper.pdf',
},
{
label: 'Lite Paper',
href: 'https://everscale.network/files/Everscale_Litepaper.pdf',
},
{
label: 'Digest',
href: 'https://www.youtube.com/@everscale.network/search?query=Digest',
},
{
label: 'Visual Brand Identity',
href: 'https://everscale.network/about/brand',
},
],
},
{
title: 'Community',
items: [
{
label: 'Grants',
href: 'https://everscale.network/grants',
},
{
label: 'Bounties',
href: 'https://github.com/everscale-org/bounties/issues',
},
{
label: 'Smart Contracts Chat',
href: 'https://t.me/EverscaleSmartContracts',
},
{
label: 'Everscale Validators Channel',
href: 'https://t.me/ever_validators',
},
{
label: 'DeBots Chat',
href: 'https://t.me/everscaledebots',
},
{
label: 'SDK Chat',
href: 'https://t.me/ever_sdk',
},
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/everscale',
},
],
},
{
title: 'Workshop',
items: [
{
label: 'Crash Course',
href: 'https://everscale.guide/',
},
{
label: 'EverDev Tutorial',
to: '/develop/smart-contracts/',
},
{
label: 'Smart contract architecture',
href: 'https://youtu.be/XKMnroPWXek',
},
{
label: 'Smart contract development',
href: 'https://youtu.be/YBIaFeaksMY',
},
{
label: 'Development of DeBots',
href: 'https://youtu.be/vFAatJO6cBM',
},
],
},
{
title: 'More',
items: [
{
label: 'Sample smart-contracts',
href: 'https://github.com/tonlabs/samples',
},
{
label: 'Sample SDK',
href: 'https://github.com/tonlabs/sdk-samples',
},
{
label: 'Solidity API',
href: 'https://github.com/tonlabs/TON-Solidity-Compiler/blob/master/API.md',
},
{
label: 'ABI Specification',
href: '/spec/abi/',
},
{
label: 'NFT',
to: '/standard/TIP-4/',
},
{
label: 'CLI',
href: 'https://github.com/tonlabs/tonos-cli',
},
{
label: 'SDK',
href: 'https://docs.everos.dev/ever-sdk/',
},
],
},
]