IApplicationChecker
Errors
ApplicationNotDeployed
The application contract address contains no code.
error ApplicationNotDeployed(address appContract);
Parameters
| Name | Type | Description |
|---|---|---|
appContract | address | The application contract address |
ApplicationReverted
The call to the application contract reverted with an error.
error ApplicationReverted(address appContract, bytes error);
Parameters
| Name | Type | Description |
|---|---|---|
appContract | address | The application contract address |
error | bytes | The error raised by the application contract |
IllformedApplicationReturnData
The call to the application contract returned ill-formed data.
error IllformedApplicationReturnData(address appContract, bytes data);
Parameters
| Name | Type | Description |
|---|---|---|
appContract | address | The application contract address |
data | bytes | The data returned by the application contract |
InputBoxNotDeployed
The input box address contains no code.
error InputBoxNotDeployed(address inputBox);
Parameters
| Name | Type | Description |
|---|---|---|
inputBox | address | The input box contract address |
ApplicationForeclosed
Application was foreclosed.
error ApplicationForeclosed(address appContract);
Parameters
| Name | Type | Description |
|---|---|---|
appContract | address | The application contract address |