mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00

* Create toBech32 and fromBech32 * Add changes to CHANGELOG.md * Fix linting * Update packages/encoding/src/bech32.ts Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com> * Update packages/encoding/src/bech32.ts Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com> * Update bech32.ts Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com>
24 lines
907 B
Markdown
24 lines
907 B
Markdown
# @cosmjs/encoding
|
|
|
|
[](https://www.npmjs.com/package/@cosmjs/encoding)
|
|
|
|
This package is an extension to the JavaScript standard library that is not
|
|
bound to blockchain products. It provides basic hex/base64/ascii encoding to
|
|
Uint8Array that doesn't rely on Buffer and also provides better error messages
|
|
on invalid input.
|
|
|
|
## Convert between bech32 and hex addresses
|
|
|
|
```
|
|
>> toBech32("tiov", fromHex("1234ABCD0000AA0000FFFF0000AA00001234ABCD"))
|
|
'tiov1zg62hngqqz4qqq8lluqqp2sqqqfrf27dzrrmea'
|
|
>> toHex(fromBech32("tiov1zg62hngqqz4qqq8lluqqp2sqqqfrf27dzrrmea").data)
|
|
'1234abcd0000aa0000ffff0000aa00001234abcd'
|
|
```
|
|
|
|
## License
|
|
|
|
This package is part of the cosmjs repository, licensed under the Apache License
|
|
2.0 (see [NOTICE](https://github.com/cosmos/cosmjs/blob/main/NOTICE) and
|
|
[LICENSE](https://github.com/cosmos/cosmjs/blob/main/LICENSE)).
|