mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-16 02:04:54 +01:00
output liquidity provider fee from pool
This commit is contained in:
parent
5e772ca843
commit
d9a4b5697c
@ -21,7 +21,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.output {
|
.output {
|
||||||
text-align: center;
|
display: grid;
|
||||||
|
gap: var(--spacer);
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.output p {
|
.output p {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { ReactElement, useState, ChangeEvent } from 'react'
|
import React, { ReactElement, useState, ChangeEvent, useEffect } from 'react'
|
||||||
import styles from './Add.module.css'
|
import styles from './Add.module.css'
|
||||||
import { useOcean } from '@oceanprotocol/react'
|
import { useOcean } from '@oceanprotocol/react'
|
||||||
import Header from './Header'
|
import Header from './Header'
|
||||||
@ -24,6 +24,7 @@ export default function Add({
|
|||||||
}): ReactElement {
|
}): ReactElement {
|
||||||
const { ocean, accountId, balance } = useOcean()
|
const { ocean, accountId, balance } = useOcean()
|
||||||
const [amount, setAmount] = useState('')
|
const [amount, setAmount] = useState('')
|
||||||
|
const [swapFee, setSwapFee] = useState<string>()
|
||||||
const [txId, setTxId] = useState<string>('')
|
const [txId, setTxId] = useState<string>('')
|
||||||
const [isLoading, setIsLoading] = useState<boolean>()
|
const [isLoading, setIsLoading] = useState<boolean>()
|
||||||
|
|
||||||
@ -35,6 +36,14 @@ export default function Add({
|
|||||||
totalBalance &&
|
totalBalance &&
|
||||||
((Number(newPoolTokens) / Number(totalPoolTokens)) * 100).toFixed(2)
|
((Number(newPoolTokens) / Number(totalPoolTokens)) * 100).toFixed(2)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
async function getFee() {
|
||||||
|
const swapFee = await ocean.pool.getSwapFee(accountId, poolAddress)
|
||||||
|
setSwapFee(swapFee)
|
||||||
|
}
|
||||||
|
getFee()
|
||||||
|
}, [])
|
||||||
|
|
||||||
async function handleAddLiquidity() {
|
async function handleAddLiquidity() {
|
||||||
setIsLoading(true)
|
setIsLoading(true)
|
||||||
|
|
||||||
@ -78,9 +87,16 @@ export default function Add({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.output}>
|
<div className={styles.output}>
|
||||||
<p>You will receive</p>
|
<div>
|
||||||
<Token symbol="BPT" balance={newPoolTokens} />
|
<p>You will receive</p>
|
||||||
<Token symbol="% of pool" balance={newPoolShare} />
|
<Token symbol="BPT" balance={newPoolTokens} />
|
||||||
|
<Token symbol="% of pool" balance={newPoolShare} />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p>You will earn</p>
|
||||||
|
<Token symbol="%" balance={swapFee} />
|
||||||
|
of each pool transaction
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Actions
|
<Actions
|
||||||
|
Loading…
Reference in New Issue
Block a user