Create Scheduled Transaction
Summary
This script sets up a scheduled transaction to transfer cryptocurrency between two accounts on the Hedera network. It demonstrates the process of creating a scheduled transaction, setting up the scheduled transaction parameters, executing the schedule transaction, and obtaining information about the created schedule.
Step 1: Imports and Environment Setup
The script imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
):TransferTransaction
,Client
,ScheduleCreateTransaction
,PrivateKey
,Hbar
, andScheduleInfoQuery
.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 IDs and private keys 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
TransferTransaction
instance to transfer cryptocurrency between two accounts.It transfers 100 Hbars from
myAccountId
tootherAccountId
and transfers 100 Hbars frommyAccountId
tootherAccountId2
.
It creates a
ScheduleCreateTransaction
instance to schedule the previously created transfer transaction.It sets the scheduled transaction to the transfer transaction created earlier, sets a memo for the schedule, and sets the admin key (private key) for the schedule.
The schedule transaction is then executed using the client.
t retrieves the receipt of the schedule transaction to obtain information about the created schedule.
It extracts the schedule ID and the ID of the scheduled transaction from the receipt.
The script then logs the schedule ID and the scheduled transaction ID to the console.
Step 5: Execution
This line calls the main()
function to start the execution of the script.
Last updated
Was this helpful?