Fixed Strike oTokens
ERC20-compatible option token implementation with fixed strike prices
function payout() public pure returns (ERC20 _payout);function quote() public pure returns (ERC20 _quote);function eligible() public pure returns (uint48 _eligible);function expiry() public pure returns (uint48 _expiry);function receiver() public pure returns (address _receiver);function call() public pure returns (bool _call);function teller() public pure returns (address _teller);function strike() public pure returns (uint256 _strike);function mint(address to, uint256 amount) external;function burn(address from, uint256 amount) external;function getOptionParameters()
external
pure
returns (
uint8 decimals_,
ERC20 payout_,
ERC20 quote_,
uint48 eligible_,
uint48 expiry_,
address receiver_,
bool call_,
uint256 strike_
);error OptionToken_OnlyTeller();