* Returns the entire Human-Readable ABI, as an array of * signatures, optionally as %%minimal%% strings, which * removes parameter names and unneceesary spaces.
(minimal?: boolean)
| 421 | * removes parameter names and unneceesary spaces. |
| 422 | */ |
| 423 | format(minimal?: boolean): Array<string> { |
| 424 | const format = (minimal ? "minimal": "full"); |
| 425 | const abi = this.fragments.map((f) => f.format(format)); |
| 426 | return abi; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Return the JSON-encoded ABI. This is the format Solidiy |
no test coverage detected