@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.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",