Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielhicks committed Dec 11, 2024
1 parent abed030 commit 7fe34d9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions packages/solv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @gabrielhicks/solv

## 4.8.5

### Patch Changes
Bump latest agave version

## 4.8.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/solv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gabrielhicks/solv",
"version": "4.8.4",
"version": "4.8.5",
"description": "Solana Validator CLI SOLV",
"main": "dist/index.js",
"type": "module",
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.4'
export const VERSION_MAINNET = '2.0.18'
export const VERSION_JITO_TESTNET = '2.1.4'
export const VERSION_JITO_MAINNET = '2.0.18'
export const VERSION_JITO_RPC = '2.1.4'
export const VERSION_SOLANA_RPC = '2.1.4'
export const VERSION_TESTNET = '2.1.5'
export const VERSION_MAINNET = '2.0.19'
export const VERSION_JITO_TESTNET = '2.1.5'
export const VERSION_JITO_MAINNET = '2.0.19'
export const VERSION_JITO_RPC = '2.1.5'
export const VERSION_SOLANA_RPC = '2.1.5'
export const DELINQUENT_STAKE_TESTNET = 5
export const DELINQUENT_STAKE_MAINNET = 5
export const COMMISSION = 5
Expand Down
8 changes: 4 additions & 4 deletions packages/solv/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ async function main() {
program
.command('create:snapshot')
.description('Create Snapshot')
.option('-s, --slot <slot>', 'Slot')
.option('-l, --ledger <ledger>', 'Ledger')
.option('-n, --snapshots <snapshots>', 'Snapshots')
.option('-s, --slot <slot>', 'Slot', '306450862')
.option('-l, --ledger <ledger>', 'Ledger', config.LEDGER_PATH)
.option('-n, --snapshots <snapshots>', 'Snapshots', config.SNAPSHOTS_PATH)
.action((options: { slot: string; ledger: string, snapshots: string }) => {
console.log(chalk.white(`📝 Creating Snapshot...`))
createSnapshot(options.slot, options.ledger, options.snapshots, config)
createSnapshot(options.slot, options.ledger, options.snapshots)
})

program
Expand Down

0 comments on commit 7fe34d9

Please sign in to comment.