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.


Messages - betax

Pages: 1 ... 45 46 47 48 49 50 51 [52] 53 54
766
Technical Support / Re: Compiling Bitshares in Ubuntu
« on: February 28, 2014, 01:57:22 pm »
@Hackfisher I have added your chain to the instructions.

@All I have also added a simple get latest, build script, I just like to keep a history of builds just in case the latest breaks.

767
Technical Support / Re: Compiling Bitshares in Ubuntu
« on: February 28, 2014, 01:47:10 pm »
Awesome thanks HackFisher.

768
Technical Support / Re: BitShares-PTS Wallet & ProtoShares Wallet????
« on: February 28, 2014, 12:54:14 pm »
Yes, but if you had PTS in your previous wallet, you will need to copy it to the new folder to access that wallet.

769
Technical Support / Re: Compiling Bitshares in Ubuntu
« on: February 28, 2014, 12:37:06 pm »
I am having the same problem with today's and yesterday build. Yesterday was working correctly ... so I guess some breaking changes are occurring now in the network.

770
Technical Support / Re: BitShares-PTS Wallet & ProtoShares Wallet????
« on: February 28, 2014, 09:17:00 am »
Well it has also added features like "getagsbalance", which gives you your Angel Shares balance for donations using that wallet.

771
Technical Support / Re: BitShares-PTS Wallet & ProtoShares Wallet????
« on: February 28, 2014, 09:15:50 am »
Yes it is a rebranded version, nothing else. But your wallet.dat is in a different location, (based on the new name).
On windows : AppData\Roaming\BitShares-PTS

772
Technical Support / Re: Compiling Bitshares in Ubuntu
« on: February 28, 2014, 05:37:08 am »
There is no GUI yet. Check https://bitsharestalk.org/index.php?topic=1890.msg40688#msg40688 on an update on the GUI.

773
General Discussion / Re: Bitshare-X wallet availability to redeem it!
« on: February 27, 2014, 11:14:55 am »
Hi for the time being, if you are using ubuntu you can follow this intructions to build it in the post below, also if compiling from scratch is not your thing, I will put daily build links in that post.

https://bitsharestalk.org/index.php?topic=3216.0][url]https://bitsharestalk.org/index.php?topic=3216.0[/url]

774
Technical Support / Re: Compiling Bitshares in Ubuntu
« on: February 27, 2014, 10:55:46 am »
Compiled versions

I will try to post a daily compiled drop here (until a better solution is available).

Note: You don't know me, so for all you know this can be infected with a virus, (it is not) but nevertheless common sense apply.

Have fun.

2014-02-27https://www.dropbox.com/s/p0aggc29in3rucr/bts_wallet%202014-02-27.tar.gz
2014-02-28https://www.dropbox.com/s/vytze9qfhtw5qsp/bts_wallet_2014-02-28.tar.gz
2014-03-03Build broken: authorisation_status enum changes
2014-03-04https://www.dropbox.com/s/u2qn33uv2v2hauq/bts_wallet_2014_03_04.tar.gz It includes now get_bts_balance

Note: If you have already compiled your own version and want to build the latest just, run this. It will delete the BitShares directory, clone the latest, run cmake and compile.
Code: [Select]

cd ~
rm -rf BitShares
git clone https://github.com/InvictusInnovations/BitShares.git
cd BitShares
git clone https://github.com/InvictusInnovations/fc.git

~/cmake-2.8.12.1/bin/cmake ~/BitShares

cd ~/BitShares
make

If you have a custom chain as supplied by HackFisher.. backit up first before you delete the BitShares the directory.

775
Technical Support / Re: Report of Broken or Hazardous Links
« on: February 26, 2014, 03:39:26 pm »
Nevertheless, I will suggest you download (if you want to mine PTS) if using CPU the yam ones.. same place in YPool or use a GPU one (much faster). You should find the GPU ones here in the forum.

776
Technical Support / Re: Report of Broken or Hazardous Links
« on: February 26, 2014, 03:36:59 pm »
Hi,

You should check in the chat of YPool as that miner is a custom miner created by jh00 (YPool). Nevertheless I am 99% sure that your antivirus is giving you a false positive, I assume that some trojan has embedded the miner before to do mine for them.


777
Technical Support / Compiling Bitshares in Ubuntu
« on: February 26, 2014, 12:21:15 pm »
Hi,

Please find here some quick notes I have written on compiling BitShares in a fresh image of Ubuntu.

Code: [Select]
cd ~
sudo apt-get update
sudo apt-get install git libreadline-dev uuid-dev g++ libdb++-dev libdb-dev zip libssl-dev openssl build-essential python-dev autotools-dev libicu-dev build-essential libbz2-dev

Boost
Code: [Select]
cd ~
wget -O boost_1_54_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz/download
tar xzvf boost_1_54_0.tar.gz
cd boost_1_54_0/

# boost's bootsrap setup
./bootstrap.sh --prefix=/usr/local
   
# If we want MPI then we need to set the flag in the user-config.jam file
user_configFile=`find $PWD -name user-config.jam`
echo "using mpi ;" >> $user_configFile
   
# Find the maximum number of physical cores
n=`cat /proc/cpuinfo | grep "cpu cores" | uniq | awk '{print $NF}'`

    # Install boost in parallel
sudo ./b2 --with=all -j $n install
   
    # Reset the ldconfig, assumes you have /usr/local/lib setup already. check ROOT installation
    # blog I wrote if not. Else you can add it to your LD_LIBRARY_PATH, running this anyway
    # will not hurt.
sudo ldconfig 

chmod +x install_boost.sh
./install_boost.sh

boost installation extracted from here: https://dl.dropboxusercontent.com/u/88131281/install_boost.sh

cmake-2.8.12.1

Code: [Select]
cd ~
wget http://www.cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz
tar xvf cmake-2.8.12.1.tar.gz
cd cmake-2.8.12.1
cmake . && make

Clone the code

Code: [Select]
cd ~
git clone https://github.com/InvictusInnovations/BitShares.git
cd BitShares
git clone https://github.com/InvictusInnovations/fc.git


Run cmake
Code: [Select]
~/cmake-2.8.12.1/bin/cmake ~/BitShares
Finally compile it
Code: [Select]
cd ~/BitShares
make

If everything is ok you should have your compiled versions here:
Code: [Select]
cd bts_wallet
 ./bts_server and ./bts_wallet

Genesis 28/2

Here is a link to the genesis.json posted by bytemaster

https://github.com/betaxx/BTSXBalance/blob/master/genesis.json?raw=true

Initialising Genesis by HackFisher:
Quote
For testing, I modified the code using original genesis address and generate the testing genesis chain, you can download it and unzip in the folder of bts_server if you need.

https://dl.dropboxusercontent.com/u/5037011/chain.zip

after you start and login bts wallet, you can import genesis key:
Code: [Select]

importkey d987064e501555cf3d2e4e68f093a94144bc876a85c520971b747af32fa6a4c3 rescan


you get 100 BTS to play.


Check your BTSX balances without using your wallet.dat
This a shameless plug for a tool I created :) .. check it out here if you want to confirm your BTSx balance.
https://bitsharestalk.org/index.php?topic=3371.0

778
Fantastic video, thanks. It seems that all the ideas I have you have had them already and even better!

779
Technical Support / Re: bts_wallet -- error on quit
« on: February 26, 2014, 10:42:47 am »
Thanks bytemaster, looking forward to see it up and running.

780
Technical Support / Re: bts_wallet -- error on quit
« on: February 25, 2014, 05:34:02 pm »
Same problem here

Pages: 1 ... 45 46 47 48 49 50 51 [52] 53 54