@orbinum/sdk 0.7.9 → 0.7.10
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1355,7 +1355,7 @@ var IndexerClient = class {
|
|
|
1355
1355
|
async getAddressShieldedActivity(address, params) {
|
|
1356
1356
|
const qs = this.buildQuery({ page: params?.page, limit: params?.limit });
|
|
1357
1357
|
return this.get(
|
|
1358
|
-
`/shielded/address/${encodeURIComponent(address
|
|
1358
|
+
`/shielded/address/${encodeURIComponent(address)}${qs}`
|
|
1359
1359
|
);
|
|
1360
1360
|
}
|
|
1361
1361
|
// ─── Relayers ──────────────────────────────────────────────────────────────
|
package/dist/index.mjs
CHANGED
|
@@ -1228,7 +1228,7 @@ var IndexerClient = class {
|
|
|
1228
1228
|
async getAddressShieldedActivity(address, params) {
|
|
1229
1229
|
const qs = this.buildQuery({ page: params?.page, limit: params?.limit });
|
|
1230
1230
|
return this.get(
|
|
1231
|
-
`/shielded/address/${encodeURIComponent(address
|
|
1231
|
+
`/shielded/address/${encodeURIComponent(address)}${qs}`
|
|
1232
1232
|
);
|
|
1233
1233
|
}
|
|
1234
1234
|
// ─── Relayers ──────────────────────────────────────────────────────────────
|