Author

Topic: Cryptopia Cryptocurrency Platform Services and Development - page 145. (Read 173234 times)

legendary
Activity: 3094
Merit: 3197
Can someone please take care of this ticket, it has been open for over a year.



Thank you,

-Kushed

Please pm the ticket number and details for it so i try to get an Admin on it asap ! 

Regards Lafu
legendary
Activity: 1123
Merit: 1000
SaluS - (SLS)
Can someone please take care of this ticket, it has been open for over a year.



Thank you,

-Kushed
legendary
Activity: 3094
Merit: 3197
Any updates regarding The MoneroV new coin? Are we getting the coins?

Read a few posts earlyer please the question is already answerd   !

Regards Lafu
hero member
Activity: 1034
Merit: 558
Any updates regarding The MoneroV new coin?
yep
Its turning out to be scammy shitcoin, so no decent exchange would even consider listing it.  Roll Eyes
newbie
Activity: 28
Merit: 0
So you are able to retrieve all balances? Is your programming language also Python?
...

Yes, I retrieve all balances this way. No, I do not use Python in my practice.
My suggestion was: "Check request that you are trying to send to the server". You should compare string that you try to send to the server and said example of GetBalance http request. I do not know how you build your http requests (or it's headers and payload). Also you can compare your code with Python example in https://www.cryptopia.co.nz/Forum/Thread/262
...
I interpret this as follows: Currency parameter OR CurrencyId parameter is required. Do you disagree?
I agree it may be subtle thing but lets compare GetBalance description and GetDepositAddress description
Quote
GetBalance
...
Input:
Currency: (optional) The currency symbol of the balance to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: (optional)  The Cryptopia currency identifier of the balance to return e.g. '2' (not required if 'Currency' supplied)

Quote
GetDepositAddress
...
Input:
Currency: The currency symbol of the address to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: The Cryptopia currency identifier of the address to return e.g. '2' (not required if 'Currency' supplied)

In GetBalance both parameters are "optional", that means you can skip both if you do not want specify any currency.

UPDATE: Cryptopia API has glitches during couple last weeks, your issue can be provoked by experiments of Cryptopia team. I have got today same behavior of GetBalance as you. CancelTrade broken too.
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
Check request that you are trying to send to the server. If you want get all balances you should send POST request without parameters in JSON part. BUT JSON PART MUST BE PRESENTED. I mean If you want get your BTC balance it should be : {Currency: "BTC"}, if you want get all balances it should be : {}. I'm almost sure you got Bad Request response because of missed JSON part.

-snipped-

And "look at the documentation" pretty right advice. Do not neglect it.

So you are able to retrieve all balances? Is your programming language also Python?

I really, really thought that you just gave me the solution, since i actually did remove post parameters entirely in my own 'tweaking' attempts, instead of passing an empty dictionary as the post parameters.

However, i just tested your suggestion and it yielded same result as passing an empty string as the parameter. I received the balance of $PAC, and only $PAC balance.

I do have both BTC and ETH in my balance currently, so its not the case that there is no balances to fetch.

Also, the documentation on the getbalance call is as follows, regarding the parameters:
Code:
Currency: (optional) The currency symbol of the balance to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: (optional)  The Cryptopia currency identifier of the balance to return e.g. '2' (not required if 'Currency' supplied)

I interpret this as follows: Currency parameter OR CurrencyId parameter is required. Do you disagree?
newbie
Activity: 31
Merit: 0
Lots of pumps always happens on Cryptopia. Better then polo and btrex.
newbie
Activity: 28
Merit: 0
Hey cryptopians and officials!

I was wondering if anyone can tell me how i get all my balances with API, and not just a single balance.

Currently I am using this implementation of the API and it only has this method
Code:
get_balance(coin)

I contacted support about it, and got a very generic "look at the documentation" response. Which i have.. Now, waiting for the follow-up reply of my slightly more aggressive update, i thought i'd consult here.

I have tried modifying the implementation to not take the coin parameter (formally known as 'Currency' parameter in post request to cryptopia server) so that it doesn't take any specific coin parameter and sends it along as the 'Currency' but rather leaves out the post parameter entirely. This results in a Bad Request response.

I have tried passing 'None' as the coin parameter, and also tried passing an empty string as 'Currency' parameter. Both of which acts somewhat weird, in that they return the balances only for $PAC currency. I assume because it's the first currency alphabetically.

Anyone know how to do it, or have suggestions to what i could try ; it would be greatly appreciated.

Check request that you are trying to send to the server. If you want get all balances you should send POST request without parameters in JSON part. BUT JSON PART MUST BE PRESENTED. I mean If you want get your BTC balance it should be : {Currency: "BTC"}, if you want get all balances it should be : {}. I'm almost sure you got Bad Request response because of missed JSON part.

Whole HTTP request should look like this:
--------start--------------
POST https://www.cryptopia.co.nz/api/getbalance HTTP/1.1
Host: www.cryptopia.co.nz
Content-Type: application/json
Content-Length: 2
Accept: */*
Authorization: amx
Connection: close

{}
--------end--------------

And "look at the documentation" pretty right advice. Do not neglect it.
legendary
Activity: 3094
Merit: 3197
Hello

I'm MedaR from ZenCash Team.

I have information from couple of members, that for more than 10 days ZenCash wallet is on maintenance.
Please tell me what is going on and when we can expect this to be solved?

Thanks!

https://www.youtube.com/watch?v=IrxdY3XAu5g

Good afternoon.
Who knows when cryptopia.co.nz unlocks wallets?
What is the problem?

Coininfo says  Wallet Status:

4th May - Investigating withdrawal issues.

But i asking one of the wallet team if they have an update maybe and let you know asap !

Regards Lafu
legendary
Activity: 2380
Merit: 1026
Hello

I'm MedaR from ZenCash Team.

I have information from couple of members, that for more than 10 days ZenCash wallet is on maintenance.
Please tell me what is going on and when we can expect this to be solved?

Thanks!

https://www.youtube.com/watch?v=IrxdY3XAu5g

Good afternoon.
Who knows when cryptopia.co.nz unlocks wallets?
What is the problem?
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
Hey cryptopians and officials!

I was wondering if anyone can tell me how i get all my balances with API, and not just a single balance.

Currently I am using this implementation of the API and it only has this method
Code:
get_balance(coin)

I contacted support about it, and got a very generic "look at the documentation" response. Which i have.. Now, waiting for the follow-up reply of my slightly more aggressive update, i thought i'd consult here.

I have tried modifying the implementation to not take the coin parameter (formally known as 'Currency' parameter in post request to cryptopia server) so that it doesn't take any specific coin parameter and sends it along as the 'Currency' but rather leaves out the post parameter entirely. This results in a Bad Request response.

I have tried passing 'None' as the coin parameter, and also tried passing an empty string as 'Currency' parameter. Both of which acts somewhat weird, in that they return the balances only for $PAC currency. I assume because it's the first currency alphabetically.

Anyone know how to do it, or have suggestions to what i could try ; it would be greatly appreciated.
legendary
Activity: 3094
Merit: 3197
What about MoneroV? Are we getting our coins?

Look a few posts earlyer please  !


Regards  Lafu
legendary
Activity: 1288
Merit: 1926
฿ear ride on the rainbow slide
Any new about MoneroV? Are you going to credit it in the future?

Yet another MoneroV shill asking exactly the same question. Noobie account to shill yet another useless fork intended as a money grab.

https://bitcointalksearch.org/user/cryptoc12-1975349
https://bitcointalksearch.org/user/danielco9-1653730
https://bitcointalksearch.org/user/gdog3-1750519
https://bitcointalksearch.org/user/btcgenius-1750497
https://bitcointalksearch.org/user/alibg-1738359
https://bitcointalksearch.org/user/cavali7-1704255
https://bitcointalksearch.org/user/dzomi-1750535

If you plan to participate in this fork by WITHDRAWING MONERO TO YOUR OWN PRIVATE WALLET PRIOR TO THE FORK - make sure you are VERY CAREFUL.

Bitcoin gold endorsed a wallet that resulted in 3.3 million in real BTC being stolen.
https://news.bitcoin.com/bitcoin-gold-wallet-stole-private-keys-scooped-3-3-million/

Coinsecure exchange also lost around 3 Million that could be related to the fork.
"The note also elucidates that this loss is not a direct result of their infrastructure being compromised or hacked but instead it was due to their CSO Dr. Amitabh Saxsena extracting Bitcoin Gold from Bitcoin. And as a result, their CSO claimed that bitcoins were lost."
https://coinsutra.com/coinsecure-bitcoin-hack-theft/


You risk losing your real Monero for the opportunity to get a copy.

newbie
Activity: 13
Merit: 0
Any new about MoneroV? Are you going to credit it in the future?
hero member
Activity: 2730
Merit: 552


I still am not able to open a new support ticket.  This has gone on for about two weeks now. 

I have written a pm to you !!

Regards Lafu

It just worked.  I remember you saying to logout and log in again before but I thought I did because I often have to log in.
I guess it's actually hitting log out since I'm on two computers here trading.
legendary
Activity: 3094
Merit: 3197


I still am not able to open a new support ticket.  This has gone on for about two weeks now. 

I have written a pm to you !!

Regards Lafu
hero member
Activity: 2730
Merit: 552
so received my CLAM deposit after waiting for two weeks and thought that the CLAM wallet is working now so I sent some coins to trade in cryptopia
now it seems the same scenario is happening , the funds aren't showing even it has over 30 confirmations now
is it the case now with Cryptopia depsoits ?? should wait two weeks everytime we want to make a deposit ??
By checking cryptopia's coin info page, most likely their CLAM wallet is out of sync (not sure if it stopped or still syncing). As of this moment, it is on block 2029032 in cryptopia while CLAM's current block is 2029039.

Its only the frontend of the coininfo !  its sometimes bitchy !  
And 7 blocks behind is normaly nothing , if all works it will catch up or the coininfo page update it laters !
Maybe few times refresh helps but i will asking one of the Wallet devs for to look at it !

Regards Lafu


EDIT : Wallet works and blocks get update !

hey lafu , the funds still not showing so not sure what exactly the problem is if the wallet is up to date
I already contacted support , but it took them like 15 days last time to get back to me so hope at least to get more info from you regarding CLAM since you are the only exchange available for me to trade CLAMs

How long is it since you have maked the deposit ?   If you have ticket number pm that please !  I try to get an dev or admin on it !

thank you for contacting support for me , support replied and it seems there is a problem with the block explorer
didn't get the funds yet but was really glad to see support answering me in the same day , hope it won't take long and again thanks Lafu
They answer all such queries the same day. What you are getting is a very generic reply.

Now starts the game when they will take ages to solve your actual issue. Just leave this exchange as soon as you can. Please improve your services before asking for money for coin oistings.

I still am not able to open a new support ticket.  This has gone on for about two weeks now. 
legendary
Activity: 3290
Merit: 1901
Shuffle.com
Are you going to support MoneroV? Will we get our coins?
Seems like everyone who has monero won't be getting any moneroV from Cryptopia. According to their FAQ page they don't support forks. I'm just gonna quote this previous reply from xtraelv if you don't want to read the FAQ page.


The MoneroV fork is not supported by Cryptopia and currently there are no plans to list it.

Users wanting to take advantage of the fork should withdraw their funds to their personal wallets prior to the fork.
It is advisable to withdraw early to prevent getting stuck in network congestion.

Users should be wary of the security risks involved in this fork. https://www.ccn.com/is-monerov-a-legitimate-hard-fork-of-monero/

The MoneroV team is anonymous, which limits the trust in MoneroV leadership. MoneroV requires Monero holders’ private keys to receive tokens from the airdrop, leaving many to question the safety and privacy of MoneroV’s launch.  MoneroV has recommended solutions to these risks, but many are convinced these issues should not have arisen in the first place. While the MoneroV project is open-source, the MoneroV wallet is not, meaning the wallet source code cannot be audited prior to launch.

Does Cryptopia support Forks, Airdrops or Swaps?
 
Cryptopia do not typically support forks, airdrops, or coin swaps currently (unless stated otherwise) due to the inherent risks. We recommend that users withdraw their coins from the exchange if they wish to participate in these types of coin events.

https://support.cryptopia.co.nz/csm?id=kb_article&sys_id=bcee7178db8e1b4032a664a14a961919

newbie
Activity: 17
Merit: 0
Are you going to support MoneroV? Will we get our coins?
hero member
Activity: 952
Merit: 576
so received my CLAM deposit after waiting for two weeks and thought that the CLAM wallet is working now so I sent some coins to trade in cryptopia
now it seems the same scenario is happening , the funds aren't showing even it has over 30 confirmations now
is it the case now with Cryptopia depsoits ?? should wait two weeks everytime we want to make a deposit ??
By checking cryptopia's coin info page, most likely their CLAM wallet is out of sync (not sure if it stopped or still syncing). As of this moment, it is on block 2029032 in cryptopia while CLAM's current block is 2029039.

Its only the frontend of the coininfo !  its sometimes bitchy !  
And 7 blocks behind is normaly nothing , if all works it will catch up or the coininfo page update it laters !
Maybe few times refresh helps but i will asking one of the Wallet devs for to look at it !

Regards Lafu


EDIT : Wallet works and blocks get update !

hey lafu , the funds still not showing so not sure what exactly the problem is if the wallet is up to date
I already contacted support , but it took them like 15 days last time to get back to me so hope at least to get more info from you regarding CLAM since you are the only exchange available for me to trade CLAMs

How long is it since you have maked the deposit ?   If you have ticket number pm that please !  I try to get an dev or admin on it !

thank you for contacting support for me , support replied and it seems there is a problem with the block explorer
didn't get the funds yet but was really glad to see support answering me in the same day , hope it won't take long and again thanks Lafu
They answer all such queries the same day. What you are getting is a very generic reply.

Now starts the game when they will take ages to solve your actual issue. Just leave this exchange as soon as you can. Please improve your services before asking for money for coin oistings.
Jump to: