Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/multiversx/mx-sdk-js-wallet
Core wallet components (generation, signing) for TypeScript (JavaScript).
https://github.com/multiversx/mx-sdk-js-wallet
Last synced: 11 days ago
JSON representation
Core wallet components (generation, signing) for TypeScript (JavaScript).
- Host: GitHub
- URL: https://github.com/multiversx/mx-sdk-js-wallet
- Owner: multiversx
- License: other
- Created: 2022-03-23T09:01:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-27T08:45:32.000Z (2 months ago)
- Last Synced: 2024-08-27T09:27:01.175Z (2 months ago)
- Language: TypeScript
- Size: 558 KB
- Stars: 6
- Watchers: 22
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - multiversx/mx-sdk-js-wallet - Core wallet components (generation, signing) for TypeScript (JavaScript). (TypeScript)
README
# MultiversX SDK for JavaScript and TypeScript: wallet components
Wallet components (generation, signing) for TypeScript (JavaScript).
## Distribution
[npm](https://www.npmjs.com/package/@multiversx/sdk-wallet)
## Installation
`sdk-wallet` is delivered via [npm](https://www.npmjs.com/package/@multiversx/sdk-wallet), therefore it can be installed as follows:
```
npm install @multiversx/sdk-wallet
```## Development
Feel free to skip this section if you are not a contributor.
### Additional dependencies
Instanbul, for code coverage:
```
npm install --no-save nyc
```### Building the library
In order to compile `sdk-wallet`, run the following:
```
npm install
npm run compile
npm run compile-browser
```### Running the tests
#### On NodeJS
In order to run the tests **on NodeJS**, do as follows:
```
npm run test
```#### In the browser
In order to run the tests **in the browser**, do as follows:
```
npm run browser-tests
```