* Get the event name for %%key%%, which may be a topic hash, * event name or event signature that belongs to the ABI.
(key)
| 434 | * event name or event signature that belongs to the ABI. |
| 435 | */ |
| 436 | getEventName(key) { |
| 437 | const fragment = this.#getEvent(key, null, false); |
| 438 | assertArgument(fragment, "no matching event", "key", key); |
| 439 | return fragment.name; |
| 440 | } |
| 441 | /** |
| 442 | * Returns true if %%key%% (an event topic hash, event name or |
| 443 | * event signature) is present in the ABI. |
nothing calls this directly
no test coverage detected