Vault
Code
Github Link: https://github.com/KelvinThai/Blast_LpStaking
Address
Blast testnet(Sepolia): 0xc04ce7709b8d2503a50F0B62465d6eEDA6217591
Blast mainet: <coming soon>
Events, Read-Only Functions, and State-Changing Functions
HsETHRepaid
Emitted when HsETH is repaid by a staker.
event HsETHRepaid(address staker, uint256 amount);
Parameter Name
Description
staker
The address of the staker who repaid HsETH.
amount
The amount of HsETH repaid.
OwnershipTransferred
Emitted when ownership of the contract is transferred from one address to another.
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
Parameter Name
Description
previousOwner
The address of the previous owner.
newOwner
The address of the new owner.
Staked
Emitted when tokens are staked by a staker.
event Staked(address staker, uint256 amount);
Parameter Name
Description
staker
The address of the staker who staked tokens..
amount
The amount of tokens staked.
UnStaked
Emitted when tokens are unstaked by a staker.
event UnStaked(address staker, uint256 amount);
Parameter Name
Description
staker
The address of the staker who unstaked tokens.
amount
The amount of tokens unstaked.
Last updated