Types
Custom types used by options-library
ChainAddresses
type ChainAddresses = {
FixedStrikeOptionTeller: `0x${string}`;
MOLMFactory: `0x${string}`;
OOLMFactory: `0x${string}`;
};ChainAbis
type ChainAbis = {
ERC20: typeof IERC20;
FixedStrikeOptionTeller: typeof fixedStrikeOptionTeller;
MOLMFactory: typeof MOLMFactory;
OOLMFactory: typeof OOLMFactory;
Allowlist: typeof allowlist;
FixedStrikeOptionToken: typeof fixedStrikeOptionToken;
OLM: typeof OLM;
MOLM: typeof manualStrikeOLM;
OOLM: typeof oracleStrikeOLM;
OptionToken: typeof optionToken;
};