Commit c52cd2c3 authored by Moody Salem's avatar Moody Salem

fix(position image): increase the gas required constraint for the token URI

parent 43cefbdc
...@@ -33,7 +33,7 @@ export function usePositionTokenURI(tokenId: TokenId | undefined): UsePositionTo ...@@ -33,7 +33,7 @@ export function usePositionTokenURI(tokenId: TokenId | undefined): UsePositionTo
() => [tokenId instanceof BigNumber ? tokenId.toHexString() : tokenId?.toString(16)], () => [tokenId instanceof BigNumber ? tokenId.toHexString() : tokenId?.toString(16)],
[tokenId] [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(() => { return useMemo(() => {
if (error || !valid || !tokenId) { if (error || !valid || !tokenId) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment