You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
2 years ago
|
import { useEffect, useState } from 'react';
|
||
|
import { useSelector } from 'react-redux';
|
||
|
import { handleSnapRequest } from '../../store/actions';
|
||
|
import { getPermissionSubjects } from '../../selectors';
|
||
|
|
||
|
const INSIGHT_PERMISSION = 'endowment:transaction-insight';
|
||
|
|
||
|
export function useTransactionInsightSnap({ transaction, chainId, snapId }) {
|
||
|
const subjects = useSelector(getPermissionSubjects);
|
||
|
if (!subjects[snapId]?.permissions[INSIGHT_PERMISSION]) {
|
||
|
throw new Error(
|
||
|
'This snap does not have the transaction insight endowment.',
|
||
|
);
|
||
|
}
|
||
|
const [data, setData] = useState(undefined);
|
||
|
|
||
|
useEffect(() => {
|
||
|
async function fetchInsight() {
|
||
|
const d = await handleSnapRequest({
|
||
|
snapId,
|
||
|
origin: 'test',
|
||
|
handler: 'onTransaction',
|
||
|
request: {
|
||
|
jsonrpc: '2.0',
|
||
|
method: ' ',
|
||
|
params: { transaction, chainId },
|
||
|
},
|
||
|
});
|
||
|
setData(d);
|
||
|
}
|
||
|
if (transaction) {
|
||
|
fetchInsight();
|
||
|
}
|
||
|
}, [snapId, transaction, chainId]);
|
||
|
|
||
|
return data;
|
||
|
}
|