The simple solution I have for this is to declare a global variable in the single-post.php or single-[cpt].php file like this:
…
global $ref_post, $post;
$ref_post = $post;
get_header();
…
Then use the global $ref_post
wherever in the blocks you need to get the post info.