Bitcoin Forum
June 21, 2024, 08:31:17 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 [145] 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 »
  Print  
Author Topic: ⚒ Syscoin -Blockchain Scalability, Trustless Interoperability for ERC20 projects  (Read 501978 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (14 posts by 1+ user deleted.)
DRPD
Legendary
*
Offline Offline

Activity: 1148
Merit: 1001


View Profile
May 07, 2018, 01:20:09 PM
 #2881


IconFirm, you can compile it. First part the MN setup describes how you can comile linux wallet.
http://www.syscoin.io/support/solutions/articles/31000140994-syscoin-3-0-with-masternodes-setup-guide

Yes, I can compile it. The reason I asked was because most users either aren't savvy enough to compile their own wallets or simply want to download & run it which makes adoption much easier & quicker. Why release binaries for windows when people can compile their own from source then?

Edit: I take that back - compile fails on Linux (Xubuntu) 64bit. I guess this is why there are no binaries.

Has anyone managed to successfully build this from source?

compiling works fine on ubuntu 16.04 with the guide here:
https://medium.com/@BlockchainFoundry/syscoin-3-0-masternode-setup-instructions-572576c7163f

cheers
okinawa
Sr. Member
****
Offline Offline

Activity: 574
Merit: 259


Deal Coin - P2P Lending Eco-system


View Profile
May 08, 2018, 12:23:28 PM
 #2882

stay away from scammers, they contacted me to buy syscoin but I don’t trust them, buy them in exchanges

Who contacted you to buy Syscoin? I can guarantee that it wasn't anyone in our team.

Scammers are everywhere on telegram, they want you to send them eth or btc. We should not trust anyone who try to contact us on telegram, best thing to do is ignore and report them

IconFirm
Hero Member
*****
Offline Offline

Activity: 1438
Merit: 574


Always ask questions. #StandWithHongKong


View Profile WWW
May 08, 2018, 03:47:50 PM
 #2883


IconFirm, you can compile it. First part the MN setup describes how you can comile linux wallet.
http://www.syscoin.io/support/solutions/articles/31000140994-syscoin-3-0-with-masternodes-setup-guide

Yes, I can compile it. The reason I asked was because most users either aren't savvy enough to compile their own wallets or simply want to download & run it which makes adoption much easier & quicker. Why release binaries for windows when people can compile their own from source then?

Edit: I take that back - compile fails on Linux (Xubuntu) 64bit. I guess this is why there are no binaries.

Has anyone managed to successfully build this from source?

compiling works fine on ubuntu 16.04 with the guide here:
https://medium.com/@BlockchainFoundry/syscoin-3-0-masternode-setup-instructions-572576c7163f

cheers

That might work for a fresh install on a vps, but it doesn't work on my system with various other wallets installed for some reason. I kept getting a boost error as soon as the compile got to CXXLD syscoind:

Code:
libsyscoin_wallet.a(libsyscoin_wallet_a-wallet.o): In function copy_file':
/usr/include/boost/filesystem/operations.hpp:539: undefined reference to boost::filesystem::detail::copy_file(boost::filesystem::path const&, boost::filesystem::path const&, boost::filesystem::detail::copy_option, boost::system::error_code*)'
libsyscoin_wallet.a(libsyscoin_wallet_a-wallet.o): In function pathboost::filesystem::directory_entry':
/usr/include/boost/filesystem/path.hpp:144: undefined reference to boost::filesystem::path_traits::dispatch(boost::filesystem::directory_entry const&, std::string&)'
libsyscoin_wallet.a(libsyscoin_wallet_a-wallet.o): In function `copy_file':
/usr/include/boost/filesystem/operations.hpp:544: undefined reference to boost::filesystem::detail::copy_file(boost::filesystem::path const&, boost::filesystem::path const&, boost::filesystem::detail::copy_option, boost::system::error_code*)'
libsyscoin_util.a(libsyscoin_util_a-utiltime.o): In function sleep_for':
/usr/include/boost/thread/pthread/thread_data.hpp:258: undefined reference to boost::this_thread::hidden::sleep_for(timespec const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [syscoind] Error 1

I'm no coder or expert, but from what I could gather it seems that the compile has trouble detecting boost files properly for some reason & after searching around I noticed similar reports on your SYS github page. Instead of upgrading the boost files as was (wrongly) suggested there, I decided to try a separate boost installation & point the syscoin compile to that unused (& latest) boost install. This would also eliminate the risk of breaking any other programs that were reliant on the older boost files - hey presto - the compile completed successfully!

For anyone else having similar issues, here's what I did:

1) Download the latest boost to the home directory (v1.66 at this time)

Code:
wget -O boost_1_66_0.tar.gz https://sourceforge.net/projects/boost/files/boost/1.66.0/boost_1_66_0.tar.gz/download

2) Unzip it in the same directory

Code:
tar xzvf boost_1_66_0.tar.gz

3) Enter the unzipped directory

Code:
cd boost_1_66_0/

4) Run bootstrap setup

Code:
./bootstrap.sh --prefix=/usr/

5) Build it

Code:
./b2

6) Install it

Code:
sudo ./b2 install

7) Enter git cloned syscoin folder

Code:
cd
cd syscoin

Cool Compile using the following configuration (Important: replace USER_NAME with your user name in the "./configure" script)

Code:
chmod +x autogen.sh
chmod +x share/genbuild.sh
chmod +x src/leveldb/build_detect_platform
./autogen.sh
./configure --disable-tests --without-gui --with-boost-libdir=/home/USER_NAME/boost_1_66_0/stage/lib/
make

This "should" build your headless syscoind & syscoin-cli successfully using the latest boost allocated to it in your home directory. I've not tried this method to build the QT version as I don't use it, but you can just remove the "--without-gui" command in the configure script to try it out if you want to.

This was the only way I could compile the SYS wallet after spending hours messing around with it, trying different options. I've no idea why SYS is the only wallet that requires this, especially as all previous syscoin2 versions compiled fine & I have over 20 other wallets compiled & running on this same machine without issue, but I'll leave that up to the devs to explore - like I said earlier, I'm no coder or expert.

I hope this helps anyone else who's having problems - feel free to copy/paste/link to it on your github page, maybe it will help those who are having the same problem, I don't have an account there so can't post it.


PIA went evil: https://bitcointalk.org/index.php?topic=5203968.msg53160131#msg53160131 Unofficial & Uncensored SYSCOIN thread: https://bitcointalk.org/index.php?topic=4748031.0    Do not trust Yobit/HitBTC/BiteBTC/coinsbit/p2pb2b/Mercatox/C-cex/Poloniex/WEX/KuCoin/LiveCoin/TheRockTrading/Bitfinex/ADAB/Okex/TradeSatoshi/Gate.io/Changelly/Freewallet.org/crex24 scam exchanges or ICO's by known scammers like HashCoins/Ambisafe/Bountyhive - they WILL scam you! Use diligence & research. Buy coins, sell coins - don't invest in stupid shit. If your questions aren't answered - don't touch it.
vsrocks
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
May 08, 2018, 09:33:08 PM
 #2884

Syscoin (SYS) all-in-one info now added here:

https://chatoncrypto.com/Crypto/C/65-SYS-Syscoin


Thanks.
xbiv2
Full Member
***
Offline Offline

Activity: 560
Merit: 111


View Profile
May 10, 2018, 06:49:11 AM
 #2885

https://github.com/syscoin/syscoin/issues/187
aliasupdate and aliasnew not realy work
it whay poloniex regect this fork

sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
May 10, 2018, 10:08:16 AM
 #2886

https://github.com/syscoin/syscoin/issues/187
aliasupdate and aliasnew not realy work
it whay poloniex regect this fork
does work and no reject. working on it they busy
okinawa
Sr. Member
****
Offline Offline

Activity: 574
Merit: 259


Deal Coin - P2P Lending Eco-system


View Profile
May 10, 2018, 11:10:15 AM
 #2887

@Sys Coin Team: please add Syscoin to masternodes online !

https://masternodes.online/

It's a great website for monitoring masternodes!

Thanks!

Get listed: https://campaigns.masternodes.online/product-category/coin-listing/



So your first post is promoting a weird website ? I never heard about this website before, I hope the listing is free but I don't think it's necessary for Syscoin to be there

Sjacmur
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
May 10, 2018, 04:19:10 PM
 #2888

if you know a better site for free monitoring of masternodes, please tell me!

if its free add SYS yourself and show us result.
why spam us www site without our coin ? Add SyS or leave.
sebastien1234
Sr. Member
****
Offline Offline

Activity: 654
Merit: 252


PR Director@Blockchain Foundry/Co-Founder@Syscoin


View Profile WWW
May 10, 2018, 10:46:17 PM
 #2889

Blockchain Foundry Inc. to Commence Trading on Canadian Securities Exchange


Source(s):

https://www.newswire.ca/news-releases/blockchain-foundry-inc-to-commence-trading-on-canadian-securities-exchange-682270582.html

https://www.blockchainfoundry.co/blog/blockchain-foundry-inc-to-commence-trading-on-canadian-securities-exchange

sebastien1234
Sr. Member
****
Offline Offline

Activity: 654
Merit: 252


PR Director@Blockchain Foundry/Co-Founder@Syscoin


View Profile WWW
May 10, 2018, 10:48:59 PM
 #2890

Syscoin 3.0: A Peer-to-Peer Electronic Cash System Built For Business Applications by Jagdeep Sidhu

Source:

https://syscoin.org/Syscoin_3.0_Whitepaper__Condensed.pdf


satrum
Full Member
***
Offline Offline

Activity: 252
Merit: 101



View Profile
May 11, 2018, 03:59:59 AM
 #2891

info about "Syscoin 3.0 whitepaper: A Peer-to-Peer Electronic Cash System Built For Business Applications" added for voting, proof and forecast on YEENOT TODAY https://yeenot.today/catalog/news/228

what you think about trade some consistency for some availability in Z-DAG ?
truxton
Hero Member
*****
Offline Offline

Activity: 771
Merit: 521



View Profile
May 11, 2018, 06:58:53 PM
 #2892

SysCoin is now ready for cross-chain dapps with the Blocknet Protocol!





Now that Sys is compatible with the Blocknet Protocol, it can be used in cross-blockchain dapps and traded on beta Block DX!

You can read more about Blocknet, the Blocknet Protocol, and Block DX here:

https://blocknet.co

https://sites.google.com/view/blocknet/directory

To get started with trading on Block DX, follow this setup guide: https://docs.google.com/document/d/1ciwLFSXwv6CXd3QEvVW88lHXo9CSIlweYOoSbDHkies/preview

The setup is in the process of being automated/abstracted so it's much easier and streamlined to use for beginners. In addition to that, in July we are planning to release SPV support which will allow for the creation of litewallets so whole blockchains will not need to be downloaded.
sebastien1234
Sr. Member
****
Offline Offline

Activity: 654
Merit: 252


PR Director@Blockchain Foundry/Co-Founder@Syscoin


View Profile WWW
May 11, 2018, 08:59:58 PM
 #2893

Syscoin/EURO trades are now available on Netherlands-based exchange litebit.eu, with many FIAT funding options for Europeans such as iDEAL, Bancontact & SEPA!

https://www.litebit.eu/en/buy/syscoin


sebastien1234
Sr. Member
****
Offline Offline

Activity: 654
Merit: 252


PR Director@Blockchain Foundry/Co-Founder@Syscoin


View Profile WWW
May 11, 2018, 09:01:07 PM
 #2894

Do we need to wait for Blockmarket 3.0 to setup the combined masternode? I would like to use my Syscoin Alias but I notice that both the BM and the QT use a different wallet.dat


Not at all, for masternode support, join us on our #masternodes channel on the Syscoin slack by following instructions at join.syscoin.org

okinawa
Sr. Member
****
Offline Offline

Activity: 574
Merit: 259


Deal Coin - P2P Lending Eco-system


View Profile
May 12, 2018, 04:21:03 AM
 #2895

if you know a better site for free monitoring of masternodes, please tell me!

if its free add SYS yourself and show us result.
why spam us www site without our coin ? Add SyS or leave.

Yeah why doesn't he add it himself, if people click on it maybe they can get a virus or something and lose all their Syscoin  Angry

new24core
Member
**
Offline Offline

Activity: 413
Merit: 17


View Profile
May 12, 2018, 07:10:16 AM
 #2896

Do we need to wait for Blockmarket 3.0 to setup the combined masternode? I would like to use my Syscoin Alias but I notice that both the BM and the QT use a different wallet.dat


Not at all, for masternode support, join us on our #masternodes channel on the Syscoin slack by following instructions at join.syscoin.org

To create a masternode is so easy as someone has written an install script so setup is a breeze!!!!!!!

The latest guide cover the hosting, wallet and creation of masternode.

The guys on the slack channel are also very helpful!
naskel
Full Member
***
Offline Offline

Activity: 280
Merit: 100


View Profile WWW
May 12, 2018, 10:27:44 AM
 #2897

N-Engine Multi Pool Server

SysCoin is added to our pool!

http://crypto.n-engine.com

- Dedicated server (European - US - ASIAN link)
- Fast! (Gigabit link on optical fiber!)
- DDoS protection
- GeoDNS balancing system
- Support 24h/7 (Mail, Troll box, Irc channel)

Payouts are made automatically every 3 hours for all balances above 0.1, or 0.01 on Sunday.

No more fee, more coin for YOU!

Happy FREE mining !

Main Pool url : http://crypto.n-engine.com

You can follow us @Twitter : https://twitter.com/NeCrypto

Support :
Discord channel: https://discord.gg/zEsE7AU
By mail: contact[a.t.]n-engine.com
On IRC : freenode > #N-Engine

Mine sha256 and Win the LOTTO! (check the rules on Discord channel)



█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
░  .:: Free Pool @ http://pool.n-engine.com ::.  ░ << *FREE* AS FREE BEER
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
hana_ruby
Newbie
*
Offline Offline

Activity: 70
Merit: 0


View Profile
May 12, 2018, 02:44:43 PM
 #2898

The presentation of this project is great, I really like the way you explain everything. I wish you all the best
alamgirbd
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
May 13, 2018, 01:08:09 PM
 #2899

It’s seldom that a little known coin takes the limelight away from the big three of Bitcoin, Ethereum, and Ripple. Even in a bearish market like this one, most attention is on the performance of the top coins.
Is there a Slack channel in the future for Syscoin? That would be awesome if we could all communicate there!
CoinEraser
Legendary
*
Offline Offline

Activity: 1988
Merit: 1767


View Profile
May 13, 2018, 04:42:46 PM
 #2900

Syscoin 3.0: A Peer-to-Peer Electronic Cash System Built For Business Applications by Jagdeep Sidhu

Source:

https://syscoin.org/Syscoin_3.0_Whitepaper__Condensed.pdf


My Syscoins are still in a Syscoin 1.0 wallet.dat file. Can I use the wallet.dat just continue if 3.0 comes out or should I send the coins to a new wallet.dat file?
Pages: « 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 [145] 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!