LibKlima
Author: Cujo
Functions
toWrappedAmount
Returns wsKLIMA amount for provided sKLIMA amount
function toWrappedAmount(uint256 amount) internal view returns (uint256 wrappedAmount);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | sKLIMA provided |
Returns
Name | Type | Description |
---|---|---|
wrappedAmount | uint256 | wsKLIMA amount |
toUnwrappedAmount
Returns sKLIMA amount for provided wsKLIMA amount
function toUnwrappedAmount(uint256 amount) internal view returns (uint256 unwrappedAmount);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | wsKLIMA provided |
Returns
Name | Type | Description |
---|---|---|
unwrappedAmount | uint256 | sKLIMA amount |
unwrapKlima
Unwraps and unstakes provided wsKLIMA amount
function unwrapKlima(uint256 amount) internal returns (uint256 unwrappedAmount);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | wsKLIMA provided |
Returns
Name | Type | Description |
---|---|---|
unwrappedAmount | uint256 | Final KLIMA amount |
unstakeKlima
Unstakes provided sKLIMA amount
function unstakeKlima(uint256 amount) internal;
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | sKLIMA provided |
wrapKlima
Stakes and wraps provided KLIMA amount
function wrapKlima(uint256 amount) internal returns (uint256 wrappedAmount);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | KLIMA provided |
Returns
Name | Type | Description |
---|---|---|
wrappedAmount | uint256 | Final wsKLIMA amount |
stakeKlima
Stakes provided KLIMA amount
function stakeKlima(uint256 amount) internal;
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | KLIMA provided |