Staking / Unstaking
Staking
On Ethereum
/**
* @dev Allows a reporter to submit stake
*/
function depositStake() external {On any other network
/**
* @dev Allows a reporter to submit stake
* @param _amount amount of tokens to stake
*/
function depositStake(uint256 _amount) external {Unstaking
On Ethereum
On any other network
Last updated