-
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
Support DEX orders on stellar client #119
base: development
Are you sure you want to change the base?
Conversation
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.
Please fix analyze workflow. Also, can you replace prints with logger?
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.
I get insufficient balance although I have enough XLMs in my balance.
Also, USDC asset code is not added while adding trustline,
Logger is not working. I had to edit the logger value in client to the following for it to print.
var logger = Logger(
printer: PrettyPrinter(
methodCount: 2,
errorMethodCount: 8,
lineLength: 120,
colors: true,
printEmojis: true,
),
level: Level.debug,
filter: ProductionFilter(),
);
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.
…dk-dart into development_order_book
…rs/tfgrid-sdk-dart into development_order_book
Description
Changes
createOrder
, user can create buy/sell orders for specific assets.cancelOrder
, user can cancel specific order with its id.getOrderBook
, user can get oder book of the conversion between any 2 assets.listMyOffers
, user can list its offers.updateOrder
, user can update an existing offer with its id.Related Issues
#112
Checklist