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

Commit

Permalink
fix(position image): increase the gas required constraint for the tok…
Browse files Browse the repository at this point in the history
…en URI
  • Loading branch information
moodysalem committed Jul 6, 2021
1 parent 43cefbd commit c52cd2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/usePositionTokenURI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function usePositionTokenURI(tokenId: TokenId | undefined): UsePositionTo
() => [tokenId instanceof BigNumber ? tokenId.toHexString() : tokenId?.toString(16)],
[tokenId]
)
const { result, error, loading, valid } = useSingleCallResult(contract, 'tokenURI', inputs, NEVER_RELOAD, 1_600_000)
const { result, error, loading, valid } = useSingleCallResult(contract, 'tokenURI', inputs, NEVER_RELOAD, 3_000_000)

return useMemo(() => {
if (error || !valid || !tokenId) {
Expand Down

0 comments on commit c52cd2c

Please sign in to comment.