Skip to content

Commit

Permalink
Merge pull request #6 from hackbg/feature/fix-test-mode
Browse files Browse the repository at this point in the history
fix(app): test mode game register
  • Loading branch information
imollov authored Feb 12, 2024
2 parents 6d05128 + 6cc33e4 commit afebe4d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/src/components/place-bet-button.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use client'

import { useState } from 'react'
import { useSearchParams } from 'next/navigation'
import { formatEther, parseEther } from 'viem'
import { useAccount, useBalance } from 'wagmi'
import {
Expand Down Expand Up @@ -28,6 +29,9 @@ export default function PlaceBetButton({
const { data } = useBalance({ address })
const { predictions, setPredictions } = useLocalStateContext()

const searchParams = useSearchParams()
const testMode = searchParams.get('mode') === 'test'

const placePredictions = async () => {
setError(null)
if (predictions.some((p) => p.wager === undefined || p.wager <= 0)) {
Expand Down Expand Up @@ -79,14 +83,18 @@ export default function PlaceBetButton({
args: [gameId],
})
if (game.externalId === BigInt(0)) {
// Bypassing the registration guard for test mode
const timestamp = testMode
? BigInt(Math.floor(Date.now() / 1000) + 300)
: BigInt(prediction.game.timestamp)
const config = await prepareWriteContract({
address: contractAddress,
abi: sportsPredictionGameABI,
functionName: 'registerAndPredict',
args: [
BigInt(prediction.game.sportId),
BigInt(prediction.game.id),
BigInt(prediction.game.timestamp),
timestamp,
winnerToResult[prediction.predictedWinner],
],
value: parseEther(`${prediction.wager ?? 0}`),
Expand Down

0 comments on commit afebe4d

Please sign in to comment.