@dubsdotapp/expo 0.5.3 → 0.5.4
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3 -1
- package/src/hooks/useEnterArcadePool.ts +3 -1
- package/src/types.ts +3 -1
package/dist/index.mjs
CHANGED
|
@@ -540,7 +540,9 @@ var DubsClient = class {
|
|
|
540
540
|
transaction: res.transaction,
|
|
541
541
|
poolId: res.poolId,
|
|
542
542
|
amount: res.amount,
|
|
543
|
-
destination: res.destination
|
|
543
|
+
destination: res.destination,
|
|
544
|
+
gameId: res.gameId,
|
|
545
|
+
gameAddress: res.gameAddress
|
|
544
546
|
};
|
|
545
547
|
}
|
|
546
548
|
async enterArcadePool(poolId, params) {
|
|
@@ -2720,7 +2722,9 @@ function useEnterArcadePool() {
|
|
|
2720
2722
|
console.log("[useEnterArcadePool] Step 3: Confirming with backend...");
|
|
2721
2723
|
const entry = await client.enterArcadePool(poolId, {
|
|
2722
2724
|
walletAddress,
|
|
2723
|
-
txSignature: signature
|
|
2725
|
+
txSignature: signature,
|
|
2726
|
+
gameId: buildResult.gameId,
|
|
2727
|
+
gameAddress: buildResult.gameAddress
|
|
2724
2728
|
});
|
|
2725
2729
|
console.log("[useEnterArcadePool] Step 3 done. Entry recorded.");
|
|
2726
2730
|
const result = {
|