Skip to main content

useScaffoldContractWrite

Use this hook to send a transaction to your smart contract to write data or perform an action.

const { writeAsync, isLoading, isMining } = useScaffoldContractWrite({
contractName: "YourContract",
functionName: "setGreeting",
args: ["The value to set"],
value: parseEther("0.1"),
blockConfirmations: 1,
onBlockConfirmation: txnReceipt => {
console.log("Transaction blockHash", txnReceipt.blockHash);
},
});

To send the transaction, you can call the writeAsync function returned by the hook. Here's an example usage:

<button className="btn btn-primary" onClick={() => writeAsync()}>
Send TX
</button>

This example sends a transaction to the YourContract smart contract to call the setGreeting function with the arguments passed in args. The writeAsync function sends the transaction to the smart contract.

It is also possible to pass arguments imperatively to the writeAsync function:

<button className="btn btn-primary" onClick={() => writeAsync({ args: ["Dynamic value"], value: parseEther("0.2") })}>
Send TX
</button>

Configurationโ€‹

ParameterTypeDescription
contractNamestringName of the contract to write to.
functionNamestringName of the function to call.
args (optional)any[]Array of arguments to pass to the function (if accepts any).
value (optional)bigintAmount of ETH to send with the transaction (for payable functions only).
onBlockConfirmation (optional)functionCallback function to execute when the transaction is confirmed.
blockConfirmations (optional)numberNumber of block confirmations to wait for before considering transaction to be confirmed (default : 1).

You can also pass other arguments accepted by useContractWrite wagmi hook.

Return Valuesโ€‹

  • writeAsync function sends the transaction to the smart contract.
  • isMining property indicates whether the transaction is currently being mined.
  • The extended object includes properties inherited from wagmi useContractWrite. You can check the useContractWrite return values documentation to check the types.