* Get the event name for %%key%%, which may be a topic hash, * event name or event signature that belongs to the ABI.
(key: string)
| 645 | * event name or event signature that belongs to the ABI. |
| 646 | */ |
| 647 | getEventName(key: string): string { |
| 648 | const fragment = this.#getEvent(key, null, false); |
| 649 | assertArgument(fragment, "no matching event", "key", key); |
| 650 | |
| 651 | return fragment.name; |
| 652 | } |
| 653 | |
| 654 | /** |
| 655 | * Returns true if %%key%% (an event topic hash, event name or |
nothing calls this directly
no test coverage detected