diff --git a/CHANGELOG.md b/CHANGELOG.md index a978458..6ebb87c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# [1.2.0](https://github.com/erdDEVcode/utils/compare/v1.1.1...v1.2.0) (2020-11-17) + ## [1.1.1](https://github.com/erdDEVcode/utils/compare/v1.1.0...v1.1.1) (2020-11-16) # [1.1.0](https://github.com/erdDEVcode/utils/compare/v1.0.2...v1.1.0) (2020-11-16) diff --git a/README.md b/README.md index 7144242..d005343 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# elrond-utils +# elrond-data -Utilities and data for building with Elrond. +Data for building with Elrond. Features: @@ -13,7 +13,7 @@ Features: ## Installation ``` -npm install --save elrond-utils +npm install --save elrond-data ``` ## Usage @@ -23,7 +23,7 @@ All predefined token and network metadata are in [`tokens.json`](https://github. This data gets loaded in and exposed via the `Data` export: ```js -import { data } 'elrond-utils' +import { data } 'elrond-data' const tokenData = data.getToken('xegld') @@ -41,7 +41,7 @@ console.log(JSON.stringify(tokenData, null, 2)) If you are building in Typescript then there are various useful type definitions available, for example: ```js -import { Balance } from 'elrond-utils' +import { Balance } from 'elrond-data' const bal: Balance = { token: 'egld', diff --git a/package-lock.json b/package-lock.json index 561646f..346a661 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { - "name": "elrond-utils", - "version": "1.1.1", + "name": "elrond-data", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0fb0cfa..fcea04f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "elrond-utils", - "version": "1.1.1", - "description": "Utilities and data for building with Elrond.", + "name": "elrond-data", + "version": "1.2.0", + "description": "Data for building with Elrond.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts",