Merge branch 'development' into bugfix/safeList
This commit is contained in:
commit
50e8e08081
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "safe-react",
|
||||
"version": "3.3.0",
|
||||
"version": "3.3.1",
|
||||
"description": "Allowing crypto users manage funds in a safer way",
|
||||
"website": "https://github.com/gnosis/safe-react#readme",
|
||||
"bugs": {
|
||||
|
|
|
@ -13,6 +13,7 @@ import { MULTI_SEND_ADDRESS } from 'src/logic/contracts/safeContracts'
|
|||
import { DELEGATE_CALL, TX_NOTIFICATION_TYPES, CALL } from 'src/logic/safe/transactions'
|
||||
import { encodeMultiSendCall } from 'src/logic/safe/transactions/multisend'
|
||||
import { getNetworkInfo } from 'src/config'
|
||||
import { web3ReadOnly } from 'src/logic/wallets/getWeb3'
|
||||
import { EstimationStatus, useEstimateTransactionGas } from 'src/logic/hooks/useEstimateTransactionGas'
|
||||
import { TransactionFees } from 'src/components/TransactionsFees'
|
||||
import { EditableTxParameters } from 'src/routes/safe/components/Transactions/helpers/EditableTxParameters'
|
||||
|
@ -58,6 +59,10 @@ type Props = ConfirmTxModalProps & {
|
|||
hidden: boolean // used to prevent re-rendering the modal each time a tx is inspected
|
||||
}
|
||||
|
||||
const parseTxValue = (value: string | number): string => {
|
||||
return web3ReadOnly.utils.toBN(value).toString()
|
||||
}
|
||||
|
||||
export const ReviewConfirm = ({
|
||||
app,
|
||||
txs,
|
||||
|
@ -86,10 +91,9 @@ export const ReviewConfirm = ({
|
|||
isMultiSend,
|
||||
])
|
||||
const txValue: string | undefined = useMemo(
|
||||
() => (isMultiSend ? '0' : txs[0]?.value && fromTokenUnit(txs[0]?.value, nativeCoin.decimals)),
|
||||
() => (isMultiSend ? '0' : txs[0]?.value && parseTxValue(txs[0]?.value)),
|
||||
[txs, isMultiSend],
|
||||
)
|
||||
|
||||
const operation = useMemo(() => (isMultiSend ? DELEGATE_CALL : CALL), [isMultiSend])
|
||||
const [manualSafeTxGas, setManualSafeTxGas] = useState(0)
|
||||
const [manualGasPrice, setManualGasPrice] = useState<string | undefined>()
|
||||
|
@ -199,7 +203,11 @@ export const ReviewConfirm = ({
|
|||
<DividerLine withArrow />
|
||||
|
||||
{/* Txs decoded */}
|
||||
<BasicTxInfo txRecipient={txRecipient} txData={txData} txValue={txValue} />
|
||||
<BasicTxInfo
|
||||
txRecipient={txRecipient}
|
||||
txData={txData}
|
||||
txValue={fromTokenUnit(txValue, nativeCoin.decimals)}
|
||||
/>
|
||||
|
||||
<DecodeTxsWrapper>
|
||||
<DecodeTxs txs={txs} decodedData={decodedData} onTxItemClick={showDecodedTxData} />
|
||||
|
|
Loading…
Reference in New Issue