chore: update tooltips for asset limits (#1733)

This commit is contained in:
candida-d 2022-10-13 14:19:05 +01:00 committed by GitHub
parent 29e6bc8375
commit cb92a30015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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. Theres 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),
},