@hiveio/dhive 1.2.9 → 1.3.1-beta
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/dist/dhive.d.ts +3 -3
- package/dist/dhive.js +415 -0
- package/dist/dhive.js.gz +0 -0
- package/dist/dhive.js.map +1 -1
- package/lib/chain/deserializer.d.ts +1 -1
- package/lib/chain/deserializer.js +1 -1
- package/lib/crypto.d.ts +2 -2
- package/lib/crypto.js +1 -1
- package/lib/helpers/aes.js +1 -1
- package/lib/memo.js +1 -1
- package/lib/utils.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/dist/dhive.d.ts
CHANGED
|
@@ -687,7 +687,7 @@ declare module 'dhive/crypto' {
|
|
|
687
687
|
* in the design, construction, operation or maintenance of any military facility.
|
|
688
688
|
*/
|
|
689
689
|
/// <reference types="node" />
|
|
690
|
-
import * as ByteBuffer from 'bytebuffer';
|
|
690
|
+
import * as ByteBuffer from '@ecency/bytebuffer';
|
|
691
691
|
import { SignedTransaction, Transaction } from 'dhive/chain/transaction';
|
|
692
692
|
/**
|
|
693
693
|
* Network id used in WIF-encoding.
|
|
@@ -702,7 +702,7 @@ declare module 'dhive/crypto' {
|
|
|
702
702
|
readonly uncompressed: Buffer;
|
|
703
703
|
constructor(key: any, prefix?: string);
|
|
704
704
|
static fromBuffer(key: ByteBuffer): {
|
|
705
|
-
key:
|
|
705
|
+
key: any;
|
|
706
706
|
};
|
|
707
707
|
/**
|
|
708
708
|
* Create a new instance from a WIF-encoded key.
|
|
@@ -2939,7 +2939,7 @@ declare module 'dhive/client' {
|
|
|
2939
2939
|
|
|
2940
2940
|
}
|
|
2941
2941
|
declare module 'dhive/chain/deserializer' {
|
|
2942
|
-
import * as ByteBuffer from 'bytebuffer';
|
|
2942
|
+
import * as ByteBuffer from '@ecency/bytebuffer';
|
|
2943
2943
|
export type Deserializer = (buffer: ByteBuffer) => void;
|
|
2944
2944
|
export const types: {
|
|
2945
2945
|
EncryptedMemoD: any;
|