From 81b688aedfad25f65f6cfe1611b7082351810bb6 Mon Sep 17 00:00:00 2001 From: Brian Lenz Date: Sat, 17 Feb 2018 10:10:07 -0800 Subject: [PATCH] NRVE token (#725) * Update NRV -> NRVE * Updated the NRV token to NRVE with the new script hash. * Fix test * Fixed the metadata test to check the NRVE script hash instead of old NRV. * Update version to 0.1.4 --- __tests__/modules/metadata.test.js | 2 +- app/core/constants.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/modules/metadata.test.js b/__tests__/modules/metadata.test.js index fbcd6b5c7..c52a5c225 100644 --- a/__tests__/modules/metadata.test.js +++ b/__tests__/modules/metadata.test.js @@ -51,7 +51,7 @@ describe('metadata module tests', () => { 'id': '5', 'isUserGenerated': false, 'networkId': '1', - 'scriptHash': '2e25d2127e0240c6deaf35394702feb236d4d7fc' + 'scriptHash': 'a721d5893480260bd28ca1f395f2c465d0b5b1c2' }, { 'id': '6', diff --git a/app/core/constants.js b/app/core/constants.js index 34c3549c3..8319b94ff 100644 --- a/app/core/constants.js +++ b/app/core/constants.js @@ -78,7 +78,7 @@ export const TOKENS = { RPX: 'ecc6b20d3ccac1ee9ef109af5a7cdb85706b1df9', RHT: '2328008e6f6c7bd157a342e789389eb034d9cbc4', QLC: '0d821bd7b6d53f5c2b40e217c6defc8bbe896cf5', - NRV: '2e25d2127e0240c6deaf35394702feb236d4d7fc' + NRVE: 'a721d5893480260bd28ca1f395f2c465d0b5b1c2' } export const ENDED_ICO_TOKENS = ['DBC', 'RPX', 'QLC', 'RHT'] diff --git a/package.json b/package.json index a316184f9..ad1af99dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Neon", - "version": "0.1.3", + "version": "0.1.4", "main": "./main.js", "description": "Light wallet for NEO blockchain", "homepage": "https://github.com/CityOfZion/neon-wallet",