weavedb-node-client 0.13.1 → 0.13.3
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 +12 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -153,6 +153,18 @@ class SDK extends Base {
|
|
|
153
153
|
async getIds(tx) {
|
|
154
154
|
return this.request("getIds", tx)
|
|
155
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
|
+
}
|
|
156
168
|
}
|
|
157
169
|
|
|
158
170
|
module.exports = SDK
|