Interface

IInfinityNFTPeriphery

The interface for the InfinityNFTPeriphery contract is the following:

interface IInfinityNFTPeriphery {
  event InfinityStake(address indexed sender, uint amount, uint share, uint id);
  event InfinityBoost(address indexed sender, uint amount, uint share, uint id);

  function permanentStaking(
    address _to,
    uint _amountIn,
    uint _shareMin,
    uint _deadline
  ) external returns (uint share);

  function permanentBoosting(
    uint _amountIn,
    uint _shareMin,
    uint _id,
    uint _deadline
  ) external returns (uint share);
}

Last updated