I was going through the handbook and noticed in the Writing Your First Block Type section it shows the main block script being enqueued in the register_block_type function using editor_script.
Is this another method for enqueuing block assets or is it outdated? I actually wasn’t able to find a mention of enqueue_block_editor_assets and enqueue_block_assets in the Gutenberg Handbook.
The approach of registering the block on the server side is still being evolved, so I think it’s better and more flexible (and following existing WP conventions) to use enqueue_block_editor_assets and enqueue_block_assets but both approaches should still work I believe.