* Returns the shared singleton instance of a default [[AbiCoder]]. * * On the first call, the instance is created internally.
()
| 192 | * On the first call, the instance is created internally. |
| 193 | */ |
| 194 | static defaultAbiCoder() { |
| 195 | if (defaultCoder == null) { |
| 196 | defaultCoder = new AbiCoder(); |
| 197 | } |
| 198 | return defaultCoder; |
| 199 | } |
| 200 | /** |
| 201 | * Returns an ethers-compatible [[CallExceptionError]] Error for the given |
| 202 | * result %%data%% for the [[CallExceptionAction]] %%action%% against |
no outgoing calls
no test coverage detected