Skip to main content

Miscellaneous

mintGobbler

Mints Gobblers using the pool's virtual reserves of Goo when specific conditions are met.

function mintGobbler() external;

skim

Restricted function for skimming any ERC20s that may have been erroneously sent to the pool.

function skim(
address erc20
) external;

Parameters:

NameTypeDescription
erc20addressSelects the ERC20 token to skim.

flagGobbler

Restricted function for blocking/unblocking compromised Gobblers from the pool.

function flagGobbler(
uint256 tokenId,
bool _flagged
) external;

Parameters:

NameTypeDescription
tokenIduint256Gobbler to block or unblock.
_flaggedboolSets the new state for flagged(tokenId).