File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " aelf-sdk" ,
3- "version" : " 3.5.0-beta.7 " ,
3+ "version" : " 3.5.0-beta.9 " ,
44 "description" : " aelf-sdk js library" ,
55 "type" : " module" ,
66 "main" : " dist/aelf.cjs" ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import * as utils from './util/utils.js';
1212import * as proto from './util/proto.js' ;
1313import * as transform from './util/transform.js' ;
1414import * as transaction from './util/transaction.js' ;
15+ import * as keyStore from './util/keyStore.js' ;
1516import Settings from './util/settings.js' ;
1617import sha256 from './util/sha256.js' ;
1718
@@ -41,9 +42,10 @@ export default class AElf {
4142 static utils = {
4243 ...utils ,
4344 ...bloom ,
44- ...transaction ,
4545 sha256,
46- transform
46+ transform,
47+ keyStore,
48+ transaction,
4749 } ;
4850
4951 providers = {
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import * as utils from './util/utils';
66import sha256 from './util/sha256' ;
77import * as transform from './util/transform' ;
88import * as transaction from './util/transaction' ;
9+ import * as keyStore from './util/keyStore' ;
910import {
1011 arrayToHex ,
1112 padLeft ,
@@ -81,6 +82,8 @@ type TUtilsType = IUtils &
8182 transform : typeof transform ;
8283 } & {
8384 transaction : typeof transaction ;
85+ } & {
86+ keyStore : typeof keyStore ;
8487 } ;
8588interface IVersion {
8689 api ?: string ;
You can’t perform that action at this time.
0 commit comments