HsETH

Code

Github Link: https://github.com/KelvinThai/Blast_LpStaking

Address

Events, Read-Only Functions, and State-Changing Functions

Transfer

Event for the movement and burning of HsETH

event Transfer(address indexed from, address indexed to, uint256 value);
Parameter Name
Description

from

The address tokens are transferred from.

to

The address tokens are transferred to.

value

The amount of tokens transferred.

Approval

Emitted when an approval is granted allowing another address to spend tokens on behalf of the owner.

event Approval(address indexed holder, address indexed spender, uint256 value);
Parameter Name
Description

holder

The address that approves the spending of tokens.

spender

The address allowed to spend the tokens.

value

The amount of tokens approved to be spent.

RoleAdminChanged

Emitted when the admin of a role is changed.

event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
Parameter Name
Description

role

The role whose admin is being changed.

previousAdminRole

The previous admin role.

newAdminRole

The new admin role.

RoleRevoked

Emitted when a role is revoked from an account.

event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
Parameter Name
Description

role

The role whose admin is being changed.

account

The account from which the role is being revoked.

sender

The address that revoked the role.

RoleGranted

Emitted when a role is granted to an account.

event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
Parameter Name
Description

role

The role that is being granted.

account

The account to which the role is being granted.

sender

The address that granted the role.

Last updated