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
3693c83b
Unverified
Commit
3693c83b
authored
Apr 23, 2021
by
Noah Zinsmeister
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove liquidity sends ETH now
can collect fees from position page now
parent
18408c9c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
170 additions
and
30 deletions
+170
-30
PositionPage.tsx
src/pages/Pool/PositionPage.tsx
+113
-15
V3.tsx
src/pages/RemoveLiquidity/V3.tsx
+57
-15
No files found.
src/pages/Pool/PositionPage.tsx
View file @
3693c83b
import
React
,
{
use
Memo
}
from
'
react
'
import
React
,
{
use
Callback
,
useMemo
,
useState
}
from
'
react
'
import
{
Position
}
from
'
@uniswap/v3-sdk
'
import
{
PoolState
,
usePool
}
from
'
data/Pools
'
import
{
useToken
}
from
'
hooks/Tokens
'
...
...
@@ -13,7 +13,7 @@ import DoubleCurrencyLogo from 'components/DoubleLogo'
import
{
TYPE
}
from
'
theme
'
import
Badge
,
{
BadgeVariant
}
from
'
components/Badge
'
import
{
basisPointsToPercent
}
from
'
utils
'
import
{
ButtonPrimary
}
from
'
components/Button
'
import
{
Button
Confirmed
,
Button
Primary
}
from
'
components/Button
'
import
{
DarkCard
,
DarkGreyCard
}
from
'
components/Card
'
import
CurrencyLogo
from
'
components/CurrencyLogo
'
import
{
AlertTriangle
}
from
'
react-feather
'
...
...
@@ -22,6 +22,14 @@ import { currencyId } from 'utils/currencyId'
import
{
formatTokenAmount
}
from
'
utils/formatTokenAmount
'
import
{
useV3PositionFees
}
from
'
hooks/useV3PositionFees
'
import
{
BigNumber
}
from
'
@ethersproject/bignumber
'
import
{
WETH9
}
from
'
@uniswap/sdk-core
'
import
{
useActiveWeb3React
}
from
'
hooks
'
import
{
useV3NFTPositionManagerContract
}
from
'
hooks/useContract
'
import
{
UINT128MAX
}
from
'
../RemoveLiquidity/V3
'
import
{
useIsTransactionPending
,
useTransactionAdder
}
from
'
state/transactions/hooks
'
import
ReactGA
from
'
react-ga
'
import
{
TransactionResponse
}
from
'
@ethersproject/providers
'
import
{
Dots
}
from
'
components/swap/styleds
'
const
PageWrapper
=
styled
.
div
`
min-width: 800px;
...
...
@@ -77,7 +85,7 @@ const ActiveDot = styled.span`
`
export
const
DarkBadge
=
styled
.
div
`
width
L
fit-content;
width
:
fit-content;
border-radius: 8px;
background-color:
${({
theme
})
=>
theme
.
bg0
}
;
padding: 4px 6px;
...
...
@@ -89,6 +97,7 @@ export function PositionPage({
},
}:
RouteComponentProps
<
{
tokenId
?:
string
}
>
)
{
const
{
t
}
=
useTranslation
()
const
{
chainId
,
account
}
=
useActiveWeb3React
()
const
parsedTokenId
=
tokenIdFromUrl
?
BigNumber
.
from
(
tokenIdFromUrl
)
:
undefined
const
{
loading
,
position
:
positionDetails
}
=
useV3PositionFromTokenId
(
parsedTokenId
)
...
...
@@ -120,13 +129,77 @@ export function PositionPage({
const
outOfRange
:
boolean
=
pool
&&
tickLower
&&
tickUpper
?
pool
.
tickCurrent
<
tickLower
||
pool
.
tickCurrent
>
tickUpper
:
false
const
linkToIncrease
=
currency0
&&
currency1
?
`/increase/
${
currencyId
(
currency0
)}
/
${
currencyId
(
currency1
)}
/
${
feeAmount
}
/
${
tokenId
}
`
:
`/pool`
// fees
const
[
feeValue0
,
feeValue1
]
=
useV3PositionFees
(
pool
??
undefined
,
positionDetails
)
const
[
collecting
,
setCollecting
]
=
useState
<
boolean
>
(
false
)
const
[
collectMigrationHash
,
setCollectMigrationHash
]
=
useState
<
string
|
null
>
(
null
)
const
isCollectPending
=
useIsTransactionPending
(
collectMigrationHash
??
undefined
)
const
addTransaction
=
useTransactionAdder
()
const
positionManager
=
useV3NFTPositionManagerContract
()
const
collect
=
useCallback
(()
=>
{
if
(
!
chainId
||
!
feeValue0
||
!
feeValue1
||
!
positionManager
||
!
account
||
!
tokenId
)
return
setCollecting
(
true
)
const
involvesWETH
=
feeValue0
.
token
.
equals
(
WETH9
[
chainId
])
||
feeValue1
.
token
.
equals
(
WETH9
[
chainId
])
const
data
=
[]
// collect, hard-coding ETH collection for now
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
collect
'
,
[
{
tokenId
,
recipient
:
involvesWETH
?
positionManager
.
address
:
account
,
amount0Max
:
UINT128MAX
,
amount1Max
:
UINT128MAX
,
},
])
)
if
(
involvesWETH
)
{
// unwrap
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
unwrapWETH9
'
,
[
`0x
${(
feeValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
feeValue0
.
raw
:
feeValue1
.
raw
).
toString
(
16
)}
`
,
account
,
])
)
// sweep
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
sweepToken
'
,
[
feeValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
feeValue1
.
token
.
address
:
feeValue0
.
token
.
address
,
`0x
${(
feeValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
feeValue1
.
raw
:
feeValue0
.
raw
).
toString
(
16
)}
`
,
account
,
])
)
}
positionManager
.
multicall
(
data
)
.
then
((
response
:
TransactionResponse
)
=>
{
setCollectMigrationHash
(
response
.
hash
)
setCollecting
(
false
)
ReactGA
.
event
({
category
:
'
Liquidity
'
,
action
:
'
CollectV3
'
,
label
:
[
feeValue0
.
token
.
symbol
,
feeValue1
.
token
.
symbol
].
join
(
'
/
'
),
})
addTransaction
(
response
,
{
summary
:
`Collect
${
feeValue0
.
token
.
symbol
}
/
${
feeValue1
.
token
.
symbol
}
fees`
,
})
})
.
catch
((
error
)
=>
{
setCollecting
(
false
)
console
.
error
(
error
)
})
},
[
chainId
,
feeValue0
,
feeValue1
,
positionManager
,
account
,
tokenId
,
addTransaction
])
return
loading
||
poolState
===
PoolState
.
LOADING
||
!
feeAmount
?
(
<
LoadingRows
>
<
div
/>
...
...
@@ -157,14 +230,39 @@ export function PositionPage({
</
Badge
>
</
RowFixed
>
<
RowFixed
>
<
Link
to=
{
linkToIncrease
}
>
<
ButtonPrimary
mr=
"20px"
width=
"200px"
padding=
"8px"
borderRadius=
"12px"
>
Increase liquidity
{
(
feeValue0
?.
greaterThan
(
0
)
&&
feeValue1
?.
greaterThan
(
0
))
||
!!
collectMigrationHash
?
(
<
ButtonConfirmed
disabled=
{
collecting
||
!!
collectMigrationHash
}
confirmed=
{
!!
collectMigrationHash
&&
!
isCollectPending
}
mr=
"15px"
width=
"175px"
padding=
"8px"
style=
{
{
borderRadius
:
'
12px
'
}
}
onClick=
{
collect
}
>
{
!!
collectMigrationHash
&&
!
isCollectPending
?
(
'
Collected
'
)
:
isCollectPending
||
collecting
?
(
<
Dots
>
Collecting
</
Dots
>
)
:
(
'
Collect fees
'
)
}
</
ButtonConfirmed
>
)
:
null
}
{
currency0
&&
currency1
&&
feeAmount
&&
tokenId
?
(
<
Link
to=
{
`/increase/${currencyId(currency0)}/${currencyId(currency1)}/${feeAmount}/${tokenId}`
}
>
<
ButtonPrimary
mr=
"15px"
width=
"175px"
padding=
"8px"
borderRadius=
"12px"
>
Add liquidity
</
ButtonPrimary
>
</
Link
>
<
ButtonPrimary
width=
"200px"
padding=
"8px"
borderRadius=
"12px"
>
)
:
null
}
{
tokenId
&&
(
<
Link
to=
{
`/remove/${tokenId}`
}
>
<
ButtonPrimary
width=
"175px"
padding=
"8px"
borderRadius=
"12px"
>
Remove liquidity
</
ButtonPrimary
>
</
Link
>
)
}
</
RowFixed
>
</
RowBetween
>
<
RowBetween
>
...
...
src/pages/RemoveLiquidity/V3.tsx
View file @
3693c83b
...
...
@@ -23,10 +23,9 @@ import ReactGA from 'react-ga'
import
{
useActiveWeb3React
}
from
'
hooks
'
import
{
TransactionResponse
}
from
'
@ethersproject/providers
'
import
{
useTransactionAdder
}
from
'
state/transactions/hooks
'
import
{
WETH9
}
from
'
@uniswap/sdk-core
'
// TODO still a lot of polishing left here
const
UINT128MAX
=
BigNumber
.
from
(
2
).
pow
(
128
).
sub
(
1
)
export
const
UINT128MAX
=
BigNumber
.
from
(
2
).
pow
(
128
).
sub
(
1
)
// redirect invalid tokenIds
export
default
function
RemoveLiquidityV3
({
...
...
@@ -53,7 +52,7 @@ export default function RemoveLiquidityV3({
function
Remove
({
tokenId
}:
{
tokenId
:
BigNumber
})
{
const
position
=
useV3PositionFromTokenId
(
tokenId
)
const
{
account
}
=
useActiveWeb3React
()
const
{
account
,
chainId
}
=
useActiveWeb3React
()
// burn state
const
{
percent
}
=
useBurnV3State
()
...
...
@@ -71,43 +70,83 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
const
addTransaction
=
useTransactionAdder
()
const
positionManager
=
useV3NFTPositionManagerContract
()
const
burn
=
useCallback
(()
=>
{
if
(
!
liquidity
||
!
positionManager
||
!
liquidityValue0
||
!
liquidityValue1
||
!
deadline
||
!
account
)
return
if
(
!
liquidity
||
!
positionManager
||
!
liquidityValue0
||
!
liquidityValue1
||
!
deadline
||
!
account
||
!
chainId
||
!
feeValue0
||
!
feeValue1
)
return
const
data
=
[]
// decreaseLiquidity if necessary
const
amount0Min
=
JSBI
.
divide
(
JSBI
.
multiply
(
liquidityValue0
.
raw
,
JSBI
.
BigInt
(
10000
-
allowedSlippage
)),
JSBI
.
BigInt
(
10000
)
)
const
amount1Min
=
JSBI
.
divide
(
JSBI
.
multiply
(
liquidityValue1
.
raw
,
JSBI
.
BigInt
(
10000
-
allowedSlippage
)),
JSBI
.
BigInt
(
10000
)
)
if
(
liquidity
.
gt
(
0
))
{
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
decreaseLiquidity
'
,
[
{
tokenId
,
liquidity
,
amount0Min
:
`0x
${
JSBI
.
divide
(
JSBI
.
multiply
(
liquidityValue0
.
raw
,
JSBI
.
BigInt
(
10000
-
allowedSlippage
)),
JSBI
.
BigInt
(
10000
)
).
toString
(
16
)}
`
,
amount1Min
:
`0x
${
JSBI
.
divide
(
JSBI
.
multiply
(
liquidityValue1
.
raw
,
JSBI
.
BigInt
(
10000
-
allowedSlippage
)),
JSBI
.
BigInt
(
10000
)
).
toString
(
16
)}
`
,
amount0Min
:
`0x
${
amount0Min
.
toString
(
16
)}
`
,
amount1Min
:
`0x
${
amount1Min
.
toString
(
16
)}
`
,
deadline
,
},
])
)
}
// TODO allow collection in ETH
const
involvesWETH
=
liquidityValue0
.
token
.
equals
(
WETH9
[
chainId
])
||
liquidityValue1
.
token
.
equals
(
WETH9
[
chainId
])
// collect, hard-coding ETH collection for now
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
collect
'
,
[
{
tokenId
,
recipient
:
account
,
recipient
:
involvesWETH
?
positionManager
.
address
:
account
,
amount0Max
:
UINT128MAX
,
amount1Max
:
UINT128MAX
,
},
])
)
if
(
involvesWETH
)
{
// unwrap
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
unwrapWETH9
'
,
[
`0x
${(
liquidityValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
JSBI
.
add
(
amount0Min
,
feeValue0
.
raw
)
:
JSBI
.
add
(
amount1Min
,
feeValue1
.
raw
)
).
toString
(
16
)}
`
,
account
,
])
)
// sweep
data
.
push
(
positionManager
.
interface
.
encodeFunctionData
(
'
sweepToken
'
,
[
liquidityValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
liquidityValue1
.
token
.
address
:
liquidityValue0
.
token
.
address
,
`0x
${(
liquidityValue0
.
token
.
equals
(
WETH9
[
chainId
])
?
JSBI
.
add
(
amount1Min
,
feeValue1
.
raw
)
:
JSBI
.
add
(
amount0Min
,
feeValue0
.
raw
)
).
toString
(
16
)}
`
,
account
,
])
)
}
positionManager
.
multicall
(
data
)
.
then
((
response
:
TransactionResponse
)
=>
{
...
...
@@ -134,6 +173,9 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
account
,
addTransaction
,
positionManager
,
chainId
,
feeValue0
,
feeValue1
,
])
return
(
...
...
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