@tonomy/antelope-did-resolver
Advanced tools
Comparing version
{ | ||
"name": "@tonomy/antelope-did-resolver", | ||
"author": "Jack Tanner <jack+public@tonomy.foundation>", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"license": "Apache-2.0", | ||
@@ -80,4 +80,4 @@ "description": "Resolve Decentralized Identifier (DID) documents based on Antelope blockchains", | ||
"did-resolver": "^4.1.0", | ||
"uint8arrays": "^4.0.3" | ||
"uint8arrays": "3.1.1" | ||
} | ||
} |
@@ -13,13 +13,5 @@ # Antelope DID Resolver | ||
The Antelope Identity Working Group is an open working group where we, the Antelope community, discuss identity on Antelope chains and progress work such as this DID specification and it's implementation. We have a weekly meeting and a Slack channel. | ||
**[Join the Antelope Identity Working Group](https://www.gimly.io/antelope-identity)** | ||
Comments regarding this document are welcome. Please file issues and PRs directly on Github. Contributors are recognized through adding commits to the code base. | ||
See [README.tsdx.md](./README.tsdx.md) for instructions on how to run, build, test and test this library. | ||
Contributors: | ||
- Jack Tanner <jack@gimly.io> | ||
- Jack Tanner | Tonomy Foundation | ||
- Jonas Walter | ||
@@ -29,3 +21,3 @@ - Sebastian Montero <sebastian@m1ghty.io> | ||
- Julius Rahaus | ||
- Rebal Alhaqash | ||
- Rebal Alhaqash | Tonomy Foundation | ||
@@ -32,0 +24,0 @@ <!-- Make sure images have 75 pixel height --> |
import BN from 'bn.js'; | ||
import * as uint8arrays from 'uint8arrays'; | ||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | ||
// @ts-ignore | ||
import { toString, fromString } from 'uint8arrays'; | ||
import { PublicKey, PrivateKey, KeyType } from '@greymass/eosio'; | ||
@@ -19,3 +21,3 @@ import elliptic from 'elliptic'; | ||
function bytesToBase64(b: Uint8Array): string { | ||
return uint8arrays.toString(b, 'base64pad'); | ||
return toString(b, 'base64pad'); | ||
} | ||
@@ -32,3 +34,3 @@ | ||
return uint8arrays.fromString(b64, 'base16'); | ||
return fromString(b64, 'base16'); | ||
} | ||
@@ -35,0 +37,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2630957
-0.05%25132
-0.12%168
-4.55%+ Added
+ Added
- Removed
- Removed
Updated