weavedb-node-client 0.19.1 → 0.19.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 +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -138,6 +138,10 @@ class SDK extends Base {
|
|
|
138
138
|
return this.readQuery("getNonce", addr, true)
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
+
async getAddressLink(address, nocache) {
|
|
142
|
+
return this.readQuery("getAddressLink", address, nocache)
|
|
143
|
+
}
|
|
144
|
+
|
|
141
145
|
async admin(op, opt) {
|
|
142
146
|
return this._write2("admin", op, opt)
|
|
143
147
|
}
|