Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #128 from LiskHQ/125-update-lisk-sdk-to-v6-0-0-beta-5
Browse files Browse the repository at this point in the history
Update Lisk SDK to v6.0.0-beta.5
  • Loading branch information
sameersubudhi authored Jul 19, 2023
2 parents 2bf1a02 + f2918e2 commit c6be0cc
Show file tree
Hide file tree
Showing 4 changed files with 319 additions and 270 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ The following dependencies need to be installed in order to run applications cre

| Dependencies | Version |
| ------------ | -------------- |
| NodeJS | 16.20 |
| Lisk Core | 3.0.4 or later |
| NodeJS | 18.16 |
| Lisk Core | 3.0.5 or later |

## Setup

Expand All @@ -36,7 +36,7 @@ $ npm install -g lisk-migrator
$ lisk-migrator COMMAND
running command...
$ lisk-migrator (-v|--version|version)
lisk-migrator/2.0.0-beta.0 darwin-arm64 node-v16.20.0
lisk-migrator/2.0.0-beta.2 darwin-arm64 node-v18.16.1
$ lisk-migrator --help [COMMAND]
USAGE
$ lisk-migrator COMMAND
Expand Down Expand Up @@ -65,7 +65,7 @@ $ npx oclif-dev pack --targets=linux-x64,darwin-x64

<!-- commands -->

# Commands
# Command Topics

- [`lisk-migrator help`](docs/commands/help.md) - display help for lisk-migrator

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-migrator",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"description": "A command-line tool for migrating the blockchain state to the latest protocol after a hard fork",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -61,19 +61,19 @@
"dependencies": {
"@liskhq/lisk-api-client": "5.1.6",
"@liskhq/lisk-chain": "0.3.4",
"@liskhq/lisk-codec": "0.3.0-beta.2",
"@liskhq/lisk-codec": "0.3.0-beta.3",
"@liskhq/lisk-cryptography": "3.2.1",
"@liskhq/lisk-db": "0.2.1",
"@liskhq/lisk-utils": "0.3.0-beta.2",
"@liskhq/lisk-validator": "0.7.0-beta.2",
"@liskhq/lisk-utils": "0.3.0-beta.3",
"@liskhq/lisk-validator": "0.7.0-beta.3",
"@oclif/command": "1.8.21",
"@oclif/config": "1.14.0",
"@oclif/errors": "1.2.2",
"@oclif/plugin-help": "2.2.3",
"cli-ux": "5.5.1",
"debug": "4.1.1",
"fs-extra": "11.1.0",
"lisk-framework": "0.10.0-beta.4",
"lisk-framework": "0.10.0-beta.5",
"semver": "7.3.2",
"shelljs": "^0.8.5",
"tar": "6.1.13"
Expand Down
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ const TOKEN_ID_LSK = Object.freeze({

const HEIGHT_PREVIOUS_SNAPSHOT_BLOCK = Object.freeze({
MAINNET: 16270293,
TESTNET: 19333300,
});
TESTNET: 14075260,
}) as { [key: string]: number };

export const NETWORK_CONSTANT: { [key: string]: NetworkConfigLocal } = {
'4c09e6a781fc4c7bdb936ee815de8f94190f8a7519becd9de2081832be309a99': {
Expand Down
Loading

0 comments on commit c6be0cc

Please sign in to comment.