@learncard/core 1.0.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,15 +1,13 @@
1
- # learn-card-core
1
+ # @learncard/core
2
2
 
3
- >
4
-
5
- [![npm version](https://img.shields.io/npm/v/learn-card-core)](https://www.npmjs.com/package/learn-card-core)
6
- [![npm downloads](https://img.shields.io/npm/dw/learn-card-core)](https://www.npmjs.com/package/learn-card-core)
7
- [![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/learn-card-core)](https://www.npmjs.com/package/learn-card-core)
3
+ [![npm version](https://img.shields.io/npm/v/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
4
+ [![npm downloads](https://img.shields.io/npm/dw/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
5
+ [![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
8
6
 
9
7
  ## Install
10
8
 
11
9
  ```bash
12
- pnpm i learn-card-core
10
+ pnpm i @learncard/core
13
11
  ```
14
12
 
15
13
  ## Usage
@@ -21,7 +19,7 @@ up to 64 characters long. If it is less than 64 characters, `walletFromKey` will
21
19
  the string with 0's until it is 64 characters long.
22
20
 
23
21
  ```js
24
- import { walletFromKey } from "learn-card-core";
22
+ import { walletFromKey } from "@learncard/core";
25
23
 
26
24
  const wallet = await walletFromKey('unique-identifier-that-is-up-to-and-preferably64-characters-long');
27
25
  ```