IFeiTimedMinter
Functions
mint
function mint() external
setTarget
function setTarget(
address newTarget
) external
Parameters
Name | Type | Description |
---|---|---|
newTarget | address |
setFrequency
function setFrequency(
uint256 newFrequency
) external
Parameters
Name | Type | Description |
---|---|---|
newFrequency | uint256 |
setMintAmount
function setMintAmount(
uint256 newMintAmount
) external
Parameters
Name | Type | Description |
---|---|---|
newMintAmount | uint256 |
mintAmount
function mintAmount() external returns (uint256)
MIN_MINT_FREQUENCY
function MIN_MINT_FREQUENCY() external returns (uint256)
MAX_MINT_FREQUENCY
function MAX_MINT_FREQUENCY() external returns (uint256)
target
function target() external returns (address)
Events
FeiMinting
event FeiMinting(
address caller,
uint256 feiAmount
)
Parameters
Name | Type | Description |
---|---|---|
caller | address | |
feiAmount | uint256 |
TargetUpdate
event TargetUpdate(
address oldTarget,
address newTarget
)
Parameters
Name | Type | Description |
---|---|---|
oldTarget | address | |
newTarget | address |
MintAmountUpdate
event MintAmountUpdate(
uint256 oldMintAmount,
uint256 newMintAmount
)
Parameters
Name | Type | Description |
---|---|---|
oldMintAmount | uint256 | |
newMintAmount | uint256 |