Are you interested in supporting the Test new order endpoint?
From an interface point of view, two options come to my mind:
Adding a test version for each existing function related to new orders. Example: now we have Account::limit_buy, Account::limit_sell, etc. and we could add Account::test_limit_buy, Account::test_limit_sell, etc.
Adding a boolean parameter to the existing functions to indicate whether to use the test endpoint or not.
Hi!
Are you interested in supporting the Test new order endpoint?
From an interface point of view, two options come to my mind:
Account::limit_buy
,Account::limit_sell
, etc. and we could addAccount::test_limit_buy
,Account::test_limit_sell
, etc.I could help with a pull request.