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.
26 lines
728 B
26 lines
728 B
import { useCallback, useState } from 'react';
|
|
|
|
/**
|
|
* Determine whether a transaction can be approved and provide a method to
|
|
* kick off the approval process.
|
|
*
|
|
* Provides a reusable hook that, given a transactionGroup, will manage
|
|
* the process of editing gas for approvals
|
|
*
|
|
* @returns {[boolean, Function]}
|
|
*/
|
|
export function useApproveTransaction() {
|
|
const [showCustomizeGasPopover, setShowCustomizeGasPopover] = useState(false);
|
|
|
|
const closeCustomizeGasPopover = () => setShowCustomizeGasPopover(false);
|
|
|
|
const approveTransaction = useCallback(() => {
|
|
return setShowCustomizeGasPopover(true);
|
|
}, []);
|
|
|
|
return {
|
|
approveTransaction,
|
|
showCustomizeGasPopover,
|
|
closeCustomizeGasPopover,
|
|
};
|
|
}
|
|
|