IBondManager.md 502 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# IBondManager



> IBondManager





## Methods

### isCollateralized

```solidity
function isCollateralized(address _who) external view returns (bool)
```

Mark Tyneway's avatar
Mark Tyneway committed
19
Checks whether a given address is properly collateralized and can perform actions within the system.
20 21 22 23 24 25 26



#### Parameters

| Name | Type | Description |
|---|---|---|
Mark Tyneway's avatar
Mark Tyneway committed
27
| _who | address | Address to check.
28 29 30 31 32

#### Returns

| Name | Type | Description |
|---|---|---|
Mark Tyneway's avatar
Mark Tyneway committed
33
| _0 | bool | true if the address is properly collateralized, false otherwise.
34 35 36 37