docs
Complete GET Example
5. Check response

Check Oracle Response in your Example Contract

After waiting a few minutes, you can run the checkResponseGet.js script to see the oracle's response to the request.

yarn hardhat run scripts/checkResponseGet.js --network base_sepolia

If everything has gone correctly, you should see this output:

Response from oracle in bytes: 0x48656c6c6f2c206a6f686e2120596f7520617265203333207965617273206f6c642e
Response from oracle in string: Hello, john! You are 33 years old.

And in your server you will see:

Entering request from oracle
Name john
Age 33

END!