We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee9accb commit 2f9f995Copy full SHA for 2f9f995
packages/plugin-nft-collections/src/services/reservoir.ts
@@ -72,7 +72,12 @@ export class ReservoirService {
72
await this.rateLimiter.consume("reservoir", 1);
73
}
74
const reservoirApiKey = runtime.getSetting("RESERVOIR_API_KEY");
75
-
+ console.log(
76
+ "########################################################################################################################",
77
+ `https://api.reservoir.tools${endpoint}?${new URLSearchParams(
78
+ params
79
+ ).toString()}`
80
+ );
81
// Make the request with retries
82
const result = await pRetry(
83
async () => {
@@ -160,7 +165,7 @@ export class ReservoirService {
160
165
{
161
166
limit: currentLimit,
162
167
offset,
163
- sortBy: "volume24h",
168
+ sortBy: "1DayVolume",
164
169
},
170
1,
171
runtime
0 commit comments