@learncard/core 1.0.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -8
- package/dist/core.cjs.development.js +1747 -226
- package/dist/core.cjs.development.js.map +3 -3
- package/dist/core.cjs.production.min.js +175 -175
- package/dist/core.cjs.production.min.js.map +3 -3
- package/dist/core.d.ts +17 -37
- package/dist/core.esm.js +1747 -226
- package/dist/core.esm.js.map +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
-
#
|
1
|
+
# @learncard/core
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
[![
|
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
|
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 "
|
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
|
```
|