Skip to content

Commit

Permalink
Update Solana Version v2.0.15 for Mainnet/Testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
POPPIN-FUMI committed Nov 8, 2024
1 parent 323b072 commit 66f2978
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 7 deletions.
36 changes: 36 additions & 0 deletions .changeset/tasty-horses-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
'@epics-dao/solv': patch
---

Update Solana Version v2.0.15 for Mainnet/Testnet

- For users who are not using solv Auto Operation Mode: Please follow the instructions below.

```bash
$ solv update && solv update -b
```

## How to use solv Auto Operation Mode?

Run the following command:

```bash
$ solv auto
? Do you want to enable solv Auto Operation 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 Auto Operation 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 Auto Operation Mode?
2 changes: 1 addition & 1 deletion packages/solv/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions packages/solv/src/config/versionConfig.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const VERSION_TESTNET = '2.0.14'
export const VERSION_MAINNET = '2.0.14'
export const VERSION_JITO_TESTNET = '2.0.14'
export const VERSION_JITO_MAINNET = '2.0.14'
export const VERSION_JITO_RPC = '2.0.14'
export const VERSION_SOLANA_RPC = '2.0.14'
export const VERSION_TESTNET = '2.0.15'
export const VERSION_MAINNET = '2.0.15'
export const VERSION_JITO_TESTNET = '2.0.15'
export const VERSION_JITO_MAINNET = '2.0.15'
export const VERSION_JITO_RPC = '2.0.15'
export const VERSION_SOLANA_RPC = '2.0.15'
export const DELINQUENT_STAKE_TESTNET = 10
export const DELINQUENT_STAKE_MAINNET = 5
export const COMMISSION = 5
Expand Down

0 comments on commit 66f2978

Please sign in to comment.