Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - sharique-knysys

Pages: [1]
1
Technical Support / Cli Wallet Transfer Issue
« on: May 05, 2016, 10:32:44 am »
I am using graphenelib to connect to cli wallet and perform operations programatically. I call transfer method of cli wallet and it works perfectly but  I get exceptions after some calls to cli wallet. Python code gives me this exception websocket send failed: invalid state which is probably a problem of cli wallet. Can anyone tell why I get this error from cli wallet?

2
Hi,
I create limit_order_create request from bitshares-2-ui and I set 5 minutes expiration time for this request. How do I know my request is full fill and I get required amount of smartcoins. Is there any api method which gives me this information? Please guide me

3
Technical Support / Bitshares-2-ui: Limit Order Create Operation issue
« on: March 24, 2016, 11:58:34 am »
I am using bitshares2-ui library to create my app. I have created limit_order_create operation to trade currency from my app. But limit_order_create operations behaves very weird.
For example if I want 0.1 EUR for 19.98414 BTS, it shows Sell 19.98414 BTS. Then if I want 0.1 EUR for 19.99 BTS it shows Sell 199841417742.87936 BTS. Please guide me to resolve this issue. Following is the limit_order_create operation definition which takes asset type in amount_to_sell.

Code: [Select]
limit_order_create = new Serializer(
    "limit_order_create"
    fee: asset
    seller: protocol_id_type "account"
    amount_to_sell: asset
    min_to_receive: asset
    expiration: time_point_sec
    fill_or_kill: bool
    extensions: set future_extensions
)

Following is asset type definition

Code: [Select]
asset = new Serializer(
    "asset"
    amount: int64
    asset_id: protocol_id_type "asset"
)

4
Technical Support / How to fetch required fees for trading
« on: March 07, 2016, 07:14:36 am »
Hi,

I want to know about fees which applies on trading operation. For example if I want to sell USD and get BTS it requires some fees for this operation. I am using  get_required_fees function from database api but I am not sure what arguments this function take as an input. I am using like this but it is not working

{"id":1,"method":"get_required_fees","params":[ ["transfer", "1.3.0"] ]}

5
Technical Support / Fetch Highest Bid of Any Asset
« on: March 04, 2016, 10:34:23 am »
Hi,

I want to use wallet's function called sell_asset but I don't know what is market highest bid. I want to sell my assets on market's highest bid. How can I fetch highest market bid through wallet api or database api of any asset?

6
Technical Support / Get Particular Transaction
« on: March 03, 2016, 01:34:38 pm »
Hi,

I want to track particular transaction. I used get_transaction and get_recent_transaction_by_id from database api but didn't get response. Is there any method in database api or in wallet api which can provide me details of particular transaction?

7
Technical Support / Process of sending amount from my account to another
« on: February 24, 2016, 10:19:15 am »
Hi

I am using graphenelib and I want to transfer some currency to another account. What is the process? I have found the docs of graphenelib but it says use  this line to transfer res = client.transfer("sender","receiver","5", "USD", "memo", True); on this link http://python-graphenelib.readthedocs.org/en/latest/rpc.html. I don't know how to use this code. Please share the code with me so I can transfer amount from my account.

8
Technical Support / How block trade Input Address work?
« on: February 09, 2016, 11:58:13 am »
I am using block trade api /simple-api/initiate-trade method. I got input address for transaction. My question how can I send currency or payment of anything to any account using that block trade address.

9
Technical Support / Issues Facing In Block Trade API
« on: February 04, 2016, 12:42:32 pm »
Hi,

I am working on api of blocktrade. Here is the link https://blocktrades.us/api/v2/explorer. I am facing some issues. Like I used method /wallets/{walletType}/address-validator. In wallet method I used each and every address of my wallet(bitshares.openledger.info) which is on deposit/withdraw > blocktrades screen but it returns false. Similarly when I used this function /simple-api/transactions and enter input address I got empty array every time.

Did I make any mistake to invoke that API. Please give me any idea. Thanks

10
Technical Support / Want to calculate exchange rate of any currency?
« on: January 26, 2016, 06:34:51 am »
Hi I want to convert any currency to BTS. I have checked currencies on cryptofresh.com. For example how can I calculate that how many bts equal to $1. Like it is displayed on cryptofresh.com

Exchange rate   0.00327 USD/BTS

Pages: [1]