Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 520. (Read 9723768 times)

sr. member
Activity: 494
Merit: 252
Warning: ICEBreaker on this Forum is a troll!
sr. member
Activity: 1232
Merit: 260
Dash Added to Uphold Instant Exchange


Dash has been added to the Uphold platform, allowing much easier access to the currency for users around the world.

An platform allowing for the easy and instant exchange of currencies, Uphold announced that it has added Dash to its list of supported cryptocurrencies. This means that holders of over 30 currencies will be able to fund their account and buy Dash via bank transfer, with credit card buying functionality to follow in a few days. Dash Core’s CEO Ryan Taylor sees this as a significant facilitator to acquiring Dash, especially for those who may not be familiar with the cryptocurrency exchange world:



full member
Activity: 181
Merit: 100
!!DASH will EXPLODE in 2018!!

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

#dash_force

great video ,  the dash price $764.96 increase 1.06%    i believe  the dash price can break $1000 end this year , i keep some dash on exchange .
sr. member
Activity: 494
Merit: 252
Warning: ICEBreaker on this Forum is a troll!
hero member
Activity: 611
Merit: 500
legendary
Activity: 1834
Merit: 1023
newbie
Activity: 36
Merit: 0
Dash coins are very profitable, I'm sure the price will continue to rise and soon reach $ 1000, maybe before februari 2018.
full member
Activity: 336
Merit: 100
https://www.crypto-coinz.net
sr. member
Activity: 1232
Merit: 260
Dash News Weekly Recap E14 – New All Time High, Dash Funded TV Show, CEO Ryan Taylor & More!


This is a repost of this weeks edition of the Dash Force News Weekly Recap video from our YouTube channel. This show is dedicated to keeping you up to date with Dash news highlights from the past week.

Press That Like Button! Smash For DASH!
Thanks For Watching Please Hit Subscribe & Share Video!



sr. member
Activity: 406
Merit: 250

Rogue German Hedge Fund Manager Recommends DASH


While I was in Frankfurt for the DASH-sponsored “Digital Finance 2017” conference, I met with controversial and outspoken former German Hedge Fund manager legend Florian Homm. He has been following the growing microcosm of the Blockchain and told me he had already a suggested a small allocation of selected Crypto projects in his book “Erfolg im Crash” over a year ago, DASH having been one of them. He interviewed me for an update in his subscription only newsletter, from which he allowed to quote, specifically on DASH and the most recent developments in the community. I was very impressed how deep Homm is into the innerworkings of the Crypto Universe. Along DASH, he also had mentioned IOTA for instance very early on, when hardly anyone had heard of the project. He was also very well aware of the latest turbulences and conflicts in the Bitcoin community and shared my scepticism. He is no big fan of Bitcoin, whose technology he considers as antiquated and he even prefers the Bitcoin Cash fork to it, although he stresses, that both Bitcoin and Ethereum currently provide the best liquidity for entering the market.



Long term, that does make sense. However, there are stinger buy points. But that’s speculative, so I was looking for thoughts on sell-off patterns.
sr. member
Activity: 1232
Merit: 260
Rogue German Hedge Fund Manager Recommends DASH


While I was in Frankfurt for the DASH-sponsored “Digital Finance 2017” conference, I met with controversial and outspoken former German Hedge Fund manager legend Florian Homm. He has been following the growing microcosm of the Blockchain and told me he had already a suggested a small allocation of selected Crypto projects in his book “Erfolg im Crash” over a year ago, DASH having been one of them. He interviewed me for an update in his subscription only newsletter, from which he allowed to quote, specifically on DASH and the most recent developments in the community. I was very impressed how deep Homm is into the innerworkings of the Crypto Universe. Along DASH, he also had mentioned IOTA for instance very early on, when hardly anyone had heard of the project. He was also very well aware of the latest turbulences and conflicts in the Bitcoin community and shared my scepticism. He is no big fan of Bitcoin, whose technology he considers as antiquated and he even prefers the Bitcoin Cash fork to it, although he stresses, that both Bitcoin and Ethereum currently provide the best liquidity for entering the market.


sr. member
Activity: 494
Merit: 252
Warning: ICEBreaker on this Forum is a troll!
Dash Has Tripled in Value Over the Past Month

https://hacked.com/dash-tripled-value-month/

#dash_force
sr. member
Activity: 494
Merit: 252
Warning: ICEBreaker on this Forum is a troll!
legendary
Activity: 1318
Merit: 1040

I'm trying to build DASH on Mac and getting "not found for architecture x86_64" error when I run make. I pulled DASH repository from git and ran:

Code:

./autogen.sh
./configure
make


Error:

Code:
Undefined symbols for architecture x86_64:
  "boost::this_thread::hiden::sleep_for(timespec const&)", referenced from:
      MilliSleep(long long) in libbitcoin_util.a(libbitcoin_util_a-utiltime.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [dashd] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1

Does anybody know what should I do in order for it to work?
... EDIT: all libs  seems to be in place but still no luck....
... EDIT2: nothing helped....
I'm out of ideas...  Sad

Ah, good find!
So it's indeed a messed up boost setup, interesting.
legendary
Activity: 1456
Merit: 1000

I'm trying to build DASH on Mac and getting "not found for architecture x86_64" error when I run make. I pulled DASH repository from git and ran:

Code:

./autogen.sh
./configure
make


Error:

Code:
Undefined symbols for architecture x86_64:
  "boost::this_thread::hiden::sleep_for(timespec const&)", referenced from:
      MilliSleep(long long) in libbitcoin_util.a(libbitcoin_util_a-utiltime.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [dashd] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1

Does anybody know what should I do in order for it to work?
... EDIT: all libs  seems to be in place but still no luck....

It's weird then... Try reinstalling boost from scratch and then building it again (but first cleaning all that mess before making new build)
Code:
brew uninstall --force boost
brew install boost
./configure
make clean
make

EDIT: removed over-quoting


Tried, did not work. It's definitely something wrong with my mac dependencies as I tried to build bitcoin and I'm getting the same error.



Hmm... Check Command line tools, maybe they were misconfigured somehow?
Code:
$ xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
What do you get for these two?



Getting the same as you:

Code:
$ xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin



I'm out of ideas...  Sad
legendary
Activity: 1834
Merit: 1023
legendary
Activity: 1318
Merit: 1040
I'm trying to build DASH on Mac and getting "not found for architecture x86_64" error when I run make. I pulled DASH repository from git and ran:

Code:

./autogen.sh
./configure
make


Error:

Code:
Undefined symbols for architecture x86_64:
  "boost::this_thread::hiden::sleep_for(timespec const&)", referenced from:
      MilliSleep(long long) in libbitcoin_util.a(libbitcoin_util_a-utiltime.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [dashd] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1

Does anybody know what should I do in order for it to work?
... EDIT: all libs  seems to be in place but still no luck....

It's weird then... Try reinstalling boost from scratch and then building it again (but first cleaning all that mess before making new build)
Code:
brew uninstall --force boost
brew install boost
./configure
make clean
make

EDIT: removed over-quoting


Tried, did not work. It's definitely something wrong with my mac dependencies as I tried to build bitcoin and I'm getting the same error.



Hmm... Check Command line tools, maybe they were misconfigured somehow?
Code:
$ xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
What do you get for these two?



Getting the same as you:

Code:
$ xcode-select --install
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin



I'm out of ideas...  Sad
legendary
Activity: 1834
Merit: 1023
Dash.red Video Contest! Easy to win 1 million!
(0.00000001 Dash = 1 Duff)

https://youtu.be/6UkTXVbrvfE
jr. member
Activity: 69
Merit: 8
Hi everyone.

I invested in DarkCoin (now Dash) a while ago and I have been opening up all my altcoin wallets recently, I have 16 coins in the wallet.

Does anyone know any good currency exchange websites where I can trade some of these for Bitcoin?

I plan to keep most of them as the coins still looks to be going strong but I also plan on trading some of them for Bitcoin as I current have no Bitcoin.

Any help appreciated. Thanks.

I hear good things about ShapeShift (https://shapeshift.io) for a simple conversion from Altcoin to Bitcoin.
Then you can sent that Bitcoin to a local Bitcoin wallet that you fully control.

Or you can take a look here : https://dashpay.atlassian.net/wiki/spaces/DOC/pages/48693298/Exchanges

http://bittrust.org/shapeshift

Have you seen them reviews? :\

Ended up going with Bitfinex as it was listed on the Dash website and has pretty good reviews despite it being hacked last year they refunded the accounts out of the own pocket... couldn't have been cheap but actions like that speak louder than words.
sr. member
Activity: 494
Merit: 252
Warning: ICEBreaker on this Forum is a troll!
Jump to: