mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
Updated comments for better documentation
This commit is contained in:
parent
cbff61141d
commit
c25462a973
|
@ -1,8 +1,9 @@
|
||||||
pragma solidity ^0.7.0;
|
pragma solidity ^0.7.0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @title Stake Eth.
|
* @title Stake Ether.
|
||||||
* @dev deposit Eth into lido and in return you get equivalent of stEth tokens
|
* @dev Stake ETH and receive stETH while staking.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DSMath } from "../../common/math.sol";
|
import { DSMath } from "../../common/math.sol";
|
||||||
|
@ -13,7 +14,7 @@ import { Helpers } from "./helpers.sol";
|
||||||
abstract contract Resolver is Events, DSMath, Basic, Helpers {
|
abstract contract Resolver is Events, DSMath, Basic, Helpers {
|
||||||
/**
|
/**
|
||||||
* @dev deposit ETH into Lido.
|
* @dev deposit ETH into Lido.
|
||||||
* @notice sends Eth into lido and in return you get equivalent of stEth tokens
|
* @notice stake Eth in Lido, users receive stETH tokens on a 1:1 basis representing their staked ETH.
|
||||||
* @param amt The amount of ETH to deposit. (For max: `uint256(-1)`)
|
* @param amt The amount of ETH to deposit. (For max: `uint256(-1)`)
|
||||||
* @param getId ID to retrieve amt.
|
* @param getId ID to retrieve amt.
|
||||||
* @param setId ID stores the amount of ETH deposited.
|
* @param setId ID stores the amount of ETH deposited.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user