HelperFactory
State Variables
FUSDC
IERC20Permit immutable FUSDC;
FACTORY
INineLivesFactory immutable FACTORY;
INFRA_MARKET
address public immutable INFRA_MARKET;
BEAUTY_CONTEST
address public immutable BEAUTY_CONTEST;
SARP_AI
address public immutable SARP_AI;
Functions
constructor
constructor(
IERC20Permit _fusdc,
INineLivesFactory _factory,
address _infraMarket,
address _beautyContest,
address _sarpAi
);
create
function create(
address oracle,
FactoryOutcome[] calldata outcomes,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) internal returns (address);
createWithInfraMarket
Create with the Infra Market, transferring the amount needed for the oracle, as well as the Trading contract itself.
function createWithInfraMarket(
FactoryOutcome[] calldata outcomes,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) public returns (address tradingAddr);
createWithInfraMarketPermit
function createWithInfraMarketPermit(CreationDetails calldata d, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
external
returns (address tradingAddr);
createWithBeautyContest
function createWithBeautyContest(
FactoryOutcome[] calldata outcomes,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) public returns (address tradingAddr);
createWithBeautyContestPermit
function createWithBeautyContestPermit(CreationDetails calldata d, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
external
returns (address tradingAddr);
createWithAI
function createWithAI(
FactoryOutcome[] calldata outcomes,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) public returns (address tradingAddr);
createWithAIPermit
function createWithAIPermit(CreationDetails calldata d, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
external
returns (address tradingAddr);
createWithCustom
It doesn't make sense to use this. It's better to do the setup work yourself with the factory, this is left for convinience reasons. It transfers some fUSDC to the contract for setup.
function createWithCustom(
address oracle,
FactoryOutcome[] calldata outcomes,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) public returns (address tradingAddr);
createWithCustomPermit
Read the developer comment for createWithCustom.
function createWithCustomPermit(
CreationDetails calldata d,
address oracle,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public returns (address tradingAddr);