I don’t know where you obtained this sketch, but it’s a mess.
Some of the issues are…
You’re defining a SoftwareSerial port called EspSerial, but you’re using the Uno’s hardware serial pins to do this.
The baud rate for the SoftwareSerial port used to communicate with the ESP-01 can’t use a baud rare faster than 9600 because that’s the maximum that the Uno is capable of using when emulating a serial port - because of the Uno’s poor processor speed.
This baud rate also needs to match that of the ESP-01.
You are initialising the same Serial1 port (the hardware serial port of the Uno) twice.
blynk-cloud.com
is the url for the old Legacy servers, which were decommissioned over a year ago.
I’d suggest you start by reading this topic…
Pete.