@dubsdotapp/expo 0.5.2 → 0.5.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/dist/index.d.mts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +9 -0
- package/src/index.ts +1 -0
- package/src/types.ts +12 -0
package/dist/index.mjs
CHANGED
|
@@ -578,6 +578,13 @@ var DubsClient = class {
|
|
|
578
578
|
);
|
|
579
579
|
return res.leaderboard;
|
|
580
580
|
}
|
|
581
|
+
async getArcadeResults(poolId) {
|
|
582
|
+
const res = await this.request(
|
|
583
|
+
"GET",
|
|
584
|
+
`/arcade/pools/${poolId}/results`
|
|
585
|
+
);
|
|
586
|
+
return res.results;
|
|
587
|
+
}
|
|
581
588
|
async getArcadeEntry(poolId, walletAddress) {
|
|
582
589
|
const res = await this.request(
|
|
583
590
|
"GET",
|