Skip to content

Commit

Permalink
update game contract
Browse files Browse the repository at this point in the history
  • Loading branch information
starknetdev committed Oct 9, 2023
1 parent b90b4a5 commit e3f89fd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion indexer/env-goerli
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GAME="0x0229a6f42ae0bc258acf91b6e6d7f50e77608dbfb5a42e1c362f2041f9333fb5"
GAME="0x03f2ac2c55abbf633123ddb72adc3472feefc4e962c4cedc16dda11a2ac8d1d4"
START=873000
MONGO_CONNECTION_STRING="mongodb://mongo:[email protected]:27017"
7 changes: 0 additions & 7 deletions ui/src/app/components/CountDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ export const HealthCountDown = ({ health }: any) => {
end: health,
delay: 1000,
duration: 5,
// onReset: () => console.log("Resetted!"),
// onUpdate: () => console.log("Updated!"),
// onPauseResume: () => console.log("Paused or resumed!"),
// onStart: ({ pauseResume }) => console.log(pauseResume),
// onEnd: ({ pauseResume }) => console.log(pauseResume),
});

useEffect(() => {
Expand Down Expand Up @@ -87,8 +82,6 @@ export const PenaltyCountDown = ({
.padStart(2, "0")}:${seconds.toString().padStart(2, "0")}`;
};

console.log(seconds);

return (
<div className="text-xs sm:text-lg self-center border px-1 border border-terminal-green">
{!dataLoading ? (
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function getContracts() {
case "goerli":
return {
eth: "0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7",
game: "0x00038770136af6a381c58642718a0e088a442a1984c74a64de7960df2e3e5c60",
game: "0x03f2ac2c55abbf633123ddb72adc3472feefc4e962c4cedc16dda11a2ac8d1d4",
lords:
"0x05e367ac160e5f90c5775089b582dfc987dd148a5a2f977c49def2a6644f724b",
};
Expand Down

0 comments on commit e3f89fd

Please sign in to comment.