INineLivesFactory
Functions
newTrading90C25562
set up new trading contract, seeding the initial amounts
function newTrading90C25562(
FactoryOutcome[] memory outcomes,
address oracle,
uint64 timeStart,
uint64 timeEnding,
bytes32 documentation,
address feeRecipient,
uint64 feeCreator,
uint64 feeLp,
uint64 feeMinter
) external returns (address tradingAddr);
Parameters
Name | Type | Description |
---|---|---|
outcomes | FactoryOutcome[] | to set up as the default |
oracle | address | to use as the provider. If set to 0, then a beauty contest is taking place, and when an oracle resolves it checks its own invested state to determine the winner. If set to the address of the infra market oracle as set up during the initialisation of the proxy contract, then an infrastructure market is taking place. If set to anything else, then a contract interaction is assumed being active (or, an AI resolver, depending on the circumstances). If the infrastructure market was chosen, then the code calls the Infrastructure Market to create a new market there with its own creation time. |
timeStart | uint64 | to begin this contract at. This should be in the future. |
timeEnding | uint64 | to end this contract at. This should be in the future. |
documentation | bytes32 | keccak'd hash of the information that makes up the description for infrastructure markets. This is sent out there. |
feeRecipient | address | to send fees earned from the creator commission to. |
feeCreator | uint64 | pct to take as fees for the creator given. |
feeLp | uint64 | pct to take as fees for LPs who use the add/remove liquidity features. |
feeMinter | uint64 | pct to take as fees for users using the mint function. |
Returns
Name | Type | Description |
---|---|---|
tradingAddr | address | address of the newly created Trading contract deployment. |
getOwner
gets the owner address from the trading contract address
function getOwner(address addr) external view returns (address);
Parameters
Name | Type | Description |
---|---|---|
addr | address | is trading address to get the owner |
getBackend
function getBackend(address addr) external view returns (uint8);
getTradingAddr
function getTradingAddr(bytes32 id) external view returns (address);
shareImpl
function shareImpl() external pure returns (address);
dpmTradingHash
return the keccak256 hash of the trading contract in DPM form.
function dpmTradingHash() external view returns (bytes32);
ammTradingHash
return the keccak256 hash of the trading contract in AMM form.
function ammTradingHash() external view returns (bytes32);
erc20Hash
return the keccak256 hash of the ERC20
function erc20Hash() external view returns (bytes32);