Documentation Index
Fetch the complete documentation index at: https://thrackle.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Git Source
Inherits:
HandlerUtils, AppAdministratorOrOwnerOnlyDiamondVersion, HandlerAccountApproveDenyOracle, HandlerAccountApproveDenyOracleFlexible, IZeroAddressError, IHandlerDiamondErrors
Functions
checkAccountApproveDenyOraclesRules
Function to check the Account Approve Deny Oracle Rules
function checkAccountApproveDenyOraclesRules(
address _from,
address _to,
address _sender,
ActionTypes action,
address handlerBase
) external view onlyOwner;
Parameters
| Name | Type | Description |
|---|
_from | address | address of the from account |
_to | address | address of the to account |
_sender | address | address of the sender account |
action | ActionTypes | if selling or buying (of ActionTypes type) |
handlerBase | address | address of the handler proxy |
_checkAccountApproveDenyOraclesFlexibleRule
Internal function to check the Account Approve Deny Oracle Flexible Rules
function _checkAccountApproveDenyOraclesFlexibleRule(
address _from,
address _to,
ActionTypes action,
address handlerBase
) internal view;
Parameters
| Name | Type | Description |
|---|
_from | address | address of the from account |
_to | address | address of the to account |
action | ActionTypes | if selling or buying (of ActionTypes type) |
handlerBase | address | address of the handler proxy |
_checkAccountApproveDenyOraclesRule
Internal function to check the Account Approve Deny Oracle Rules
function _checkAccountApproveDenyOraclesRule(
address _from,
address _to,
address _sender,
ActionTypes action,
address handlerBase
) internal view;
Parameters
| Name | Type | Description |
|---|
_from | address | address of the from account |
_to | address | address of the to account |
_sender | address | address of the caller |
action | ActionTypes | if selling or buying (of ActionTypes type) |
handlerBase | address | address of the handler proxy |