Pages:
Author

Topic: [ANN] YBCoin (YBC) | Top Chinese Coin | 100% POS | 3M Coins | Top Market Cap (Read 15911 times)

member
Activity: 104
Merit: 10
Does anyone know in which exchange is still possible to find YBCoin? The site is still alive, but little information important.

Also interested, besides yobit is there somewhere? doesn't work on yobit
sr. member
Activity: 1150
Merit: 347
Does anyone know in which exchange is still possible to find YBCoin? The site is still alive, but little information important.
newbie
Activity: 2
Merit: 0
greetings,
anyone knows a market from where i can buy some YBcoin? others than the chinese ones?
I am located in belgium and when i try to create an account on chinese markets where YBcoin is available doesnt allow me, there is an issue with the phone number for receiving text confirmation for the account.

If anyone is willing to sell some coins I can provide my wallet number and i can make payments with paypal


newbie
Activity: 65
Merit: 0
May you please renew code of wallet please?Moжeтe пoжaлyйcтa oбнoвить иcxoдный кoд кoшeлькa?For yobit I may deposit some YBC from other trading site to yobit?
full member
Activity: 204
Merit: 100
What is the purpose/use case of this coin? Does it do anything unique? Cant find much because its all in Mandarin
hero member
Activity: 2632
Merit: 649
Seabet.io | Crypto-Casino
price on yobit 0.08000000  Huh
hero member
Activity: 938
Merit: 500
legendary
Activity: 1918
Merit: 1001
Just another Chinese pumped shitcoin.
full member
Activity: 252
Merit: 100
hero member
Activity: 493
Merit: 504
Hello all.

I am trying to build the ybcoin wallet on a headless server but am having some issues. Any help would be appreciated.

The github repo is here: https://github.com/ybc2/ybc2

After executing:

Code:
make -f makefile.unix USE_UPNP=-

I get the following error:

Code:
g++ -pthread -Wall -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wno-unused-parameter -Wformat -Wformat-security -g -DBOOST_SPIRIT_THREADSAFE -I/usr/local/src/ybc2/src -I/usr/local/src/ybc2/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -O2 -rdynamic -o ybsharesd obj/scanbalance.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/irc.o obj/keystore.o obj/main.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/script.o obj/util.o obj/wallet.o obj/walletdb.o obj/noui.o obj/kernel.o obj/distribution.o   -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread-mt -l db_cxx -l ssl -l crypto -l rt -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot find -lboost_thread-mt
collect2: error: ld returned 1 exit status
make: *** [ybsharesd] Error 1

On the same machine I successfully built various coin daemons (like ppcoind, vpncoind, clamd...etc), all of them have the same dependency on the libboost library, but this one errors out for some reason.



So I will answer my own post.

The solution for me was to remove the -mt ending in boost_thread-mt in the 33rd line of the makefile.unix file.

Before:

LIBS += \
 LIBS += \
 -Wl,-B$(LMODE) \
   -l boost_system$(BOOST_LIB_SUFFIX) \
   -l boost_filesystem$(BOOST_LIB_SUFFIX) \
   -l boost_program_options$(BOOST_LIB_SUFFIX) \
   -l boost_thread-mt$(BOOST_LIB_SUFFIX) \
   -l db_cxx$(BDB_LIB_SUFFIX) \
   -l ssl \
   -l crypto \
   -l rt


After:

LIBS += \
 -Wl,-B$(LMODE) \
   -l boost_system$(BOOST_LIB_SUFFIX) \
   -l boost_filesystem$(BOOST_LIB_SUFFIX) \
   -l boost_program_options$(BOOST_LIB_SUFFIX) \
   -l boost_thread$(BOOST_LIB_SUFFIX) \
   -l db_cxx$(BDB_LIB_SUFFIX) \
   -l ssl \
   -l crypto \
   -l rt


After the change it compiled successfully. Hope this helps anyone Cheesy This thread seems dead anyway haha

Thread dead Smiley But coin traded in huge volumes on chinese exchanges
hero member
Activity: 746
Merit: 500
Hello all.

I am trying to build the ybcoin wallet on a headless server but am having some issues. Any help would be appreciated.

The github repo is here: https://github.com/ybc2/ybc2

After executing:

Code:
make -f makefile.unix USE_UPNP=-

I get the following error:

Code:
g++ -pthread -Wall -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wno-unused-parameter -Wformat -Wformat-security -g -DBOOST_SPIRIT_THREADSAFE -I/usr/local/src/ybc2/src -I/usr/local/src/ybc2/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -O2 -rdynamic -o ybsharesd obj/scanbalance.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/irc.o obj/keystore.o obj/main.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/script.o obj/util.o obj/wallet.o obj/walletdb.o obj/noui.o obj/kernel.o obj/distribution.o   -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread-mt -l db_cxx -l ssl -l crypto -l rt -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot find -lboost_thread-mt
collect2: error: ld returned 1 exit status
make: *** [ybsharesd] Error 1

On the same machine I successfully built various coin daemons (like ppcoind, vpncoind, clamd...etc), all of them have the same dependency on the libboost library, but this one errors out for some reason.



So I will answer my own post.

The solution for me was to remove the -mt ending in boost_thread-mt in the 33rd line of the makefile.unix file.

Before:

LIBS += \
 LIBS += \
 -Wl,-B$(LMODE) \
   -l boost_system$(BOOST_LIB_SUFFIX) \
   -l boost_filesystem$(BOOST_LIB_SUFFIX) \
   -l boost_program_options$(BOOST_LIB_SUFFIX) \
   -l boost_thread-mt$(BOOST_LIB_SUFFIX) \
   -l db_cxx$(BDB_LIB_SUFFIX) \
   -l ssl \
   -l crypto \
   -l rt


After:

LIBS += \
 -Wl,-B$(LMODE) \
   -l boost_system$(BOOST_LIB_SUFFIX) \
   -l boost_filesystem$(BOOST_LIB_SUFFIX) \
   -l boost_program_options$(BOOST_LIB_SUFFIX) \
   -l boost_thread$(BOOST_LIB_SUFFIX) \
   -l db_cxx$(BDB_LIB_SUFFIX) \
   -l ssl \
   -l crypto \
   -l rt


After the change it compiled successfully. Hope this helps anyone Cheesy This thread seems dead anyway haha
hero member
Activity: 746
Merit: 500
Hello all.

I am trying to build the ybcoin wallet on a headless server but am having some issues. Any help would be appreciated.

The github repo is here: https://github.com/ybc2/ybc2

After executing:

Code:
make -f makefile.unix USE_UPNP=-

I get the following error:

Code:
g++ -pthread -Wall -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wno-unused-parameter -Wformat -Wformat-security -g -DBOOST_SPIRIT_THREADSAFE -I/usr/local/src/ybc2/src -I/usr/local/src/ybc2/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -Wl,-z,relro -Wl,-z,now -D_FORTIFY_SOURCE=2 -O2 -rdynamic -o ybsharesd obj/scanbalance.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/irc.o obj/keystore.o obj/main.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/script.o obj/util.o obj/wallet.o obj/walletdb.o obj/noui.o obj/kernel.o obj/distribution.o   -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread-mt -l db_cxx -l ssl -l crypto -l rt -Wl,-Bdynamic -l z -l dl -l pthread
/usr/bin/ld: cannot find -lboost_thread-mt
collect2: error: ld returned 1 exit status
make: *** [ybsharesd] Error 1

On the same machine I successfully built various coin daemons (like ppcoind, vpncoind, clamd...etc), all of them have the same dependency on the libboost library, but this one errors out for some reason.

member
Activity: 126
Merit: 10
White paper link doesnt works... Is there any particuliar plan for this coin ??

You must login first by qq to download wallet ..
I am mining this coin now ... they pay more 15% bonus
newbie
Activity: 50
Merit: 0
White paper link doesnt works... Is there any particuliar plan for this coin ??
legendary
Activity: 2388
Merit: 1003
sr. member
Activity: 1638
Merit: 292
Eloncoin.org - Mars, here we come!
Yuanbaohui.com seems like the Chinese are buying more Ybcoin in order to get loans.

price predictions guys, will we see $10? Smiley
hero member
Activity: 916
Merit: 500
The chinese are pumping lots of dead coins currently.

Look at Stabilityshares.

That coin died ages ago, yet the chinese have been pumping it bigtime, i sold mine when it was pumped quite a bit around 12 months ago and i thought it had since dies, but i looked at its price yesterday, and they were trading at 3 cents each!

Price is almost three dollars right now

The price is more than 3 dollars now as we speak. Looking good!

sr. member
Activity: 1638
Merit: 292
Eloncoin.org - Mars, here we come!
member
Activity: 126
Merit: 10
The chinese are pumping lots of dead coins currently.

Look at Stabilityshares.

That coin died ages ago, yet the chinese have been pumping it bigtime, i sold mine when it was pumped quite a bit around 12 months ago and i thought it had since dies, but i looked at its price yesterday, and they were trading at 3 cents each!

Price is almost three dollars right now
legendary
Activity: 1918
Merit: 1001
The chinese are pumping lots of dead coins currently.

Look at Stabilityshares.

That coin died ages ago, yet the chinese have been pumping it bigtime, i sold mine when it was pumped quite a bit around 12 months ago and i thought it had since dies, but i looked at its price yesterday, and they were trading at 3 cents each!
Pages:
Jump to: