IIsleGlobals

Git Source

Inherits: IIsleGlobalsEvents, IGovernable

Interface for the IsleGlobals contract.

This interface provides functions to manage the global configurations of the Isle Protocol.

Functions

initialize

Initializes the contract.

function initialize(address governor_) external;

Parameters

NameTypeDescription

governor_

address

The address of the governor.

setIsleVault

Sets the address of the Isle vault.

function setIsleVault(address isleVault_) external;

Parameters

NameTypeDescription

isleVault_

address

The address of the Isle vault.

setProtocolPaused

Pause or unpause the protocol.

function setProtocolPaused(bool protocolPaused_) external;

Parameters

NameTypeDescription

protocolPaused_

bool

A boolean indicating the status of the protocol pause.

setContractPaused

Pause or unpause a specific contract.

function setContractPaused(address contract_, bool contractPaused_) external;

Parameters

NameTypeDescription

contract_

address

The address of the contract to set the pause status for.

contractPaused_

bool

A boolean indicating the pause status of the contract.

setFunctionUnpaused

Unpause or ununpause a specific function in a contract.

Normally used to unpause specific functions when a contract is paused.

function setFunctionUnpaused(address contract_, bytes4 sig_, bool functionUnpaused_) external;

Parameters

NameTypeDescription

contract_

address

The address of the contract.

sig_

bytes4

The function signature.

functionUnpaused_

bool

A boolean indicating whether the function is unpaused.

setProtocolFee

Sets the protocol fee.

function setProtocolFee(uint24 protocolFee_) external;

Parameters

NameTypeDescription

protocolFee_

uint24

A uint24 indicating the protocol fee (100.0000% = 1e6 (6 decimal precision)).

setValidReceivableAsset

Sets the validity of a receivable asset (should match ERC-721).

function setValidReceivableAsset(address receivableAsset_, bool isValid_) external;

Parameters

NameTypeDescription

receivableAsset_

address

The address of the receivable asset to set the validity for.

isValid_

bool

A boolean indicating the validity of the receivable asset.

setValidPoolAsset

Sets the validity of the pool asset (should match ERC-20).

function setValidPoolAsset(address poolAsset_, bool isValid_) external;

Parameters

NameTypeDescription

poolAsset_

address

The address of the pool asset to set the validity for.

isValid_

bool

A boolean indicating the validity of the pool asset.

setValidPoolAdmin

Sets the validity of a pool admin.

function setValidPoolAdmin(address poolAdmin_, bool isValid_) external;

Parameters

NameTypeDescription

poolAdmin_

address

The address of the pool admin to set the validity for.

isValid_

bool

A boolean indicating the validity of the pool admin.

protocolFee

Returns the protocol fee.

function protocolFee() external view returns (uint24 protocolFee_);

Returns

NameTypeDescription

protocolFee_

uint24

A uint24 indicating the protocol fee.

isleVault

Gets isle vault address.

function isleVault() external view returns (address isleVault_);

Returns

NameTypeDescription

isleVault_

address

The address of the isle vault.

protocolPaused

Gets the status of the protocol pause.

function protocolPaused() external view returns (bool protocolPaused_);

Returns

NameTypeDescription

protocolPaused_

bool

A boolean indicating whether the protocol is paused.

isContractPaused

Returns the pause status of a specific contract.

function isContractPaused(address contract_) external view returns (bool contractPaused_);

Parameters

NameTypeDescription

contract_

address

The address of the contract to check.

Returns

NameTypeDescription

contractPaused_

bool

A boolean indicating whether a contract is paused.

isFunctionUnpaused

Returns the unpause status of a specific function in a contract.

function isFunctionUnpaused(address contract_, bytes4 sig_) external view returns (bool functionUnpaused_);

Parameters

NameTypeDescription

contract_

address

The address of the contract.

sig_

bytes4

The function signature.

Returns

NameTypeDescription

functionUnpaused_

bool

A boolean indicating whether the function is unpaused.

isPoolAdmin

Returns if the account is a valid poolAdmin.

function isPoolAdmin(address account_) external view returns (bool isPoolAdmin_);

Parameters

NameTypeDescription

account_

address

The address of the account to check.

Returns

NameTypeDescription

isPoolAdmin_

bool

Whether the account is a valid poolAdmin.

isReceivableAsset

Gets the validity of a receivable asset.

function isReceivableAsset(address receivableAsset_) external view returns (bool isReceivableAsset_);

Parameters

NameTypeDescription

receivableAsset_

address

The address of the receivableAsset to query.

Returns

NameTypeDescription

isReceivableAsset_

bool

A boolean indicating the validity of the receivable asset.

isPoolAsset

Gets the validity of a pool asset.

function isPoolAsset(address poolAsset_) external view returns (bool isPoolAsset_);

Parameters

NameTypeDescription

poolAsset_

address

The address of the poolAsset to query.

Returns

NameTypeDescription

isPoolAsset_

bool

A boolean indicating the validity of the pool asset.

isFunctionPaused

Returns the pause status of a specific function in a contract.

function isFunctionPaused(address contract_, bytes4 sig_) external view returns (bool isFunctionPaused_);

Parameters

NameTypeDescription

contract_

address

The address of the contract.

sig_

bytes4

The function signature.

Returns

NameTypeDescription

isFunctionPaused_

bool

A boolean indicating the pause status of the function.

isFunctionPaused

Returns the pause status of a specific function in the caller contract.

function isFunctionPaused(bytes4 sig_) external view returns (bool isFunctionPaused_);

Parameters

NameTypeDescription

sig_

bytes4

The function signature.

Returns

NameTypeDescription

isFunctionPaused_

bool

A boolean indicating the pause status of the function.

Last updated