2021-02-04 19:15:23 +01:00
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { getTokenData } from '../helpers/utils/transactions.util';
|
2020-05-26 22:49:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* useTokenData
|
|
|
|
* Given the data string from txParams return a decoded object of the details of the
|
|
|
|
* transaction data.
|
2020-11-10 18:30:41 +01:00
|
|
|
* @param {string} [transactionData] - Raw data string from token transaction
|
2020-05-26 22:49:11 +02:00
|
|
|
* @param {boolean} [isTokenTransaction] - Due to the nature of hooks, it isn't possible
|
|
|
|
* to conditionally call this hook. This flag will
|
|
|
|
* force this hook to return null if it set as false
|
|
|
|
* which indicates the transaction is not associated
|
|
|
|
* with a token.
|
|
|
|
* @return {Object} - Decoded token data
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
export function useTokenData(transactionData, isTokenTransaction = true) {
|
2020-05-26 22:49:11 +02:00
|
|
|
return useMemo(() => {
|
|
|
|
if (!isTokenTransaction || !transactionData) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return null;
|
2020-05-26 22:49:11 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
return getTokenData(transactionData);
|
|
|
|
}, [isTokenTransaction, transactionData]);
|
2020-05-26 22:49:11 +02:00
|
|
|
}
|