Delete job

The ees-sdk makes it easy to delete a job given it's index.

const transactionReceipt: TransactionReceipt = await eesSDK.deleteJob(index);

Here index is of type bigint and specifies the index of job to delete. The returned value of viem's type TransactionReceipt gives information about the transaction.

Last updated