Submit a message
Now you are ready to submit your first message to the topic. To do this, you will use TopicMessageSubmitTransaction(). For this transaction, you will provide the topic ID and the message to submit to
Step 1 : Imports
The script imports necessary modules from the Hedera JavaScript SDK:
PrivateKey
,TopicMessageSubmitTransaction
, andClient
.It also imports the
dotenv
module to load environment variables from a.env
file located in theConsensus_Service
directory.
Step 2 : Environment Variables Retrieval
These lines retrieve environment variables such as MY_ACCOUNT_ID
, MY_PRIVATE_KEY
, and TOPIC_ID
from the .env
file using process.env
.
Step 3 : Validation
This block of code ensures that the required environment variables (MY_ACCOUNT_ID
and MY_PRIVATE_KEY
) are present. If not, it throws an error.
Step 4 : Main Function
This is the main function named
main()
.It creates a client instance for the Hedera testnet and sets the operator account using the user's account ID and private key.
It creates a new
TopicMessageSubmitTransaction
object to submit a message to a topic.The topic ID and message content are set using the retrieved environment variables.
The transaction is executed using the
execute()
method, and the resulting transaction response (sendResponse
) is obtained.The receipt of the transaction is retrieved using
getReceipt()
.The status of the transaction is extracted from the receipt and logged to the console.
This script submits a message to a consensus topic on the Hedera network and logs the transaction status to the console.
Last updated
Was this helpful?