* Get the [[EventFragment]] for %%key%%, which may be a topic hash, * event name or event signature that belongs to the ABI. * * If %%values%% is provided, it will use the Typed API to handle * ambiguous cases where multiple events match by name. * * If the %%key%%
(key, values)
| 459 | * the ABI, this will throw. |
| 460 | */ |
| 461 | getEvent(key, values) { |
| 462 | return this.#getEvent(key, values || null, true); |
| 463 | } |
| 464 | /** |
| 465 | * Iterate over all events, calling %%callback%%, sorted by their name. |
| 466 | */ |
no test coverage detected