Skip to main content

IVaultAdmin

Git Source

Author: StakeWise

Defines the interface for the VaultAdmin contract

Functions

admin

The Vault admin

function admin() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the Vault admin

setMetadata

Function for updating the metadata IPFS hash. Can only be called by Vault admin.

function setMetadata(string calldata metadataIpfsHash) external;

Parameters

NameTypeDescription
metadataIpfsHashstringThe new metadata IPFS hash

setAdmin

Function for updating the admin address. Can only be called by Vault current admin.

function setAdmin(address newAdmin) external;

Parameters

NameTypeDescription
newAdminaddressThe new admin address

Events

MetadataUpdated

Event emitted on metadata ipfs hash update

event MetadataUpdated(address indexed caller, string metadataIpfsHash);

Parameters

NameTypeDescription
calleraddressThe address of the function caller
metadataIpfsHashstringThe new metadata IPFS hash

AdminUpdated

Event emitted on admin update

event AdminUpdated(address indexed caller, address newAdmin);

Parameters

NameTypeDescription
calleraddressThe address of the function caller
newAdminaddressThe new admin address