remove comments

This commit is contained in:
ayomaska18
2024-10-26 16:51:15 +01:00
parent 02dcd64df8
commit 9da92e5554
5 changed files with 7 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
'use client'; // Add this at the top to make this a Client Component
'use client';
import { useEffect, useState } from 'react';
import { getContract } from '@/lib/ethers';

View File

@@ -1,7 +1,7 @@
'use client';
import React, { useState } from 'react';
import { getContract } from '@/lib/ethers'; // Adjust the path to your ethers helper
import { getContract } from '@/lib/ethers';
const GetEventImages = () => {
const [eventId, setEventId] = useState<number | null>(null);

View File

@@ -2,7 +2,7 @@
import React, { useState } from 'react';
import { ethers } from 'ethers';
import { getContract } from '@/lib/ethers'; // Adjust the path to your ethers helper
import { getContract } from '@/lib/ethers';
const GetEventPrice = () => {
const [eventId, setEventId] = useState<number | null>(null);

View File

@@ -2,7 +2,7 @@
import React, { useState } from 'react';
import { ethers } from 'ethers';
import { getContract } from '@/lib/ethers'; // Adjust the path to your ethers helper
import { getContract } from '@/lib/ethers';
const GetEventTickets = () => {
const [eventId, setEventId] = useState<number | null>(null);
@@ -19,13 +19,8 @@ const GetEventTickets = () => {
}
try {
// Get the contract instance
const contract = getContract();
// Fetch tickets for the given event ID
const eventTickets = await contract.getEventTickets(eventId);
// Convert BigNumbers to plain numbers for display
setTickets(
eventTickets.map((ticket: ethers.BigNumber) => ticket.toNumber())
);

View File

@@ -2,7 +2,7 @@
import React, { useState } from 'react';
import { ethers } from 'ethers';
import { getContract } from '@/lib/ethers'; // Adjust the path to your ethers helper
import { getContract } from '@/lib/ethers';
const FlareFeed = () => {
const [feedValue, setFeedValue] = useState<string | null>(null);
@@ -13,13 +13,10 @@ const FlareFeed = () => {
try {
const contract = getContract();
const feedData = await contract.getFlareFeed();
// Assuming feedData[0] is BigNumber and needs conversion
const _feedValue = ethers.utils.formatEther(feedData[0].toString());
// feedData[1] and feedData[2] may be regular numbers (int8 and uint64), so no .toNumber() needed
const _decimals = feedData[1]; // No need to convert if it's already an integer
const _timestamp = new Date(feedData[2] * 1000).toLocaleString(); // Convert Unix timestamp to readable format
const _decimals = feedData[1];
const _timestamp = new Date(feedData[2] * 1000).toLocaleString();
setFeedValue(_feedValue);
setDecimals(_decimals);