Vault Factory
Code
Github Link: https://github.com/KelvinThai/Blast_LpStaking
Address
Blast testnet(Sepolia): 0x64D88d4eA714ee4a0E88AC118516bf510Aa03d72
Blast mainet: <coming soon>
Events, Read-Only Functions, and State-Changing Functions
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.
VaultCreated
Emitted when a new vault is created.
event VaultCreated(address indexed vault);Parameter Name
Description
value
The address of the newly created vault contract.
This is a list of functions without parameters:
Func Name
Value
Description/ Note
totalSupply
0
There is only one case in which the total supply can be changed
Func
Description
Creates a new vault contract.
Renounces ownership of the contract.
@param newOwner The address of the new owner.
Transfers ownership of the contract to a new owner.
Last updated