Retrieve File
This script retrieves the contents of a file stored on the Hedera network using a file ID, saves it locally, and logs the size of the retrieved data to the console. It demonstrates how to use the FileContentsQuery
to fetch file contents and perform file operations with Hedera.
Step 1: Imports
The script imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
):FileContentsQuery
,LocalProvider
, andWallet
.It also imports the
fs
module from Node.js for file system operations, and theexit
method from theprocess
module.
Step 2: Environment Variables Retrieval and Validation
The script loads environment variables from a
.env
file located in theFile_Service
directory usingdotenv
.It checks whether the required environment variables (
MY_ACCOUNT_ID
andMY_PRIVATE_KEY
) are present. If not, it throws an error.It retrieves the file ID (
FILE_ID
) from the environment variables.
Step 3: Wallet Initialization
It creates a new
Wallet
instance using the account ID and private key retrieved from the environment variables.The wallet is initialized with a
LocalProvider
, indicating that it will be used for local signing of transactions.
Step 4 : Main Function
It creates a new
FileContentsQuery
object to retrieve the contents of the file specified by the file ID.The file ID is set using the value retrieved from the environment variables.
The query is executed with the signer (wallet) to retrieve the contents of the file.
The size of the retrieved data is logged to the console.
The retrieved contents are then written to a local file named
hedera-retrieved.pdf
in theFile_Service
directory usingfs.writeFileSync()
.Finally, the script exits the process.
Step 5: Execution
This line calls the main()
function to start the execution of the script.
Last updated
Was this helpful?