I installed bitsquare recently and there is option for burst coins as well. But there are no people who trade with burst coins. Is it still at experimental or working?
Posts made by sleepy
-
Is anyone using bitsquareposted in Marketplace
-
RE: Any advice to prevent computer damageposted in General Discussion
Nice idea. First get a UPS. You never know when there will be a power cut. Get a casing with a dust filter or net , it would be very helpful. Better to get fans with a good brand name, specially the bearing should be high quality one. Cheap ones will make queezing noises after some months. I think hard disk should not be parked or sleep periodically because it has a limit.
-
RE: Linux installing, run.sh java errorposted in Help & Support
By the way don't use root account when executing programs , its dangerous. For executing burst wallet you don't need root. No need to use su command
-
RE: Linux installing, run.sh java errorposted in Help & Support
@BurnMe chmod u+x run.sh should work, it means the user has the permission to run, if you use a+x all can execute . may be you have extracted using a another user and run with account root. Anyway glad you got it working.
-
RE: Linux installing, run.sh java errorposted in Help & Support
@BurnMe Install oracle java version...
-
RE: Linux installing, run.sh java errorposted in Help & Support
Did you give permission to run? chmod u+x run.sh
-
RE: Hi.. I didn't do one of these about a month ago sooo...posted in Welcome
Nice, Like your style. Some are common specially "I like dogs more than i like people" , :)
-
RE: 2 PCs, same burstwallet, same pool ?posted in Help & Support
@rnahlawi Yes, there are no overlaps. I encountered many unsynchronized mining (one started but other did not get the signal from the pool to start)due to network issues with the two pc which lead to higher dl.
-
RE: 2 PCs, same burstwallet, same pool ?posted in Help & Support
Just to make sure , just start one and then after it finishes start the next miner, the second miner may not give a lesser deadline than the first one.
-
RE: 2 PCs, same burstwallet, same pool ?posted in Help & Support
I tried from two pc. But the problem is, if two miners did not start mining at the same time it does not decrease the deadline. It seems two independent miners with high dl. But if the two starts almost at the same time it gives a less dl. So I networked the plot paths to one pc and mined, now seems fine deadline.
-
RE: Monitor assets owned from pythonposted in Development
Assume you want to check all the amount in the wallet and assets in multiple account,
Simple python code to check the grand total. Assuming a local wallet is running.
The addresses of all the burst addresses can be in the BurstAddresses file.Main code , info.py
import time import socket import urllib import urllib2 import json import urllib import urllib2 def connect(url,values): data = urllib.urlencode(values) req = urllib2.Request(url, data) try: response = urllib2.urlopen(req) the_page = response.read() final_data = json.loads(the_page) return final_data except: return 0 file = open("BurstAddresses", "r") addresses = file.readlines() #account_id=input("Account Id:") grand_total_asset_value=0 grand_wallet_value=0 for account_id in addresses: print account_id print("Connecting...") url = 'http://127.0.0.1:8125/burst' values = {'requestType' : 'getAccount', 'account' : account_id} data = connect(url,values) if(data==0): print("Net error!") time.sleep(1) else: total_asset_value=0 for asset in data['assetBalances']: print("") values={'requestType' :'getAsset','asset':asset['asset']} data_asset= connect(url,values) if(data_asset==0): print("Net error!") time.sleep(1) values={'requestType':'getBidOrders','asset':asset['asset'],'lastIndex':'0'} data_bid = connect(url,values) if(data_bid==0): print("Net error!") time.sleep(1) print("asset ID:"+asset['asset']) print("asset name:"+data_asset['name']) asset_bal=float(asset['balanceQNT'])/(10**data_asset['decimals']) print("Qty:"+str(asset_bal)) #print("decimals:"+str(data_asset['decimals'])) try: bid_value=float(data_bid['bidOrders'][0]['priceNQT'])/10**(8-int(data_asset['decimals'])) print("Highest Bid:"+str(bid_value)) asset_value_burst=bid_value * float(asset_bal) print("Value in Burst:"+str(asset_value_burst)) total_asset_value=total_asset_value+float(asset_value_burst) except : print("Highest Bid: None") #balance=float(data['guaranteedBalanceNQT'])/100000000 balance=float(data['unconfirmedBalanceNQT'])/100000000 print("=============================") print("Wallet Balance:"+"{0:.2f}".format(balance)) print("Total Asset Value:"+str(total_asset_value)) print("=============================") values = {'requestType' : 'getBlockchainStatus'} data = connect(url,values) print("Height:"+str(data['lastBlockchainFeederHeight'])) grand_total_asset_value=grand_total_asset_value+total_asset_value grand_wallet_value=grand_wallet_value+balance print("=============GRAND TOTAL============") print("Wallet Balance:"+"{0:.2f}".format(grand_wallet_value)) print("Total Asset Value:"+str(grand_total_asset_value)) print("=============================") print("Net Value:"+str(grand_total_asset_value+grand_wallet_value)) print("=============================")BurstAddresses file
17132087616482062663 10526241997328042230Output
17132087616482062663 Connecting... asset ID:6037211370250490240 asset name:hsassets Qty:51.0 Highest Bid:86.0 Value in Burst:4386.0 ============================= Wallet Balance:218.18 Total Asset Value:4386.0 ============================= Height:340991 =============GRAND TOTAL============ Wallet Balance:218.18 Total Asset Value:4386.0 ============================= Net Value:4604.17629936 ============================= 10526241997328042230 Connecting... asset ID:6037211370250490240 asset name:hsassets Qty:100.0 Highest Bid:86.0 Value in Burst:8600.0 asset ID:16885738494266455518 asset name:SolarGrid Qty:10000.0 Highest Bid: None asset ID:1892701762360056549 asset name:btcdragon Qty:20.0 Highest Bid:70.0001 Value in Burst:1400.002 asset ID:15266167261394017138 asset name:casino Qty:20.0 Highest Bid:473.5 Value in Burst:9470.0 ============================= Wallet Balance:2164.33 Total Asset Value:19470.002 ============================= Height:340991 =============GRAND TOTAL============ Wallet Balance:2382.51 Total Asset Value:23856.002 ============================= Net Value:26238.5088186 ============================= -
RE: Dividend and Asset info on the Assets I hold (24 as of today)posted in Asset Exchange
@Edu I wrote a code in python to get info about assets owned , just take a look https://forums.burst-team.us/post/54290
-
RE: Monitor assets owned from pythonposted in Development
If there is a bug in the code please let me know.
-
RE: Monitor assets owned from pythonposted in Development
Output for the above code.
Account Id:17132087616482062663 Connecting... asset ID:6037211370250490240 asset name:hsassets Qty:100.0 Highest Bid:88.0 Value in Burst:8800.0 asset ID:1892701762360056549 asset name:btcdragon Qty:10.0 Highest Bid:90.0 Value in Burst:900.0 asset ID:16885738494266455518 asset name:SolarGrid Qty:110.0 Highest Bid: None asset ID:15266167261394017138 asset name:casino Qty:25.0 Highest Bid:370.0 Value in Burst:9250.0 asset ID:2264511436216725766 asset name:Lex4All Qty:10.0 Highest Bid:12.0 Value in Burst:120.0 ============================= Wallet Balance:11.99 Total Asset Value:19070.0 ============================= Height:334963 -
Monitor assets owned from pythonposted in Development
I wanted to find out about total owned assets and their total value. So I wrote a python code to get the asset data. No need to enter pass phrase just the numeric account id. The highest bid value quantity is not considered in this code. Need to improve on that in future.
import time import socket import urllib import urllib2 import json import urllib import urllib2 def connect(url,values): data = urllib.urlencode(values) req = urllib2.Request(url, data) try: response = urllib2.urlopen(req) the_page = response.read() final_data = json.loads(the_page) return final_data except: return 0 account_id=input("Account Id:") print("Connecting...") url = 'http://localhost:8125/burst' values = {'requestType' : 'getAccount', 'account' : account_id} data = connect(url,values) if(data==0): print("Net error!") time.sleep(1) else: total_asset_value=0 for asset in data['assetBalances']: print("") values={'requestType' :'getAsset','asset':asset['asset']} data_asset= connect(url,values) if(data_asset==0): print("Net error!") time.sleep(1) values={'requestType':'getBidOrders','asset':asset['asset'],'lastIndex':'0'} data_bid = connect(url,values) if(data_bid==0): print("Net error!") time.sleep(1) print("asset ID:"+asset['asset']) print("asset name:"+data_asset['name']) asset_bal=float(asset['balanceQNT'])/(10**data_asset['decimals']) print("Qty:"+str(asset_bal)) #print("decimals:"+str(data_asset['decimals'])) try: bid_value=float(data_bid['bidOrders'][0]['priceNQT'])/10**(8-int(data_asset['decimals'])) print("Highest Bid:"+str(bid_value)) asset_value_burst=bid_value * float(asset_bal) print("Value in Burst:"+str(asset_value_burst)) total_asset_value=total_asset_value+float(asset_value_burst) except : print("Highest Bid: None") #balance=float(data['guaranteedBalanceNQT'])/100000000 balance=float(data['unconfirmedBalanceNQT'])/100000000 print("=============================") print("Wallet Balance:"+"{0:.2f}".format(balance)) print("Total Asset Value:"+str(total_asset_value)) print("=============================") values = {'requestType' : 'getBlockchainStatus'} data = connect(url,values) print("Height:"+str(data['lastBlockchainFeederHeight'])) -
RE: 2 PCs, same burstwallet, same pool ?posted in Help & Support
@haitch ok i'll also try it, thanks
-
RE: 2 PCs, same burstwallet, same pool ?posted in Help & Support
@haitch but if the plots start from a huge number will it consider the beginning or from that point
-
RE: Quick Linux Questionposted in Mining & Plotting
I prefer Linux over windows. Its stable and no viruses. Windows I always find some bugs at unexpected moments with blue screens and unspecified errors. I only go to windows when there is no option such as games.
-
RE: Burstcoin about to break records!posted in General Discussion
Everyone will eventually like it because of its efficiency mining and true decentralization