utils#formatUnits TypeScript Examples
The following examples show how to use
utils#formatUnits.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CoinSelection.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
CoinSelection = () => {
const { account, isConnected } = useConnection();
const { setAmount, setToken, amount, token, fees } = useSend();
const { trackEvent } = useMatomo();
const [error, setError] = React.useState<Error>();
const sendState = useAppSelector((state) => state.send);
const tokenList = useMemo(() => {
const filterByToChain = (token: Token) =>
TOKENS_LIST[sendState.currentlySelectedToChain.chainId].some(
(element) => element.symbol === token.symbol
);
if (
sendState.currentlySelectedFromChain.chainId === ChainId.MAINNET &&
sendState.currentlySelectedToChain.chainId === ChainId.OPTIMISM
) {
// Note: because of how Optimism treats WETH, it must not be sent over their canonical bridge.
return TOKENS_LIST[sendState.currentlySelectedFromChain.chainId]
.filter((element) => element.symbol !== "WETH")
.filter(filterByToChain);
}
return TOKENS_LIST[sendState.currentlySelectedFromChain.chainId].filter(
filterByToChain
);
}, [
sendState.currentlySelectedFromChain.chainId,
sendState.currentlySelectedToChain.chainId,
]);
const { data: balances } = useBalances(
{
account: account!,
chainId: sendState.currentlySelectedFromChain.chainId,
},
{ skip: !account }
);
const tokenBalanceMap = useMemo(() => {
return TOKENS_LIST[sendState.currentlySelectedFromChain.chainId].reduce(
(acc, val, idx) => {
return {
...acc,
[val.address]: balances ? balances[idx] : undefined,
};
},
{} as Record<string, BigNumber | undefined>
);
}, [balances, sendState.currentlySelectedFromChain.chainId]);
const [dropdownItem, setDropdownItem] = useState(() =>
tokenList.find((t) => t.address === token)
);
// Adjust coin dropdown when chain id changes, as some tokens don't exist on all chains.
useEffect(() => {
const newToken = tokenList.find(
(t) => t.address === ethers.constants.AddressZero
);
setInputAmount("");
// since we are resetting input to 0, reset any errors
setError(undefined);
setAmount({ amount: BigNumber.from("0") });
setDropdownItem(() => newToken);
setToken({ token: newToken?.address || "" });
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [sendState.currentlySelectedFromChain.chainId, tokenList]);
const {
isOpen,
selectedItem,
getLabelProps,
getToggleButtonProps,
getItemProps,
getMenuProps,
} = useSelect({
items: tokenList,
defaultSelectedItem: tokenList.find((t) => t.address === token),
selectedItem: dropdownItem,
onSelectedItemChange: ({ selectedItem }) => {
if (selectedItem) {
// Matomo track token selection
trackEvent({
category: "send",
action: "setAsset",
name: selectedItem.symbol,
});
setInputAmount("");
// since we are resetting input to 0, reset any errors
setError(undefined);
setAmount({ amount: BigNumber.from("0") });
setToken({ token: selectedItem.address });
setDropdownItem(selectedItem);
}
},
});
const [inputAmount, setInputAmount] = React.useState<string>(
selectedItem && amount.gt("0")
? formatUnits(amount, selectedItem.decimals)
: ""
);
const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const value = event.target.value;
setInputAmount(value);
if (value === "") {
setAmount({ amount: ethers.constants.Zero });
setError(undefined);
return;
}
try {
const amount = parseUnits(value, selectedItem!.decimals);
// just throw an error if lt 0 and let the catch set the parsing error
if (amount.lt(0)) throw new Error();
setAmount({ amount });
if (error instanceof ParsingError) {
setError(undefined);
}
} catch (e) {
setError(new ParsingError());
}
};
// checks for insufficient balance errors
useEffect(() => {
if (amount && inputAmount) {
// clear the previous error if it is not a parsing error
setError((oldError) => {
if (oldError instanceof ParsingError) {
return oldError;
}
return undefined;
});
if (balances && amount.gt(0)) {
const selectedIndex = tokenList.findIndex(
({ address }) => address === token
);
const balance = tokenBalanceMap[token];
const isEth = tokenList[selectedIndex]?.symbol === "ETH";
if (
balance &&
amount.gt(
isEth
? balance.sub(ethers.utils.parseEther(FEE_ESTIMATION))
: balance
)
) {
setError(new Error("Insufficient balance."));
}
}
}
}, [balances, amount, token, tokenList, inputAmount, tokenBalanceMap]);
const handleMaxClick = () => {
if (balances && selectedItem) {
const selectedIndex = tokenList.findIndex(
({ address }) => address === selectedItem.address
);
const isEth = tokenList[selectedIndex].symbol === "ETH";
let balance = tokenBalanceMap[token];
if (balance) {
if (isEth) {
balance = max(
balance.sub(ethers.utils.parseEther(FEE_ESTIMATION)),
0
);
}
setAmount({ amount: balance });
setInputAmount(formatUnits(balance, selectedItem.decimals));
} else {
setAmount({ amount: ethers.BigNumber.from("0") });
setInputAmount(
formatUnits(ethers.BigNumber.from("0"), selectedItem.decimals)
);
}
}
};
const errorMsg = error
? error.message
: fees?.isAmountTooLow
? "Bridge fee is high for this amount. Send a larger amount."
: fees?.isLiquidityInsufficient
? `Insufficient liquidity for ${selectedItem?.symbol}.`
: undefined;
const showError =
error ||
(fees?.isAmountTooLow && amount.gt(0)) ||
(fees?.isLiquidityInsufficient && amount.gt(0));
return (
<AnimatePresence>
<Section>
<Wrapper>
<SectionTitle>Asset</SectionTitle>
<InputGroup>
<RoundBox as="label" {...getLabelProps()}>
<ToggleButton type="button" {...getToggleButtonProps()}>
<Logo src={selectedItem?.logoURI} alt={selectedItem?.name} />
<div>{selectedItem?.symbol}</div>
<ToggleIcon />
</ToggleButton>
</RoundBox>
<RoundBox
as="label"
htmlFor="amount"
style={{
// @ts-expect-error TS does not likes custom CSS vars
"--color": error
? "var(--color-error-light)"
: "var(--color-white)",
"--outline-color": error
? "var(--color-error)"
: "var(--color-primary)",
}}
>
<MaxButton onClick={handleMaxClick} disabled={!isConnected}>
max
</MaxButton>
<Input
placeholder="0.00"
id="amount"
value={inputAmount}
onChange={handleChange}
/>
</RoundBox>
<Menu {...getMenuProps()} isOpen={isOpen}>
{isOpen &&
tokenList.map((token, index) => (
<Item
{...getItemProps({ item: token, index })}
initial={{ y: -10 }}
animate={{ y: 0 }}
exit={{ y: -10 }}
key={token.address}
>
<Logo src={token.logoURI} alt={token.name} />
<div>{token.name}</div>
<div>
{tokenBalanceMap &&
formatUnits(
tokenBalanceMap[token.address] || "0",
tokenList[index].decimals
)}
</div>
</Item>
))}
</Menu>
</InputGroup>
{showError && <ErrorBox>{errorMsg}</ErrorBox>}
</Wrapper>
</Section>
</AnimatePresence>
);
}
Example #2
Source File: PoolForm.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
PoolForm: FC<Props> = ({
symbol,
icon,
decimals,
totalPoolSize,
totalPosition,
apy,
position,
feesEarned,
bridgeAddress,
lpTokens,
tokenAddress,
setShowSuccess,
setDepositUrl,
balance,
wrongNetwork,
refetchBalance,
defaultTab,
setDefaultTab,
utilization,
projectedApr,
}) => {
const [inputAmount, setInputAmount] = useState("");
const [removeAmount, setRemoveAmount] = useState(0);
const [error] = useState<Error>();
const [formError, setFormError] = useState("");
const [addLiquidityGas, setAddLiquidityGas] = useState<ethers.BigNumber>(
DEFAULT_ADD_LIQUIDITY_ETH_GAS_ESTIMATE
);
const { isConnected, signer } = useConnection();
// update our add-liquidity to contract call gas usage on an interval for eth only
useEffect(() => {
if (!signer || !bridgeAddress || !isConnected || symbol !== "ETH") return;
estimateGasForAddEthLiquidity(signer, bridgeAddress)
.then(setAddLiquidityGas)
.catch((err) => {
console.error("Error getting estimating gas usage", err);
});
// get gas estimate on an interval
const handle = setInterval(() => {
estimateGasForAddEthLiquidity(signer, bridgeAddress)
.then(setAddLiquidityGas)
.catch((err) => {
console.error("Error getting estimating gas usage", err);
});
}, UPDATE_GAS_INTERVAL_MS);
return () => clearInterval(handle);
}, [signer, isConnected, bridgeAddress, symbol]);
// Validate input on change
useEffect(() => {
const value = inputAmount;
try {
// liquidity button should be disabled if value is 0, so we dont actually need an error.
if (Number(value) === 0) return setFormError("");
if (Number(value) < 0) return setFormError("Cannot be less than 0.");
if (value && balance) {
const valueToWei = toWeiSafe(value, decimals);
if (valueToWei.gt(balance)) {
return setFormError("Liquidity amount greater than balance.");
}
}
if (value && symbol === "ETH") {
const valueToWei = toWeiSafe(value, decimals);
if (valueToWei.add(addLiquidityGas).gt(balance)) {
return setFormError("Transaction may fail due to insufficient gas.");
}
}
} catch (e) {
return setFormError("Invalid number.");
}
// clear form if no errors were presented. All errors should return early.
setFormError("");
}, [inputAmount, balance, decimals, symbol, addLiquidityGas]);
const handleMaxClick = useCallback(() => {
let value = ethers.utils.formatUnits(balance, decimals);
if (symbol !== "ETH") return setInputAmount(value);
value = formatEtherRaw(
max("0", BigNumber.from(balance).sub(addLiquidityGas))
);
setInputAmount(value);
}, [balance, decimals, symbol, addLiquidityGas]);
// if pool changes, set input value to "".
useEffect(() => {
setInputAmount("");
setFormError("");
setRemoveAmount(0);
}, [bridgeAddress]);
return (
<Wrapper>
<Info>
<Logo src={icon} />
<InfoText>{symbol} Pool</InfoText>
</Info>
<Position>
<PositionItem>
<div>Position Size</div>
<div>
{formatUnits(totalPosition, decimals).replace("-", "")} {symbol}
</div>
</PositionItem>
<PositionItem>
<div>Total fees earned</div>
<div>
{formatUnits(feesEarned, decimals)} {symbol}
</div>
</PositionItem>
</Position>
<ROI>
<ROIItem>
<div>Total pool size:</div>
<div>
{formatUnits(totalPoolSize, decimals)} {symbol}
</div>
</ROIItem>
<ROIItem>
<div>Pool utilization:</div>
<div>{formatUnits(utilization, 16)}%</div>
</ROIItem>
<ROIItem>
<div>Current APY:</div>
<div>{numberFormatter(Number(apy)).replaceAll(",", "")}%</div>
</ROIItem>
<ROIItem>
<div>Projected APY:</div>
<div>
{numberFormatter(Number(projectedApr)).replaceAll(",", "")}%
</div>
</ROIItem>
</ROI>
<Tabs
defaultTab={defaultTab}
changeDefaultTab={(tab: string) => {
setDefaultTab(tab);
}}
>
<TabContentWrapper data-label="Add">
{blockLiquidity ? (
<LiquidityBlocked>
<div>
Pool migration is happening now, please withdraw liquidity from
here and deposit in{" "}
<a href="https://v2.across.to" target="_blank" rel="noreferrer">
Across v2
</a>
</div>
</LiquidityBlocked>
) : null}
<AddLiquidityForm
wrongNetwork={wrongNetwork}
error={error}
formError={formError}
amount={inputAmount}
onChange={setInputAmount}
bridgeAddress={bridgeAddress}
decimals={decimals}
symbol={symbol}
tokenAddress={tokenAddress}
setShowSuccess={setShowSuccess}
setDepositUrl={setDepositUrl}
balance={balance}
setAmount={setInputAmount}
refetchBalance={refetchBalance}
onMaxClick={handleMaxClick}
/>
</TabContentWrapper>
<TabContentWrapper data-label="Remove">
<RemoveLiquidityForm
wrongNetwork={wrongNetwork}
removeAmount={removeAmount}
setRemoveAmount={setRemoveAmount}
bridgeAddress={bridgeAddress}
lpTokens={lpTokens}
decimals={decimals}
symbol={symbol}
setShowSuccess={setShowSuccess}
setDepositUrl={setDepositUrl}
balance={balance}
position={position}
feesEarned={feesEarned}
totalPosition={totalPosition}
refetchBalance={refetchBalance}
/>
</TabContentWrapper>
</Tabs>
</Wrapper>
);
}
Example #3
Source File: RemoveLiquidityForm.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
RemoveLiqudityForm: FC<Props> = ({
removeAmount,
setRemoveAmount,
bridgeAddress,
lpTokens,
decimals,
symbol,
setShowSuccess,
setDepositUrl,
position,
feesEarned,
wrongNetwork,
totalPosition,
}) => {
const { init } = onboard;
const { isConnected, provider, signer, notify, account } = useConnection();
const [txSubmitted, setTxSubmitted] = useState(false);
const [updateEthBalance] = api.endpoints.ethBalance.useLazyQuery();
function buttonMessage() {
if (!isConnected) return "Connect wallet";
if (wrongNetwork) return "Switch to Ethereum Mainnet";
return "Remove liquidity";
}
const [errorMessage, setErrorMessage] = useState("");
useEffect(() => {
setErrorMessage("");
}, [removeAmount]);
const handleButtonClick = async () => {
if (!provider) {
init();
}
if (isConnected && removeAmount > 0 && signer) {
setErrorMessage("");
const scaler = toBN("10").pow(decimals);
const removeAmountToWei = toWeiSafe(
(removeAmount / 100).toString(),
decimals
);
const weiAmount = lpTokens.mul(removeAmountToWei).div(scaler);
try {
let txId;
if (symbol === "ETH") {
txId = await poolClient.removeEthliquidity(
signer,
bridgeAddress,
weiAmount
);
} else {
txId = await poolClient.removeTokenLiquidity(
signer,
bridgeAddress,
weiAmount
);
}
const transaction = poolClient.getTx(txId);
if (transaction.hash) {
setTxSubmitted(true);
const { emitter } = notify.hash(transaction.hash);
emitter.on("all", addEtherscan);
emitter.on("txConfirmed", (tx) => {
if (transaction.hash) notify.unsubscribe(transaction.hash);
const url = `https://etherscan.io/tx/${transaction.hash}`;
setShowSuccess("withdraw");
setDepositUrl(url);
setTxSubmitted(false);
if (account)
setTimeout(
() => updateEthBalance({ chainId: 1, account }),
15000
);
});
emitter.on("txFailed", () => {
if (transaction.hash) notify.unsubscribe(transaction.hash);
setTxSubmitted(false);
});
}
return transaction;
} catch (err: any) {
setErrorMessage(err.message);
console.error("err in RemoveLiquidity call", err);
}
}
};
const preview = isConnected
? previewRemoval(
{
totalDeposited: position,
feesEarned: max(feesEarned, 0),
positionValue: totalPosition,
},
removeAmount / 100
)
: null;
return (
<>
<RemoveAmount>
Amount: <span>{removeAmount}%</span>
</RemoveAmount>
<PoolFormSlider value={removeAmount} setValue={setRemoveAmount} />
<RemovePercentButtonsWrapper>
<RemovePercentButton onClick={() => setRemoveAmount(25)}>
25%
</RemovePercentButton>
<RemovePercentButton onClick={() => setRemoveAmount(50)}>
50%
</RemovePercentButton>
<RemovePercentButton onClick={() => setRemoveAmount(75)}>
75%
</RemovePercentButton>
<RemovePercentButton onClick={() => setRemoveAmount(100)}>
MAX
</RemovePercentButton>
</RemovePercentButtonsWrapper>
{isConnected && (
<>
<FeesBlockWrapper>
<FeesBlock>
<FeesBoldInfo>
Remove amount <FeesPercent>({removeAmount}%)</FeesPercent>
</FeesBoldInfo>
<FeesInfo>Left in pool</FeesInfo>
</FeesBlock>
<FeesBlock>
<FeesValues>
{preview && formatUnits(preview.position.recieve, decimals)}{" "}
{symbol}
</FeesValues>
<FeesValues>
{preview && formatUnits(preview.position.remain, decimals)}{" "}
{symbol}
</FeesValues>
</FeesBlock>
</FeesBlockWrapper>
<FeesBlockWrapper>
<FeesBlock>
<FeesBoldInfo>Fees claimed</FeesBoldInfo>
<FeesInfo>Left in pool</FeesInfo>
</FeesBlock>
<FeesBlock>
<FeesValues>
{preview && formatUnits(preview.fees.recieve, decimals)}{" "}
{symbol}
</FeesValues>
<FeesValues>
{preview && formatUnits(preview.fees.remain, decimals)} {symbol}
</FeesValues>
</FeesBlock>
</FeesBlockWrapper>
<FeesBlockWrapper>
<FeesBlock>
<FeesBoldInfo>You will receive</FeesBoldInfo>
</FeesBlock>
<FeesBlock>
<FeesValues>
{preview && formatUnits(preview.total.recieve, decimals)}{" "}
{symbol}
</FeesValues>
</FeesBlock>
</FeesBlockWrapper>
</>
)}
<RemoveFormButtonWrapper>
{errorMessage && (
<RemoveFormErrorBox>
<div>{errorMessage}</div>
</RemoveFormErrorBox>
)}
{wrongNetwork && provider ? (
<RemoveFormButton
onClick={() => switchChain(provider, DEFAULT_TO_CHAIN_ID)}
>
Switch to {CHAINS[DEFAULT_TO_CHAIN_ID].name}
</RemoveFormButton>
) : (
<RemoveFormButton
onClick={handleButtonClick}
disabled={wrongNetwork && !provider}
>
{buttonMessage()}
{txSubmitted ? <BouncingDotsLoader /> : null}
</RemoveFormButton>
)}
</RemoveFormButtonWrapper>
</>
);
}
Example #4
Source File: PoolSelection.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
PoolSelection: FC<Props> = ({ token, setToken, position }) => {
const { account } = useConnection();
const { data: balances } = useBalances(
{
account: account!,
chainId: ChainId.MAINNET,
},
{ skip: !account }
);
const {
isOpen,
selectedItem,
getLabelProps,
getToggleButtonProps,
getItemProps,
getMenuProps,
} = useSelect({
items: TOKENS_LIST[ChainId.MAINNET],
defaultSelectedItem: token,
onSelectedItemChange: ({ selectedItem }) => {
if (selectedItem) {
setToken(selectedItem);
}
},
});
return (
<AnimatePresence>
<Wrapper>
{migrationPoolV2Warning ? (
<MigrationWarning>
<div>
If you have not migrated liquidity from Across v1 to Across v2,
please follow{" "}
<a
href="https://docs.across.to/v2/migrating-from-v1"
target="_blank"
rel="noreferrer"
>
{" "}
these instructions
</a>{" "}
</div>
</MigrationWarning>
) : null}
<SectionTitle>Select pool</SectionTitle>
<InputGroup>
<RoundBox as="label" {...getLabelProps()}>
<ToggleButton type="button" {...getToggleButtonProps()}>
<Logo src={selectedItem?.logoURI} alt={selectedItem?.name} />
<div>{selectedItem?.symbol}</div>
<ToggleIcon />
</ToggleButton>
</RoundBox>
<Menu {...getMenuProps()} isOpen={isOpen}>
{isOpen &&
TOKENS_LIST[ChainId.MAINNET].map((t, index) => {
return (
<Item
{...getItemProps({ item: t, index })}
key={t.address}
initial={{ y: -10 }}
animate={{ y: 0 }}
exit={{ y: -10 }}
>
<Logo src={t.logoURI} alt={t.name} />
<div>{t.name}</div>
<div>
{balances && formatUnits(balances[index], t.decimals)}
</div>
</Item>
);
})}
</Menu>
</InputGroup>
</Wrapper>
</AnimatePresence>
);
}
Example #5
Source File: SendAction.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
SendAction: React.FC = () => {
const {
amount,
token,
send,
hasToApprove,
canApprove,
canSend,
toAddress,
approve,
fees,
spender,
} = useSend();
const { signer, account, name } = useConnection();
const sendState = useAppSelector((state) => state.send);
const [isInfoModalOpen, setOpenInfoModal] = useState(false);
const toggleInfoModal = () => setOpenInfoModal((oldOpen) => !oldOpen);
const [isSendPending, setSendPending] = useState(false);
const [isApprovalPending, setApprovalPending] = useState(false);
const { addTransaction } = useTransactions();
const { addDeposit } = useDeposits();
const [updateEthBalance] = api.endpoints.ethBalance.useLazyQuery();
const { trackEvent } = useMatomo();
// trigger balance update
const [updateBalances] = api.endpoints.balances.useLazyQuery();
const tokenInfo = TOKENS_LIST[
sendState.currentlySelectedFromChain.chainId
].find((t) => t.address === token);
const { error, addError, removeError } = useContext(ErrorContext);
const { refetch } = useAllowance(
{
owner: account!,
spender,
chainId: sendState.currentlySelectedFromChain.chainId,
token,
amount,
},
{ skip: !account }
);
const handleApprove = async () => {
const tx = await approve();
if (tx) {
addTransaction({ ...tx, meta: { label: TransactionTypes.APPROVE } });
await tx.wait(CONFIRMATIONS);
refetch();
}
};
const handleSend = async () => {
const { tx, fees } = await send();
if (tx && fees) {
addTransaction({ ...tx, meta: { label: TransactionTypes.DEPOSIT } });
const receipt = await tx.wait(CONFIRMATIONS);
addDeposit({
tx: receipt,
toChain: sendState.currentlySelectedToChain.chainId,
fromChain: sendState.currentlySelectedFromChain.chainId,
amount,
token,
toAddress,
fees,
});
// update balances after tx
if (account) {
updateEthBalance({
chainId: sendState.currentlySelectedFromChain.chainId,
account,
});
updateBalances({
chainId: sendState.currentlySelectedFromChain.chainId,
account,
});
}
}
};
const handleClick = () => {
if (amount.lte(0) || !signer || disableSendForm) {
return;
}
if (hasToApprove) {
setApprovalPending(true);
handleApprove()
.catch((err) => {
addError(new Error(`Error in approve call: ${err.message}`));
console.error(err);
})
.finally(() => setApprovalPending(false));
return;
}
if (canSend) {
// Matomo track send transactions
trackEvent({
category: "send",
action: "bridge",
name:
tokenInfo &&
JSON.stringify({
symbol: tokenInfo.symbol,
from: sendState.currentlySelectedFromChain.chainId,
to: sendState.currentlySelectedToChain.chainId,
}),
value: tokenInfo && Number(formatUnits(amount, tokenInfo.decimals)),
});
setSendPending(true);
if (error) removeError();
handleSend()
.catch((err) => {
addError(new Error(`Error with send call: ${err.message}`));
console.error(err);
})
// this actually happens after component unmounts, which is not good. it causes a react warning, but we need
// it here if user cancels the send. so keep this until theres a better way.
.finally(() => setSendPending(false));
}
};
const buttonMsg = () => {
if (isSendPending) return "Sending in progress...";
if (isApprovalPending) return "Approval in progress...";
if (hasToApprove) return "Approve";
return "Send";
};
const amountMinusFees = useMemo(() => {
if (sendState.currentlySelectedFromChain.chainId === ChainId.MAINNET) {
return amount;
}
return receiveAmount(amount, fees);
}, [amount, fees, sendState.currentlySelectedFromChain.chainId]);
const buttonDisabled =
isSendPending ||
isApprovalPending ||
(!hasToApprove && !canSend) ||
(hasToApprove && !canApprove) ||
amountMinusFees.lte(0);
const isWETH = tokenInfo?.symbol === "WETH";
return (
<AccentSection>
<Wrapper>
{amount.gt(0) && fees && tokenInfo && (
<>
<InfoHeadlineContainer>
<SlippageDisclaimer>
<ConfettiIcon />
All transfers are slippage free!
</SlippageDisclaimer>
<FeesButton onClick={toggleInfoModal}>Fees info</FeesButton>
</InfoHeadlineContainer>
<InfoContainer>
<Info>
{`Time to ${
CHAINS[sendState.currentlySelectedToChain.chainId].name
}`}
<div>
{getEstimatedDepositTime(
sendState.currentlySelectedToChain.chainId
)}
</div>
</Info>
{sendState.currentlySelectedFromChain.chainId !==
ChainId.MAINNET && (
<Info>
<div>Ethereum Network Gas</div>
<div>
{formatUnits(
fees.instantRelayFee.total.add(fees.slowRelayFee.total),
tokenInfo.decimals
)}{" "}
{tokenInfo.symbol}
</div>
</Info>
)}
<Info>
<div>
{sendState.currentlySelectedFromChain.chainId ===
ChainId.MAINNET
? "Native Bridge Fee"
: "Across Bridge Fee"}
</div>
<div>
{sendState.currentlySelectedFromChain.chainId ===
ChainId.MAINNET
? "Free"
: `${formatUnits(fees.lpFee.total, tokenInfo.decimals)}
${tokenInfo.symbol}`}
</div>
</Info>
</InfoContainer>
<AmountToReceive>
You will receive
<span>
{formatUnits(amountMinusFees, tokenInfo.decimals)}{" "}
{isWETH ? "ETH" : tokenInfo.symbol}
</span>
</AmountToReceive>
</>
)}
<PrimaryButton
onClick={handleClick}
disabled={buttonDisabled || !!disableSendForm}
>
<span>{buttonMsg()}</span>
</PrimaryButton>
{name && name === "WalletConnect" && (
<WalletConnectWarning>
<span>
Do not change networks after connecting to Across with
WalletConnect. Across is not responsible for wallet-based
integration issues with WalletConnect.
</span>
</WalletConnectWarning>
)}
{sendState.currentlySelectedFromChain.chainId === ChainId.MAINNET && (
<L1Info>
<div>L1 to L2 transfers use the destination’s native bridge</div>
</L1Info>
)}
</Wrapper>
<InformationDialog isOpen={isInfoModalOpen} onClose={toggleInfoModal} />
</AccentSection>
);
}
Example #6
Source File: Confirmation.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
Confirmation: React.FC = () => {
const { deposit, toggle } = useDeposits();
if (!deposit) return null;
const amountMinusFees = receiveAmount(deposit.amount, deposit.fees);
const tokenInfo = TOKENS_LIST[deposit.fromChain].find(
(t) => t.address === deposit.token
);
const isWETH = tokenInfo?.symbol === "WETH";
return (
<Layout>
<Wrapper>
<Header>
<Heading>Deposit succeeded</Heading>
<SubHeading>
Your funds will arrive in{" "}
{getConfirmationDepositTime(deposit.toChain)}
</SubHeading>
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
</Header>
<InfoSection>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
<div>
<Row>
<Info>
<h3>Sending</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(deposit.amount, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info>
<Info></Info>
<Info>
<h3>Receiving</h3>
<div>
<Logo
src={isWETH ? MAINNET_ETH?.logoURI : tokenInfo?.logoURI}
alt={`${
isWETH ? MAINNET_ETH?.symbol : tokenInfo?.symbol
} logo`}
/>
<div>
{formatUnits(
amountMinusFees,
(isWETH ? MAINNET_ETH?.decimals : tokenInfo?.decimals) ??
18
)}{" "}
{isWETH ? MAINNET_ETH?.symbol : tokenInfo?.symbol}
</div>
</div>
</Info>
</Row>
<Info>
<h3>From</h3>
<div>
<Logo
src={CHAINS[deposit.fromChain].logoURI}
alt={`${CHAINS[deposit.fromChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.fromChain].explorerUrl}/address/${
deposit.from
}`}
target="_blank"
rel="noopener noreferrer"
>
<span>{deposit.from}</span>
<span>{shortenAddressLong(deposit.from ?? "")}</span>
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>To</h3>
<div>
<Logo
src={CHAINS[deposit.toChain].logoURI}
alt={`${CHAINS[deposit.toChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.toChain].explorerUrl}/address/${
deposit.toAddress
}`}
target="_blank"
rel="noopener noreferrer"
>
<span>{deposit.toAddress}</span>
<span>{shortenAddressLong(deposit.toAddress ?? "")}</span>
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>Estimated time of arrival</h3>
<div>
<div>{getConfirmationDepositTime(deposit.toChain)}</div>
</div>
</Info>
</div>
<Button onClick={() => toggle({ showConfirmationScreen: false })}>
Close
</Button>
</InfoSection>
</Wrapper>
</Layout>
);
}
Example #7
Source File: NewConfirmation.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
Confirmation: React.FC = () => {
const { deposit, toggle } = useDeposits();
const [l1DepositSuccess] = useState(true);
if (!deposit) return null;
// const amountMinusFees = receiveAmount(deposit.amount, deposit.fees);
const tokenInfo = TOKENS_LIST[deposit.fromChain].find(
(t) => t.address === deposit.token
);
return (
<Layout>
<Wrapper>
<Header>
<SuccessIconRow>
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
{l1DepositSuccess ? (
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
) : (
<ConfirmationIcon>
<div>~2 minutes</div>
</ConfirmationIcon>
)}
</SuccessIconRow>
{l1DepositSuccess ? <SuccessIconRow /> : <ConfirmationLine />}
<SuccessInfoRow>
<SuccessInfoBlock>
<SuccessInfoText>Deposit succeeded</SuccessInfoText>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
</SuccessInfoBlock>
<SuccessInfoBlock>
{l1DepositSuccess ? (
<>
<SuccessInfoText>Transfer succeeded</SuccessInfoText>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
</>
) : (
<ConfirmationText>Funds transferred</ConfirmationText>
)}
</SuccessInfoBlock>
</SuccessInfoRow>
</Header>
<InfoSection>
<div>
<Row>
<Info>
<h3>Send</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(deposit.amount, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info>
<Info></Info>
{/* <Info>
<h3>Receiving</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(amountMinusFees, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info> */}
</Row>
<Info>
<h3>From</h3>
<div>
<Logo
src={CHAINS[deposit.fromChain].logoURI}
alt={`${CHAINS[deposit.fromChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.fromChain].explorerUrl}/address/${
deposit.from
}`}
target="_blank"
rel="noopener noreferrer"
>
{deposit.from}
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>To</h3>
<div>
<Logo
src={CHAINS[deposit.toChain].logoURI}
alt={`${CHAINS[deposit.toChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.toChain].explorerUrl}/address/${
deposit.toAddress
}`}
target="_blank"
rel="noopener noreferrer"
>
{deposit.toAddress}
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>Estimated time of arrival</h3>
<div>
<div>~2 minutes</div>
</div>
</Info>
</div>
<Button onClick={() => toggle({ showConfirmationScreen: false })}>
Close
</Button>
</InfoSection>
</Wrapper>
</Layout>
);
}