Skip to content

Commit

Permalink
verbosity minimal btc call to explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
Wozacosta committed Dec 24, 2024
1 parent 0e6ee7d commit 89a9ade
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class BitcoinLikeExplorer implements IExplorer {
const { data } = await network({
method: "GET",
url: `${this.baseUrl}/address/${address.address}/txs`,
params,
params: {verbosity: 'Minimal', ...params},
});
const txs = data.data;
const nextPageToken = data.token;
Expand All @@ -97,7 +97,7 @@ class BitcoinLikeExplorer implements IExplorer {
const { data } = await network({
method: "GET",
url: `${this.baseUrl}/address/${address.address}/txs/pending`,
params,
params: {verbosity: 'Minimal', ...params},
});
return data;
}
Expand Down

0 comments on commit 89a9ade

Please sign in to comment.