uniswap-interface-uncensored/src/hooks/useCurrentBlockTimestamp.ts

11 lines
407 B
TypeScript
Raw Normal View History

import { BigNumber } from 'ethers'
import { useSingleCallResult } from '../state/multicall/hooks'
import { useInterfaceMulticall } from './useContract'
// gets the current timestamp from the blockchain
export default function useCurrentBlockTimestamp(): BigNumber | undefined {
const multicall = useInterfaceMulticall()
return useSingleCallResult(multicall, 'getCurrentBlockTimestamp')?.result?.[0]
}