{% extends "base.html" %}
{% block title %}{{ flow.entry_point_contract_name }}.{{ flow.entry_point_function_name }}{{ flow.signature_suffix }} — Solidity Flow Navigator{% endblock %}
{% block body_class %}flow-page{% endblock %}
{% block head_extra %}
{% endblock %}
{% block content %}
{# v0.10.4: the back-link lives INSIDE the header's flex row. It was
previously a position:fixed overlay at the header's coordinates, which
sat on top of the title's first characters on every flow page. #}
Inherited entry point — invoked on
{% set root = flow.root %}
{% if root.invoked_via_contract_name != root.declarer_contract_name %}
{{ flow.entry_point_contract_name }}.{{ flow.entry_point_function_name }}{{ flow.signature_suffix }}
{{ root.invoked_via_contract_name }},
declared in {{ root.declarer_contract_name }}.