weavedb-node-client 0.13.0 → 0.13.2
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/index.js +15 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -28,6 +28,9 @@ const reads = [
|
|
|
28
28
|
"getEvolve",
|
|
29
29
|
"getVersion",
|
|
30
30
|
"getRelayerJob",
|
|
31
|
+
"listCollections",
|
|
32
|
+
"getInfo",
|
|
33
|
+
,
|
|
31
34
|
]
|
|
32
35
|
|
|
33
36
|
class SDK extends Base {
|
|
@@ -150,6 +153,18 @@ class SDK extends Base {
|
|
|
150
153
|
async getIds(tx) {
|
|
151
154
|
return this.request("getIds", tx)
|
|
152
155
|
}
|
|
156
|
+
|
|
157
|
+
async getAddressLink(address) {
|
|
158
|
+
return this.request("getAddressLink", address)
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
async getVersion() {
|
|
162
|
+
return this.request("getAddressLink")
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
async getEvolve() {
|
|
166
|
+
return this.request("getEvolve")
|
|
167
|
+
}
|
|
153
168
|
}
|
|
154
169
|
|
|
155
170
|
module.exports = SDK
|