diff --git a/.changeset/funny-flies-lie.md b/.changeset/funny-flies-lie.md new file mode 100644 index 0000000..a824842 --- /dev/null +++ b/.changeset/funny-flies-lie.md @@ -0,0 +1,52 @@ +--- +'@epics-dao/solv': patch +--- + +Update Solana Testnet Version v2.0.10 + +If you are using solv MEV mode, ignore this step, It will be automatically updated. + +If you are NOT using solv MEV mode, you need to update with the following command: + +```bash +$ solv update && solv update -b +``` + +## How to use solv mev mode? + +Run the following command: + +```bash +$ solv mev +? Do you want to enable solv MEV Mode?(You can change it again) (y/N) +? Do you want to enable AUTO UPDATE? (Recommended) (y/N) +? Do you want to enable AUTO RESTART? (Recommended) (y/N) +※ Please turn off if you are using no-downtime migration. +? Enter your Discord Webhook URL (https://discord.com/api/webhooks/1234) +``` + +1. Enable solv MEV Mode. +2. Enable AUTO UPDATE. +3. Enable AUTO RESTART. + ※ Please turn off if you are using no-downtime migration. + ※ No-downtime migration requires spare server and manual restart. +4. Enter your Discord Webhook URL. + ※ You can receive notifications about the Solana/solv version update. +5. Enter RPC URL (Mainnet Only) +6. Enter Harvest Account (Mainnet Only) + +## How to disable solv mev mode? + +Run the following command: + +```bash +$ solv mev +? Do you want to enable solv MEV Mode?(You can change it again) (y/N) n +✅ Cron Job successfully removed. +``` + +## Validator Auto Operation Service + +We are providing a validator auto-operation service for those who want to operate a validator without any hassle. + +Validators DAO Discord: diff --git a/packages/solv/src/config/config.ts b/packages/solv/src/config/config.ts index e57f0b3..3dfe332 100644 --- a/packages/solv/src/config/config.ts +++ b/packages/solv/src/config/config.ts @@ -54,7 +54,7 @@ export enum MAINNET_TYPES { // ⚠️ Please DO NOT forget to turn this to false if restart is not needed export const NODE_RESTART_REQUIRED_MAINNET = false -export const NODE_RESTART_REQUIRED_TESTNET = false +export const NODE_RESTART_REQUIRED_TESTNET = true export type CONFIG_TYPE = { ID: string diff --git a/packages/solv/src/config/versionConfig.ts b/packages/solv/src/config/versionConfig.ts index 87f60ff..719e775 100644 --- a/packages/solv/src/config/versionConfig.ts +++ b/packages/solv/src/config/versionConfig.ts @@ -1,9 +1,9 @@ -export const VERSION_TESTNET = '2.0.9' +export const VERSION_TESTNET = '2.0.10' export const VERSION_MAINNET = '1.18.23' -export const VERSION_JITO_TESTNET = '2.0.9' +export const VERSION_JITO_TESTNET = '2.0.10' export const VERSION_JITO_MAINNET = '1.18.23' -export const VERSION_JITO_RPC = '2.0.9' -export const VERSION_SOLANA_RPC = '2.0.9' +export const VERSION_JITO_RPC = '2.0.10' +export const VERSION_SOLANA_RPC = '2.0.10' export const DELINQUENT_STAKE_TESTNET = 5 export const DELINQUENT_STAKE_MAINNET = 5 export const COMMISSION = 5