From cb92a300153108030683d751d5e1f270e1f8f287 Mon Sep 17 00:00:00 2001 From: candida-d <62548908+candida-d@users.noreply.github.com> Date: Thu, 13 Oct 2022 14:19:05 +0100 Subject: [PATCH] chore: update tooltips for asset limits (#1733) --- libs/assets/src/lib/asset-details-table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/assets/src/lib/asset-details-table.tsx b/libs/assets/src/lib/asset-details-table.tsx index f41e83db9..96382074a 100644 --- a/libs/assets/src/lib/asset-details-table.tsx +++ b/libs/assets/src/lib/asset-details-table.tsx @@ -103,7 +103,7 @@ export const rows: Rows = [ key: AssetDetail.WITHDRAWAL_THRESHOLD, label: t('Withdrawal threshold'), tooltip: t( - 'The maximum allowed per withdrawal. Note: this is a temporary measure for restricted mainnet' + 'The maximum you can withdraw instantly. There’s no limit on the size of a withdrawal, but all withdrawals over the threshold will have a delay time added to them' ), value: (asset) => num(asset, (asset.source as Schema.ERC20).withdrawThreshold), @@ -112,7 +112,7 @@ export const rows: Rows = [ key: AssetDetail.LIFETIME_LIMIT, label: t('Lifetime limit'), tooltip: t( - 'The lifetime deposit limit per address. Note: this is a temporary measure for restricted mainnet' + 'The lifetime deposit limit per address. Note: this is a temporary measure that can be changed or removed through governance' ), value: (asset) => num(asset, (asset.source as Schema.ERC20).lifetimeLimit), },