@ily-validator/solc 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +164 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +667 -0
- package/dist/index.js.map +1 -0
- package/package.json +83 -0
package/README.md
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://solc.epics.dev/">
|
|
3
|
+
<img src="https://solc-storage.validators.solutions/ogp.jpg" alt="solc" />
|
|
4
|
+
</a>
|
|
5
|
+
<!-- chore: trigger release workflow via docs-only change -->
|
|
6
|
+
<a href="https://twitter.com/intent/follow?screen_name=solvSolana">
|
|
7
|
+
<img src="https://img.shields.io/twitter/follow/solvSolana.svg?label=Follow%20@solvSolana" alt="Follow @solvSolana" />
|
|
8
|
+
</a>
|
|
9
|
+
<br/>
|
|
10
|
+
<a aria-label="npm version" href="https://www.npmjs.com/package/@ily-validatro/solc">
|
|
11
|
+
<img alt="" src="https://badgen.net/npm/v/@ily-validatro/solc">
|
|
12
|
+
</a>
|
|
13
|
+
<a aria-label="Downloads Number" href="https://www.npmjs.com/package/@ily-validatro/solc">
|
|
14
|
+
<img alt="" src="https://badgen.net/npm/dt/@ily-validatro/solc">
|
|
15
|
+
</a>
|
|
16
|
+
<a aria-label="License" href="https://github.com/EpicsDAO/solc/blob/master/LICENSE.txt">
|
|
17
|
+
<img alt="" src="https://badgen.net/badge/license/Apache/blue">
|
|
18
|
+
</a>
|
|
19
|
+
<a aria-label="Code of Conduct" href="https://github.com/EpicsDAO/solc/blob/master/CODE_OF_CONDUCT.md">
|
|
20
|
+
<img alt="" src="https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg">
|
|
21
|
+
</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
## CLI Tool for Managing Solana Validators - "solc"
|
|
25
|
+
|
|
26
|
+
Documentation: [https://solc.epics.dev/](https://solc.epics.dev/)
|
|
27
|
+
|
|
28
|
+
By using solc, setting up a Solana validator node server becomes much easier. This powerful tool simplifies blockchain operations and allows you to start a Solana validator with just a single command.
|
|
29
|
+
|
|
30
|
+
By eliminating the complexity of setting up and managing a validator, solc opens the door for more individuals to participate in the blockchain network, making the Solana ecosystem more accessible.
|
|
31
|
+
|
|
32
|
+
Whether you're an experienced developer or a blockchain enthusiast venturing into the world of validators, solc provides a solution for simple and fast setup.
|
|
33
|
+
|
|
34
|
+
Dive into the world of Solana, explore the capabilities of solc, and become a part of the blockchain revolution with minimal effort and maximum efficiency.
|
|
35
|
+
|
|
36
|
+
## 📖 Server Spec
|
|
37
|
+
|
|
38
|
+
- Linux Ubuntu 20.04 LTS
|
|
39
|
+
- Linux Ubuntu 22.04 LTS
|
|
40
|
+
- Linux Ubuntu 24.04 LTS
|
|
41
|
+
|
|
42
|
+
## Solana Validator Setup
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
bash -c "$(curl -sSfL "https://solc-storage.validators.solutions/install")"
|
|
46
|
+
cd ~ && source ~/.profile
|
|
47
|
+
solc setup
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
When you run the `solc setup` command, a prompt like the following will appear.
|
|
51
|
+
Select the network, node type, and either RPC type or validator type.
|
|
52
|
+
|
|
53
|
+
Example: For an RPC node
|
|
54
|
+
|
|
55
|
+

|
|
56
|
+
|
|
57
|
+
Example: For a Validator
|
|
58
|
+
|
|
59
|
+

|
|
60
|
+
|
|
61
|
+
For the validator type, you can also set options like commission here.
|
|
62
|
+
|
|
63
|
+
Once the setup is complete, the snapshot download will automatically begin,
|
|
64
|
+
and your Solana validator will start 🎊
|
|
65
|
+
|
|
66
|
+
If the snapshot download doesn't complete, press Ctrl + C to stop,
|
|
67
|
+
and then run the `solc restart --rm` command again.
|
|
68
|
+
|
|
69
|
+
Starting a new Solana validator can take anywhere from several minutes to several hours.
|
|
70
|
+
You can check the logs using the following command:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
solc log
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
or
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
solc m
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
`m` is an alias for the `monitor` command.
|
|
83
|
+
|
|
84
|
+
※`solc monitor` does not work until the snapshot download is complete.
|
|
85
|
+
|
|
86
|
+
## solc setup Options
|
|
87
|
+
|
|
88
|
+
solc setup command has the following options:
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
solc setup --help
|
|
92
|
+
Usage: solc setup [options]
|
|
93
|
+
|
|
94
|
+
Setup Solana Validator
|
|
95
|
+
|
|
96
|
+
Options:
|
|
97
|
+
--vote Setup Vote Account (default: false)
|
|
98
|
+
--key Setup Validator Keypairs (default: false)
|
|
99
|
+
--relayer Setup Jito Relayer (default: false)
|
|
100
|
+
--jupiter Setup Jupiter Swap API (default: false)
|
|
101
|
+
--geyser Setup Geyser (default: false)
|
|
102
|
+
--firedancer Setup Firedancer (default: false)
|
|
103
|
+
--skip-init-config Skip Initial Config (default: false)
|
|
104
|
+
--skip-mount Skip Mount (default: false)
|
|
105
|
+
-h, --help Display help for command
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Update - solc get snapshot v4.6.15
|
|
109
|
+
|
|
110
|
+
Version control for snapshot-finder
|
|
111
|
+
|
|
112
|
+
https://github.com/EpicsDAO/solc/pull/331
|
|
113
|
+
|
|
114
|
+
## Website
|
|
115
|
+
|
|
116
|
+
Validators Solutions: https://validators.solutions
|
|
117
|
+
|
|
118
|
+
Validator DAO: https://dao.validators.solutions
|
|
119
|
+
|
|
120
|
+
elSOL: https://elsol.app/
|
|
121
|
+
|
|
122
|
+
## Solana Token Swap - "solc swap"
|
|
123
|
+
|
|
124
|
+
https://youtu.be/51c7BzvcBjk
|
|
125
|
+
|
|
126
|
+
## elSOL - Solana Liquid Staking Token (LST)
|
|
127
|
+
|
|
128
|
+
✨ The elSOL pool is simple. ✨
|
|
129
|
+
|
|
130
|
+
The elSOL staking pool exclusively includes validators with;
|
|
131
|
+
|
|
132
|
+
✅ - 0% vote commission
|
|
133
|
+
|
|
134
|
+
✅ - 0% Jito MEV commission
|
|
135
|
+
|
|
136
|
+
✅ - 0% pool management fee,
|
|
137
|
+
|
|
138
|
+
thus, elSOL offers higher True APY in long-term staking.
|
|
139
|
+
|
|
140
|
+
website: [https://elsol.app](https://elsol.app)
|
|
141
|
+
|
|
142
|
+
## Enhanced Solana RPC
|
|
143
|
+
|
|
144
|
+
The Enhanced Solana RPC is a high-performance Solana RPC API service that provides a reliable and scalable infrastructure for Solana developers and validators.
|
|
145
|
+
|
|
146
|
+
website: [https://erpc.global](https://erpc.global)
|
|
147
|
+
|
|
148
|
+
## Contributing
|
|
149
|
+
|
|
150
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/EpicsDAO/solc This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
151
|
+
|
|
152
|
+
## Dependencies for Development
|
|
153
|
+
|
|
154
|
+
- pnpm - Package Manager
|
|
155
|
+
- aws-cli - To upload install script to cloud bucket
|
|
156
|
+
- tsup - To build the package
|
|
157
|
+
|
|
158
|
+
## License
|
|
159
|
+
|
|
160
|
+
The package is available as open source under the terms of the [Apache-2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
|
|
161
|
+
|
|
162
|
+
## Code of Conduct
|
|
163
|
+
|
|
164
|
+
Everyone interacting in the solc project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/EpicsDAO/solc/blob/master/CODE_OF_CONDUCT.md).
|