\
Returns the address of the collateral asset.
function collateralAsset()
view
returns (
address
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | address |
address |
\
Returns the amount of collateral yet to be liquidated.
function collateralRemaining()
view
returns (
uint256
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | uint256 |
uint256 |
\
function decodeArguments(
bytes calldata_
)
pure
returns (
address loanManager_,
address collateralAsset_,
address fundsAsset_
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | calldata_ |
bytes |
bytes |
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | loanManager_ |
address |
address |
|
1 | collateralAsset_ |
address |
address |
|
2 | fundsAsset_ |
address |
address |
\
function encodeArguments(
address loanManager_,
address collateralAsset_,
address fundsAsset_
)
pure
returns (
bytes calldata_
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | loanManager_ |
address |
address |
|
1 | collateralAsset_ |
address |
address |
|
2 | fundsAsset_ |
address |
address |
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | calldata_ |
bytes |
bytes |
\
Returns the address of the funding asset.
function fundsAsset()
view
returns (
address
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | address |
address |
\
Returns the address of the loan manager contract.
function loanManager()
view
returns (
address
);
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0 | address |
address |
\