Hierarchical list of custom taxonomy terms

You could use wp_list_categories, it can be used for any taxonomy, not only categories:

$args = array(
    'taxonomy' => 'tax'
);
wp_list_categories( $args );

See the list of arguments in the codex.