Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
e398e8b9
Unverified
Commit
e398e8b9
authored
May 23, 2023
by
Jack Short
Committed by
GitHub
May 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: allow unsupported chain in pwat (#6629)
chore: allow unsupported chain in pwat
parent
6424fdfb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
usePermit2Approval.ts
src/nft/hooks/usePermit2Approval.ts
+2
-1
No files found.
src/nft/hooks/usePermit2Approval.ts
View file @
e398e8b9
...
...
@@ -3,6 +3,7 @@ import { InterfaceEventName } from '@uniswap/analytics-events'
import
{
CurrencyAmount
,
SupportedChainId
,
Token
}
from
'
@uniswap/sdk-core
'
import
{
UNIVERSAL_ROUTER_ADDRESS
}
from
'
@uniswap/universal-router-sdk
'
import
{
useWeb3React
}
from
'
@web3-react/core
'
import
{
isSupportedChain
}
from
'
constants/chains
'
import
usePermit2Allowance
,
{
AllowanceState
}
from
'
hooks/usePermit2Allowance
'
import
{
useCallback
,
useMemo
,
useState
}
from
'
react
'
import
invariant
from
'
tiny-invariant
'
...
...
@@ -15,7 +16,7 @@ function getURAddress(chainId?: number, nftURAddress?: string) {
return
nftURAddress
??
UNIVERSAL_ROUTER_ADDRESS
(
chainId
)
}
return
UNIVERSAL_ROUTER_ADDRESS
(
chainId
)
return
isSupportedChain
(
chainId
)
?
UNIVERSAL_ROUTER_ADDRESS
(
chainId
)
:
undefined
}
export
default
function
usePermit2Approval
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment