-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #279 from EpicsDAO/feature
update - solv update --migrate-config
- Loading branch information
Showing
7 changed files
with
103 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
'@epics-dao/solv': patch | ||
--- | ||
|
||
Update - solv update --migrate-config | ||
|
||
## Summary | ||
|
||
This PR adds a new command `solv update --migrate-config` to migrate the old config file to the new config file. | ||
|
||
`solv.config.json` to `solv4.config.json` | ||
|
||
You can migrate the old config file to the new config file by running the following command: | ||
|
||
```bash | ||
solv update --migrate-config | ||
``` | ||
|
||
## Config Update Command | ||
|
||
This command will update the config file to the latest version. | ||
|
||
```bash | ||
solv update --config | ||
``` | ||
|
||
## solv Discord Channel is now migrated to Validators DAO's Discord | ||
|
||
Due to the increasing number of users, the solv Discord channel has been migrated to Validators DAO's Discord. | ||
|
||
Now this community is more focused on Solana Validators and RPC Operators. | ||
|
||
Validators DAO: https://discord.gg/8dhnZnvzuw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import chalk from 'chalk' | ||
|
||
const rpcLog = () => { | ||
const lighting = `${chalk.yellow('⚡️⚡️⚡️')}` | ||
const msg = `${chalk.blueBright(`${lighting} Solana Private RPC Connection API Key ${lighting}`)} | ||
We're excited to offer a free API key exclusively for the Validators DAO community 🎉 | ||
It's our way of supporting the community and empowering you with fast, reliable connections. | ||
To get your free API key, simply join us through the link below: | ||
Validators DAO: ${chalk.white('`https://discord.gg/X4BgkBHavp`')} | ||
Unlock fast connections and elevate your experience with your very own API key 🚀 | ||
` | ||
console.log(chalk.cyan(msg)) | ||
} | ||
|
||
export default rpcLog |