{% macro profileFeeData(fees) %} {% for fee in fees %}
{{ fee.unit.label }}
{{ fee.formattedPrice }}
{% endfor %} {% endmacro %} {% macro profileFee(setupFees, contractFees) %}
  • {% if setupFees.length %} {{ profileFeeData(setupFees) }} {% endif %} {% if contractFees.length %} {{ profileFeeData(contractFees)}} {% endif %}
  • {% endmacro %}