Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
W3stside committed Aug 31, 2021
1 parent 0cbcffa commit 4e6b850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/custom/hooks/useUSDCPrice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ type CoinGeckoUsdValueParams = Pick<CoinGeckoUsdPriceParams, 'tokenAddress'> & {
currencyAmount?: CurrencyAmount<Currency>
}

export function useCoingeckoUSDValue(params: CoinGeckoUsdValueParams) {
export function useCoingeckoUsdValue(params: CoinGeckoUsdValueParams) {
const { currencyAmount } = params
const coingeckoUsdPrice = useCoingeckoUsdPrice(params)

Expand All @@ -188,7 +188,7 @@ export function useCoingeckoUSDValue(params: CoinGeckoUsdValueParams) {

export function useHigherUSDValue(currencyAmount: CurrencyAmount<Currency> | undefined) {
const usdcValue = useUSDCValue(currencyAmount)
const coingeckoUsdPrice = useCoingeckoUSDValue({
const coingeckoUsdPrice = useCoingeckoUsdValue({
tokenAddress: currencyAmount ? currencyId(currencyAmount.currency) : '',
currencyAmount,
})
Expand Down

0 comments on commit 4e6b850

Please sign in to comment.