Skip to content

Commit

Permalink
Merge pull request #7 from hackbg/main
Browse files Browse the repository at this point in the history
Upgrade Chainlink Dependencies
  • Loading branch information
danielgruesso authored Feb 12, 2024
2 parents 6d05128 + 27fabcd commit 8e27812
Show file tree
Hide file tree
Showing 87 changed files with 4,310 additions and 8,716 deletions.
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
143 changes: 0 additions & 143 deletions contracts/FunctionsSandboxLibrary/Functions.js

This file was deleted.

59 changes: 0 additions & 59 deletions contracts/FunctionsSandboxLibrary/Log.js

This file was deleted.

81 changes: 0 additions & 81 deletions contracts/FunctionsSandboxLibrary/Sandbox.js

This file was deleted.

69 changes: 0 additions & 69 deletions contracts/FunctionsSandboxLibrary/Validator.js

This file was deleted.

Loading

0 comments on commit 8e27812

Please sign in to comment.