* Returns the entire Human-Readable ABI, as an array of * signatures, optionally as %%minimal%% strings, which * removes parameter names and unneceesary spaces.
(minimal)
| 312 | * removes parameter names and unneceesary spaces. |
| 313 | */ |
| 314 | format(minimal) { |
| 315 | const format = (minimal ? "minimal" : "full"); |
| 316 | const abi = this.fragments.map((f) => f.format(format)); |
| 317 | return abi; |
| 318 | } |
| 319 | /** |
| 320 | * Return the JSON-encoded ABI. This is the format Solidiy |
| 321 | * returns. |
no test coverage detected