useBuildDepositToMorphoTx
The useBuildDepositToMorphoTx
hook is used to build a deposit transaction to Morpho from within a React component.
The hook handles the following:
- Fetching data required to build the transaction
- Using
buildDepositToMorphoTx
to build the transaction - Returning the transaction calls to be used with the
<Transaction />
component
Usage
code
import { useBuildDepositToMorphoTx } from '@coinbase/onchainkit/earn';
const { calls } = useBuildDepositToMorphoTx({
vaultAddress: '0x...',
recipientAddress: '0x...',
amount: '1000000000000000000',
});