From f4fd18122ff586fc0480d7ab769f6774789fb6c0 Mon Sep 17 00:00:00 2001 From: Yashk767 <76935991+Yashk767@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:46:07 +0530 Subject: [PATCH] chore: merge feature/v2.0.1 to develop (#35) * chore: updated chain id * chore: updated version --- core/version.go | 2 +- update-chainId.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/version.go b/core/version.go index 15a0e147..0da35750 100644 --- a/core/version.go +++ b/core/version.go @@ -5,7 +5,7 @@ import "fmt" const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string ) diff --git a/update-chainId.sh b/update-chainId.sh index 2b4817e7..60855aa0 100644 --- a/update-chainId.sh +++ b/update-chainId.sh @@ -7,7 +7,7 @@ CHAINID="" if [[ "$NETWORK" == "mainnet" ]]; then CHAINID="0x79f99296" elif [[ "$NETWORK" == "testnet" ]]; then - CHAINID="0x561bf78b" + CHAINID="0x79f99296" else echo "Invalid network specified. Please choose 'mainnet' or 'testnet'." exit 1