meyer
|
|
August 03, 2016, 01:03:49 PM |
|
got a good share of ERC today at Bittrex ...THX to the dumper ;-)
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
August 03, 2016, 01:18:24 PM |
|
got a good share of ERC today at Bittrex ...THX to the dumper ;-)
And here is one of the rare, but existing wise people. Well done! Isn't it a beautiful day? On days like this, only altcoins, that didn't do their homework, are having a reason to fear. For the rest its a great day, market volume increases, rumor increases, good coins are cheap, exchanges are getting fresh funds and we have the opportunity so see the magic of free trade in action. Everything will be just better for those, who have been prepared. Matthias .
|
|
|
|
Limx Dev
Copper Member
Legendary
Offline
Activity: 2352
Merit: 1348
|
|
August 04, 2016, 07:52:11 PM |
|
|
Bitcore BTX - a UTXO fork of Bitcoin - since 2017
|
|
|
CryptoJohn
Legendary
Offline
Activity: 1680
Merit: 1003
Well, That's Crypto :-\
|
|
August 04, 2016, 08:30:22 PM |
|
ERC wallet V3 is super clean and functional. Nice Work indeed.
I am curious why manuals or faqs are never on a tab under help? Is this a space issue or a time issue? Thanks
Exchange went perfectly(Tid: c6e603f932dc19b12d5ef35e22928e9b9e6e960dd3f42a979ab004d1c1d9f368-000), professional and ahead of schedule. Thank you.
With the right focused development and marketing Europecoin has an opportunity to become, at the very least, Europe's bitcoin as BTC dies off. I like to compare BTC to the Lycos search engine. Great idea but not the best solution. The advantages many of the alts have over BTC means alts replace BTC at some point.
Thanks again dev, great work thus far. john
|
|
|
|
metamorphin
Legendary
Offline
Activity: 1106
Merit: 1004
No risk, no fun!
|
|
August 04, 2016, 09:20:08 PM |
|
ERC wallet V3 is super clean and functional. Nice Work indeed.
I am curious why manuals or faqs are never on a tab under help? Is this a space issue or a time issue? Thanks
Exchange went perfectly(Tid: c6e603f932dc19b12d5ef35e22928e9b9e6e960dd3f42a979ab004d1c1d9f368-000), professional and ahead of schedule. Thank you.
With the right focused development and marketing Europecoin has an opportunity to become, at the very least, Europe's bitcoin as BTC dies off. I like to compare BTC to the Lycos search engine. Great idea but not the best solution. The advantages many of the alts have over BTC means alts replace BTC at some point.
Thanks again dev, great work thus far. john
Hey John, ur fooder...we are on Version 3! :-) Greetz
|
|
|
|
CryptoJohn
Legendary
Offline
Activity: 1680
Merit: 1003
Well, That's Crypto :-\
|
|
August 05, 2016, 02:40:11 AM |
|
thanks
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
August 05, 2016, 03:18:43 PM |
|
ERC wallet V3 is super clean and functional. Nice Work indeed.
I am curious why manuals or faqs are never on a tab under help? Is this a space issue or a time issue? Thanks
Exchange went perfectly(Tid: c6e603f932dc19b12d5ef35e22928e9b9e6e960dd3f42a979ab004d1c1d9f368-000), professional and ahead of schedule. Thank you.
:-) its a functional problem, when building a faq with a faq component you would need a component in a component to ad the Tab to a content item, all those plugins, that are claiming, to do so, are not staple enough in terms of javascript compatibility. But you are correct, putting a tab to the place, where the questions are generated, would be even more convenient. in case, you meant not the swap site, but the wallet, yes we are allready thinking about an (extendet) help section as a tab. Similar to "Multibit" ... have fun Matthias .
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
August 05, 2016, 04:54:58 PM |
|
Little banner for everybody, who likes to spread the word about our new Release:
and you could ad the article from Bitcoingarden as a link: http://goo.gl/h08e9B
thanks everybody for helping and post a link to the spaces where you are advertising us, i am curious to know, where you talk about us (and i am thinking about paying a small bounty)
have fun Matthias .
|
|
|
|
|
rmd73
Sr. Member
Offline
Activity: 385
Merit: 252
Think with your brain. It is not illegal (yet).
|
|
August 06, 2016, 01:04:43 PM |
|
For less seasoned linux (Ubuntu) users, there's how I managed to compile ERC v3.0.1.1 on my machine (XUbuntu 14.04 amd64). Some steps might be unnecessary for some of you, but I encourage everyone to read and understand at least conceptually the commands below. # prepare your environment (if necessary) # as per requirements and dependencies specifications in doc/build-unix.md # for basic (daemon) building user@machine:~$ sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev # for libdb4.8 (if not already installed/compiled) user@machine:~$ sudo add-apt-repository ppa:bitcoin/bitcoin user@machine:~$ sudo apt-get update user@machine:~$ sudo apt-get install libdb4.8-dev libdb4.8++-dev # for qt5 GUI client building user@machine:~$ sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler # for QR codes capabilities (if you don't know what that means, just skip it :) ) user@machine:~$ sudo apt-get install libqrencode-dev
# get the source user@machine:~$ git clone https://github.com/LIMXTEC/Europecoin-V3 Europecoin-V3src/ # actually go there ;) user@machine:~$ cd Europecoin-V3src/
# I needed to explicitly grant "execute" permission to all shell scripts in the source tree. # I know, I'm lazy... # YMMV. user@machine:~$ chmod -Rc +x ./*.sh user@machine:~$ chmod -Rc +x ./*/*.sh user@machine:~$ chmod -Rc +x ./*/*/*.sh user@machine:~$ chmod -Rc +x ./*/*/build_detect_platform
user@machine:~$ ./autogen.sh
user@machine:~$ ./configure
user@machine:~$ make
user@machine:~$ strip europecoind user@machine:~$ strip europecoin-cli user@machine:~$ strip europecoin-tx user@machine:~$ strip qt/europecoin-qt # just making sure it will run ;) user@machine:~$ chmod +x qt/europecoin-qt
# if you want the binaries copied to /usr/local/bin user@machine:~$ make install
# ... or you can copy thse binaries to the folder of your choice # Have fun and (maybe) show some appreciation (EJZwagsubfxn1xeB4JmztAWitgTPty3FzN). Thanks, ERC devs
|
|
|
|
Limx Dev
Copper Member
Legendary
Offline
Activity: 2352
Merit: 1348
|
|
August 06, 2016, 01:16:24 PM |
|
For less seasoned linux (Ubuntu) users, there's how I managed to compile ERC v3.0.1.1 on my machine (XUbuntu 14.04 amd64). Some steps might be unnecessary for some of you, but I encourage everyone to read and understand at least conceptually the commands below. # prepare your environment (if necessary) # as per requirements and dependencies specifications in doc/build-unix.md # for basic (daemon) building user@machine:~$ sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev # for libdb4.8 (if not already installed/compiled) user@machine:~$ sudo add-apt-repository ppa:bitcoin/bitcoin user@machine:~$ sudo apt-get update user@machine:~$ sudo apt-get install libdb4.8-dev libdb4.8++-dev # for qt5 GUI client building user@machine:~$ sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler # for QR codes capabilities (if you don't know what that means, just skip it :) ) user@machine:~$ sudo apt-get install libqrencode-dev
# get the source user@machine:~$ git clone https://github.com/LIMXTEC/Europecoin-V3 Europecoin-V3src/ # actually go there ;) user@machine:~$ cd Europecoin-V3src/
# I needed to explicitly grant "execute" permission to all shell scripts in the source tree. # I know, I'm lazy... # YMMV. user@machine:~$ chmod -Rc +x ./*.sh user@machine:~$ chmod -Rc +x ./*/*.sh user@machine:~$ chmod -Rc +x ./*/*/*.sh user@machine:~$ chmod -Rc +x ./*/*/build_detect_platform
user@machine:~$ ./autogen.sh
user@machine:~$ ./configure
user@machine:~$ make
user@machine:~$ strip europecoind user@machine:~$ strip europecoin-cli user@machine:~$ strip europecoin-tx user@machine:~$ strip qt/europecoin-qt # just making sure it will run ;) user@machine:~$ chmod +x qt/europecoin-qt
# if you want the binaries copied to /usr/local/bin user@machine:~$ make install
# ... or you can copy thse binaries to the folder of your choice # Have fun and (maybe) show some appreciation (EJZwagsubfxn1xeB4JmztAWitgTPty3FzN). Thanks, ERC devs Great job! I have add your guide on Github. https://github.com/LIMXTEC/Europecoin-V3/tree/master/docBest Regards Christian
|
Bitcore BTX - a UTXO fork of Bitcoin - since 2017
|
|
|
rmd73
Sr. Member
Offline
Activity: 385
Merit: 252
Think with your brain. It is not illegal (yet).
|
|
August 06, 2016, 01:32:38 PM |
|
|
|
|
|
CRYPTONAIRE
Sr. Member
Offline
Activity: 527
Merit: 251
Quality Crypto Collector
|
|
August 06, 2016, 02:46:40 PM |
|
Finally managed to send my old ERCs to the swap tool. (Breathes sigh of relief) Thanks for all the help and advice given; it is greatly appreciated. Now just have to wait for Monday!!
|
FINANCECLOUD CRYPTO-HUB : by EUROPECOIN
|
|
|
c00p3r
Member
Offline
Activity: 101
Merit: 10
Frank Sinatra
|
|
August 06, 2016, 02:59:12 PM |
|
MacWallet v3.0.1.1Downloadmd5sum: 7c8abbd035f11b1128f79634c77f863f
|
|
|
|
metamorphin
Legendary
Offline
Activity: 1106
Merit: 1004
No risk, no fun!
|
|
August 06, 2016, 06:16:35 PM |
|
And we are so happy for helping ppl and paid a bounty for you. 0e971d6fb0bce356bb5bdac2298651e8cbb761a8d6e690bd030b6cf879efac73 :-) Greetz Steve
|
|
|
|
rmd73
Sr. Member
Offline
Activity: 385
Merit: 252
Think with your brain. It is not illegal (yet).
|
|
August 06, 2016, 07:01:51 PM |
|
And we are so happy for helping ppl and paid a bounty for you.
0e971d6fb0bce356bb5bdac2298651e8cbb761a8d6e690bd030b6cf879efac73
:-)
Greetz Steve
Thank you! I actually wondered where those came from
|
|
|
|
commandrix
|
|
August 07, 2016, 05:53:58 PM |
|
Europecoin, am checking out your website. PM me if you need a good content writer. Am sure we could work something out. P.S. Why no Android wallet?
|
|
|
|
Limx Dev
Copper Member
Legendary
Offline
Activity: 2352
Merit: 1348
|
|
August 07, 2016, 05:56:31 PM |
|
Europecoin, am checking out your website. PM me if you need a good content writer. Am sure we could work something out. P.S. Why no Android wallet?
Android Wallet is in progress. Best Regards Christian
|
Bitcore BTX - a UTXO fork of Bitcoin - since 2017
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
August 07, 2016, 06:29:53 PM |
|
Europecoin, am checking out your website. PM me if you need a good content writer. Am sure we could work something out. P.S. Why no Android wallet?
Android Wallet is in progress. Best Regards Christian TÄTÄÄ here we are. Everything just in freaking time i love returning home from a day without btctalk
and seeing everything is running smooth, how many maintainers are that lucky, with their thread
on my way home, tons of news in my backback,
have fun Matthias
.
|
|
|
|
wildduck
Legendary
Offline
Activity: 966
Merit: 1001
|
|
August 08, 2016, 06:44:03 AM |
|
Everything is working nicely and without error i`m so satisfied
|
|
|
|
|