Skip to content
This repository was archived by the owner on Oct 21, 2023. It is now read-only.

Commit f8042c0

Browse files
committed
refactor: Rename pkg to elrond-data
1 parent a8835b0 commit f8042c0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# elrond-utils
1+
# elrond-data
22

3-
Utilities and data for building with Elrond.
3+
Data for building with Elrond.
44

55
Features:
66

@@ -13,7 +13,7 @@ Features:
1313
## Installation
1414

1515
```
16-
npm install --save elrond-utils
16+
npm install --save elrond-data
1717
```
1818

1919
## Usage
@@ -23,7 +23,7 @@ All predefined token and network metadata are in [`tokens.json`](https://github.
2323
This data gets loaded in and exposed via the `Data` export:
2424

2525
```js
26-
import { data } 'elrond-utils'
26+
import { data } 'elrond-data'
2727

2828
const tokenData = data.getToken('xegld')
2929

@@ -41,7 +41,7 @@ console.log(JSON.stringify(tokenData, null, 2))
4141
If you are building in Typescript then there are various useful type definitions available, for example:
4242

4343
```js
44-
import { Balance } from 'elrond-utils'
44+
import { Balance } from 'elrond-data'
4545

4646
const bal: Balance = {
4747
token: 'egld',

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "elrond-utils",
2+
"name": "elrond-data",
33
"version": "1.1.1",
4-
"description": "Utilities and data for building with Elrond.",
4+
"description": "Data for building with Elrond.",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/esm/index.d.ts",

0 commit comments

Comments
 (0)