mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
New metrics data for token approval transactions (#15289)
This commit is contained in:
parent
7aadddc81e
commit
6e0f130168
@ -27,6 +27,8 @@ import {
|
||||
import {
|
||||
TRANSACTION_STATUSES,
|
||||
TRANSACTION_TYPES,
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE,
|
||||
TOKEN_STANDARDS,
|
||||
TRANSACTION_ENVELOPE_TYPES,
|
||||
TRANSACTION_EVENTS,
|
||||
} from '../../../../shared/constants/transaction';
|
||||
@ -1965,6 +1967,61 @@ export default class TransactionController extends EventEmitter {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The allowance amount in relation to the dapp proposed amount for specific token
|
||||
*
|
||||
* @param {string} transactionApprovalAmountType - The transaction approval amount type
|
||||
* @param {string} originalApprovalAmount - The original approval amount is the originally dapp proposed token amount
|
||||
* @param {string} finalApprovalAmount - The final approval amount is the chosen amount which will be the same as the
|
||||
* originally dapp proposed token amount if the user does not edit the amount or will be a custom token amount set by the user
|
||||
*/
|
||||
_allowanceAmountInRelationToDappProposedValue(
|
||||
transactionApprovalAmountType,
|
||||
originalApprovalAmount,
|
||||
finalApprovalAmount,
|
||||
) {
|
||||
if (
|
||||
transactionApprovalAmountType ===
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.CUSTOM &&
|
||||
originalApprovalAmount &&
|
||||
finalApprovalAmount
|
||||
) {
|
||||
return `${new BigNumber(originalApprovalAmount, 10)
|
||||
.div(finalApprovalAmount, 10)
|
||||
.times(100)
|
||||
.round(2)}`;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The allowance amount in relation to the balance for that specific token
|
||||
*
|
||||
* @param {string} transactionApprovalAmountType - The transaction approval amount type
|
||||
* @param {string} dappProposedTokenAmount - The dapp proposed token amount
|
||||
* @param {string} currentTokenBalance - The balance of the token that is being send
|
||||
*/
|
||||
_allowanceAmountInRelationToTokenBalance(
|
||||
transactionApprovalAmountType,
|
||||
dappProposedTokenAmount,
|
||||
currentTokenBalance,
|
||||
) {
|
||||
if (
|
||||
(transactionApprovalAmountType ===
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.CUSTOM ||
|
||||
transactionApprovalAmountType ===
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.DAPP_PROPOSED) &&
|
||||
dappProposedTokenAmount &&
|
||||
currentTokenBalance
|
||||
) {
|
||||
return `${new BigNumber(dappProposedTokenAmount, 16)
|
||||
.div(currentTokenBalance, 10)
|
||||
.times(100)
|
||||
.round(2)}`;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
async _buildEventFragmentProperties(txMeta, extraParams) {
|
||||
const {
|
||||
id,
|
||||
@ -2074,8 +2131,20 @@ export default class TransactionController extends EventEmitter {
|
||||
TRANSACTION_TYPES.SWAP_APPROVAL,
|
||||
].includes(type);
|
||||
|
||||
let transactionType = TRANSACTION_TYPES.SIMPLE_SEND;
|
||||
const contractMethodNames = {
|
||||
APPROVE: 'Approve',
|
||||
};
|
||||
|
||||
const customTokenAmount = transactions[id]?.customTokenAmount;
|
||||
const dappProposedTokenAmount = transactions[id]?.dappProposedTokenAmount;
|
||||
const currentTokenBalance = transactions[id]?.currentTokenBalance;
|
||||
const originalApprovalAmount = transactions[id]?.originalApprovalAmount;
|
||||
const finalApprovalAmount = transactions[id]?.finalApprovalAmount;
|
||||
let transactionApprovalAmountType;
|
||||
let transactionContractMethod;
|
||||
let transactionApprovalAmountVsProposedRatio;
|
||||
let transactionApprovalAmountVsBalanceRatio;
|
||||
let transactionType = TRANSACTION_TYPES.SIMPLE_SEND;
|
||||
if (type === TRANSACTION_TYPES.CANCEL) {
|
||||
transactionType = TRANSACTION_TYPES.CANCEL;
|
||||
} else if (type === TRANSACTION_TYPES.RETRY) {
|
||||
@ -2085,6 +2154,33 @@ export default class TransactionController extends EventEmitter {
|
||||
} else if (contractInteractionTypes) {
|
||||
transactionType = TRANSACTION_TYPES.CONTRACT_INTERACTION;
|
||||
transactionContractMethod = transactions[id]?.contractMethodName;
|
||||
if (
|
||||
transactionContractMethod === contractMethodNames.APPROVE &&
|
||||
tokenStandard === TOKEN_STANDARDS.ERC20
|
||||
) {
|
||||
if (dappProposedTokenAmount === '0' || customTokenAmount === '0') {
|
||||
transactionApprovalAmountType =
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.REVOKE;
|
||||
} else if (customTokenAmount) {
|
||||
transactionApprovalAmountType =
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.CUSTOM;
|
||||
} else if (dappProposedTokenAmount) {
|
||||
transactionApprovalAmountType =
|
||||
TRANSACTION_APPROVAL_AMOUNT_TYPE.DAPP_PROPOSED;
|
||||
}
|
||||
transactionApprovalAmountVsProposedRatio =
|
||||
this._allowanceAmountInRelationToDappProposedValue(
|
||||
transactionApprovalAmountType,
|
||||
originalApprovalAmount,
|
||||
finalApprovalAmount,
|
||||
);
|
||||
transactionApprovalAmountVsBalanceRatio =
|
||||
this._allowanceAmountInRelationToTokenBalance(
|
||||
transactionApprovalAmountType,
|
||||
dappProposedTokenAmount,
|
||||
currentTokenBalance,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const replacedTxMeta = this._getTransaction(replacedById);
|
||||
@ -2105,7 +2201,7 @@ export default class TransactionController extends EventEmitter {
|
||||
}
|
||||
}
|
||||
|
||||
const properties = {
|
||||
let properties = {
|
||||
chain_id: chainId,
|
||||
referrer,
|
||||
source,
|
||||
@ -2121,7 +2217,14 @@ export default class TransactionController extends EventEmitter {
|
||||
transaction_speed_up: type === TRANSACTION_TYPES.RETRY,
|
||||
};
|
||||
|
||||
const sensitiveProperties = {
|
||||
if (transactionContractMethod === contractMethodNames.APPROVE) {
|
||||
properties = {
|
||||
...properties,
|
||||
transaction_approval_amount_type: transactionApprovalAmountType,
|
||||
};
|
||||
}
|
||||
|
||||
let sensitiveProperties = {
|
||||
status,
|
||||
transaction_envelope_type: isEIP1559Transaction(txMeta)
|
||||
? TRANSACTION_ENVELOPE_TYPE_NAMES.FEE_MARKET
|
||||
@ -2134,6 +2237,16 @@ export default class TransactionController extends EventEmitter {
|
||||
...gasParamsInGwei,
|
||||
};
|
||||
|
||||
if (transactionContractMethod === contractMethodNames.APPROVE) {
|
||||
sensitiveProperties = {
|
||||
...sensitiveProperties,
|
||||
transaction_approval_amount_vs_balance_ratio:
|
||||
transactionApprovalAmountVsBalanceRatio,
|
||||
transaction_approval_amount_vs_proposed_ratio:
|
||||
transactionApprovalAmountVsProposedRatio,
|
||||
};
|
||||
}
|
||||
|
||||
return { properties, sensitiveProperties };
|
||||
}
|
||||
|
||||
|
@ -189,6 +189,24 @@ export const SMART_TRANSACTION_STATUSES = {
|
||||
SUCCESS: 'success',
|
||||
};
|
||||
|
||||
/**
|
||||
* Types that are specific to the transaction approval amount.
|
||||
*
|
||||
* @typedef {object} TransactionApprovalAmountType
|
||||
* @property {'custom'} CUSTOM - The user has edited the token amount.
|
||||
* @property {'revoke'} REVOKE - The selected amount (either CUSTOM or DAPP_PROPOSED) is 0.
|
||||
* @property {'dapp_proposed'} DAPP_PROPOSED - The dapp proposed token amount.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @type {TransactionApprovalAmountType}
|
||||
*/
|
||||
export const TRANSACTION_APPROVAL_AMOUNT_TYPE = {
|
||||
CUSTOM: 'custom',
|
||||
REVOKE: 'revoke',
|
||||
DAPP_PROPOSED: 'dapp_proposed',
|
||||
};
|
||||
|
||||
/**
|
||||
* Transaction Group Category is a MetaMask construct to categorize the intent
|
||||
* of a group of transactions for purposes of displaying in the UI
|
||||
@ -254,6 +272,16 @@ export const TRANSACTION_GROUP_CATEGORIES = {
|
||||
* epoch time (ms).
|
||||
* @property {string} contractMethodName - A string representing a name of
|
||||
* transaction contract method.
|
||||
* @property {string} customTokenAmount - The custom token amount is the amount
|
||||
* set by the user
|
||||
* @property {string} dappProposedTokenAmount - The dapp proposed token amount
|
||||
* @property {string} currentTokenBalance - The balance of the token that is
|
||||
* being send
|
||||
* @property {string} originalApprovalAmount - The original approval amount
|
||||
* is the originally dapp proposed token amount
|
||||
* @property {string} finalApprovalAmount - The chosen amount which will be the
|
||||
* same as the originally proposed token amount if the user does not edit the
|
||||
* amount or will be a custom token amount set by the user
|
||||
* @property {TransactionTypeString} type - The type of transaction this txMeta
|
||||
* represents.
|
||||
* @property {string} originalType - When we speed up a transaction,
|
||||
|
@ -168,6 +168,9 @@ export default function ConfirmApprove({
|
||||
identiconAddress={toAddress}
|
||||
showAccountInHeader
|
||||
title={tokensText}
|
||||
customTokenAmount={String(customPermissionAmount)}
|
||||
dappProposedTokenAmount={tokenAmount}
|
||||
currentTokenBalance={tokenBalance}
|
||||
contentComponent={
|
||||
<TransactionModalContextProvider>
|
||||
<ConfirmApproveContent
|
||||
|
@ -116,6 +116,9 @@ export default class ConfirmTransactionBase extends Component {
|
||||
hideData: PropTypes.bool,
|
||||
hideSubtitle: PropTypes.bool,
|
||||
tokenAddress: PropTypes.string,
|
||||
customTokenAmount: PropTypes.string,
|
||||
dappProposedTokenAmount: PropTypes.string,
|
||||
currentTokenBalance: PropTypes.string,
|
||||
onEdit: PropTypes.func,
|
||||
subtitleComponent: PropTypes.node,
|
||||
title: PropTypes.string,
|
||||
@ -804,6 +807,9 @@ export default class ConfirmTransactionBase extends Component {
|
||||
mostRecentOverviewPage,
|
||||
updateCustomNonce,
|
||||
maxFeePerGas,
|
||||
customTokenAmount,
|
||||
dappProposedTokenAmount,
|
||||
currentTokenBalance,
|
||||
maxPriorityFeePerGas,
|
||||
baseFeePerGas,
|
||||
methodData,
|
||||
@ -823,6 +829,22 @@ export default class ConfirmTransactionBase extends Component {
|
||||
txData.contractMethodName = name;
|
||||
}
|
||||
|
||||
if (dappProposedTokenAmount) {
|
||||
txData.dappProposedTokenAmount = dappProposedTokenAmount;
|
||||
txData.originalApprovalAmount = dappProposedTokenAmount;
|
||||
}
|
||||
|
||||
if (customTokenAmount) {
|
||||
txData.customTokenAmount = customTokenAmount;
|
||||
txData.finalApprovalAmount = customTokenAmount;
|
||||
} else if (dappProposedTokenAmount !== undefined) {
|
||||
txData.finalApprovalAmount = dappProposedTokenAmount;
|
||||
}
|
||||
|
||||
if (currentTokenBalance) {
|
||||
txData.currentTokenBalance = currentTokenBalance;
|
||||
}
|
||||
|
||||
if (maxFeePerGas) {
|
||||
txData.txParams = {
|
||||
...txData.txParams,
|
||||
|
Loading…
Reference in New Issue
Block a user