Skip to content

Commit

Permalink
Merge pull request #365 from EpicsDAO/update
Browse files Browse the repository at this point in the history
Update Solana Version - Testnet/Mainnet
  • Loading branch information
POPPIN-FUMI authored Nov 27, 2024
2 parents fc30294 + 3ffd06a commit 17aa3d0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
24 changes: 24 additions & 0 deletions .changeset/light-carpets-raise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
'@epics-dao/solv': patch
---

Update Solana Version - Testnet/Mainnet

Update solv version and the default config.

```bash
solv update && solv update --config
solv i
```

Then manually restart the node.

```bash
solv restart
```

or stop and start the node.

```bash
solv stop && solv start
```
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const geyserConfig = (xToken: string) => {
prometheus: {
address: '0.0.0.0:8999',
},
block_fail_action: 'log',
}
return {
filePath,
Expand Down
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.1.1'
export const VERSION_MAINNET = '2.0.16'
export const VERSION_JITO_TESTNET = '2.1.1'
export const VERSION_JITO_MAINNET = '2.0.16'
export const VERSION_JITO_RPC = '2.1.1'
export const VERSION_SOLANA_RPC = '2.1.1'
export const VERSION_TESTNET = '2.1.4'
export const VERSION_MAINNET = '2.0.17'
export const VERSION_JITO_TESTNET = '2.1.4'
export const VERSION_JITO_MAINNET = '2.0.17'
export const VERSION_JITO_RPC = '2.1.4'
export const VERSION_SOLANA_RPC = '2.1.4'
export const DELINQUENT_STAKE_TESTNET = 5
export const DELINQUENT_STAKE_MAINNET = 5
export const COMMISSION = 5
Expand Down

0 comments on commit 17aa3d0

Please sign in to comment.