-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Symbiotes! #10726
base: dev
Are you sure you want to change the base?
Symbiotes! #10726
Conversation
show dash if no liquidity
make breakdown lighter color when inputs are unedited
fix sidebar's bottom bar on mobile
…-and-tables Fixed overflow for network mistmatch, market cards. Fixed table header height
…e preserved between long inputs and the label of the value, also added ellipsis to the text after you lose foccus for really long values.
#10592) * mis math on setting value for activity and transactions for eth add liquidity * fix issue where using same property for two different values
Edge smoothing
…the currency of the exchange.
fix-double-claim-activity
add Kovan for walletConnect
add shimmer to market cards
call new middleware multi-claim for individual market claim winnings
…. prevents a buffer override app blowing up style error (#10599)
…entionally shortening the input display.
fix-bad-input
fix bug where markets weren't updating when liquidity setting was cha…
Support easily paging through logs in base graphql schema
…ghlight.js-10.4.1 Bump highlight.js from 9.15.10 to 10.4.1
…ontents, cleaned/re-installed. dropped old url-loader from package.json top level
remove-comps-start
another-try
@Mergifyio rebase dev |
Command
|
packages/augur-core/src/contracts/symbiote/SymbioteHatchery.sol
Outdated
Show resolved
Hide resolved
packages/augur-core/src/contracts/symbiote/SymbioteHatchery.sol
Outdated
Show resolved
Hide resolved
return _config; | ||
} | ||
|
||
function getSymbioteResolution(uint256 _id) public returns (uint256[] memory) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe call this pullSymbioteResolution
? It looks like a getter now but clearly isn't.
My understand of this code isn't very deep but from a shallow review, it looks good to me. |
require(_config.prices.length == 2); | ||
require(_config.prices[0] < _config.prices[1]); | ||
require(uint256(_config.prices[1] - _config.prices[0]) > _numTicks); | ||
require(_config.marketType != IMarket.MarketType.YES_NO, "YES/NO not permitted"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
No description provided.