-
Notifications
You must be signed in to change notification settings - Fork 0
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
Integrate frontend with new stoploss contract #63
Integrate frontend with new stoploss contract #63
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/lib/tooltipDescriptions.ts
Outdated
MAX_TIME_SINCE_LAST_ORACLE_UPDATE = "The maximum time since the last oracle update. If the oracle has not been updated in this time, the order will not be executed.", | ||
TYPE = "The order can be fill or kill (entire order must be filled) or partial fill (part of the order can be filled respecting the limit price).", | ||
VALID_TO = "The date and time at which the order will expire if not filled.", | ||
VALID_TO_INPUT = "The time at which the order can be filled. After this time, the order will expire. This not take into account the transaction signing time.", |
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.
VALID_TO_INPUT = "The time at which the order can be filled. After this time, the order will expire. This not take into account the transaction signing time.", | |
VALID_TO_INPUT = "The absolute date and time before which the order can be filled. After this time, the order will expire.", |
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.
Actually this input is a select with time periods (6 months, 1 month, etc). Think that your suggestion would be better for a exact time. What you say about
How long the order will be valid and can be filled starting now. After this, the order will expire.
Integrate order creation
Integrate new ponder api