Delete Scheduled Transaction
Summary:
This script deletes a scheduled transaction on the Hedera network using its schedule ID. It demonstrates how to use the ScheduleDeleteTransaction
to create a transaction for deleting a scheduled transaction, sign it with the admin key, execute it on the Hedera network, and retrieve the transaction status to confirm the deletion operation
Step 1: Imports and Environment Setup
The script imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
):ScheduleDeleteTransaction
,Client
, andPrivateKey
.It also imports the
dotenv
module to load environment variables from a.env
file located in theScheduled_TX
directory.
Step 2: Environment Variables Retrieval and Validation
The code retrieves necessary environment variables such as account ID and private key from the
.env
file.It validates that the required environment variables (
MY_ACCOUNT_ID
andMY_PRIVATE_KEY
) are present. If not, it throws an error.
Step 3: Client Setup
It creates a client instance for the Hedera testnet and sets the operator account using the user's account ID and private key.
Step 4: Main Function
This is the main function named
main()
.It creates a
ScheduleDeleteTransaction
instance to delete the scheduled transaction using the provided schedule ID.The transaction is frozen with the client, signed with the admin key (private key), and executed using the client.
The script then retrieves the receipt of the transaction to obtain its status, which indicates the consensus status of the deletion operation.
The transaction consensus status is logged to the console.
Step 5: Execution:
This line calls the
main()
function to start the execution of the script.
Last updated
Was this helpful?