weavedb-node-client 0.5.8 → 0.8.0

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -39,9 +39,11 @@ class SDK extends Base {
39
39
  EthWallet,
40
40
  web3,
41
41
  arweave,
42
+ arweave_wallet,
42
43
  }) {
43
44
  super()
44
45
  this.contractTxId = contractTxId
46
+ this.arweave_wallet = arweave_wallet
45
47
  this.arweave = Arweave.init(arweave)
46
48
  this.client = new weavedb_proto.DB(rpc, grpc.credentials.createInsecure())
47
49
  if (typeof window === "object") {
@@ -64,7 +66,6 @@ class SDK extends Base {
64
66
  nocache = last(query)
65
67
  query = init(query)
66
68
  }
67
-
68
69
  return { nocache, query }
69
70
  }
70
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weavedb-node-client",
3
- "version": "0.5.8",
3
+ "version": "0.8.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -10,6 +10,6 @@
10
10
  "@grpc/grpc-js": "^1.1.0",
11
11
  "@grpc/proto-loader": "^0.5.0",
12
12
  "ramda": "^0.28.0",
13
- "weavedb-base": "^0.7.3"
13
+ "weavedb-base": "^0.9.5"
14
14
  }
15
15
  }