@steemit/steem-js 1.0.6 → 1.0.8
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/api/rpc-auth.d.ts +2 -6
- package/dist/browser.esm.js +54 -23
- package/dist/browser.esm.js.map +1 -1
- package/dist/index.cjs +51 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +52 -3
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +2563 -164
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/umd.d.ts +2 -0
- package/package.json +1 -1
package/dist/umd.d.ts
CHANGED
|
@@ -6,7 +6,9 @@ import * as memo from './memo';
|
|
|
6
6
|
import * as operations from './operations';
|
|
7
7
|
import * as serializer from './serializer';
|
|
8
8
|
import * as utils from './utils';
|
|
9
|
+
import { Buffer as BufferPolyfill } from 'buffer';
|
|
9
10
|
declare const steem: {
|
|
11
|
+
version: string;
|
|
10
12
|
config: {
|
|
11
13
|
set: (options: Record<string, unknown>) => void;
|
|
12
14
|
get: (key: string) => unknown;
|