Pages:
Author

Topic: 💥SOLARIS XLR💥100% PoS + Masternodes ⚡Zerocoin⚡txbit.io in development - page 29. (Read 308871 times)

member
Activity: 205
Merit: 42
Txbit.io Exchange
Where do we stand in our exchange testing and what`s the next step for it?
More constant updated would be great, from the devs..

It's best to follow the txbit twitter for such updates: https://twitter.com/txbit_io


You can also read the latest updates in regards on the exchange on the txbit medium. Here are the latest two articles:

https://medium.com/@txbit/txbit-io-update-beta-v1-review-launch-update-and-more-2cdc143e51a7

https://medium.com/@txbit/txbit-io-dev-update-december-21st-2019-d9ee6f25a7
sr. member
Activity: 1246
Merit: 274
Where do we stand in our exchange testing and what`s the next step for it?
More constant updated would be great, from the devs..

I believe the exchange is supposed to launch in January, so right around the corner.

sr. member
Activity: 728
Merit: 251
Where do we stand in our exchange testing and what`s the next step for it?
More constant updated would be great, from the devs..
copper member
Activity: 1024
Merit: 513
txbit.io - cryptocurrency exchange
Hi everyone. I could do with some help please. Here goes.

I downloaded the QT wallet and encrypted it. I have since forgotten my encryption code but this doesn't bother me simply because I have only 1 xlr inside my wallet.

What I'm trying to do now is to reset the wallet but reinstalling the wallet does not do anything. Is there any way I can do to reset the wallet and set a new encryption code?

There is a file on your computer named wallet.dat. By default its located in your profile. For windows %AppData%/Solaris or on Linux ~/.solaris

Rename the wallet.dat file to something else. Just add a underscore to the filename and it is renamed. Next start your wallet and see the fresh wallet with new adresses.
newbie
Activity: 3
Merit: 0
Hi everyone. I could do with some help please. Here goes.

I downloaded the QT wallet and encrypted it. I have since forgotten my encryption code but this doesn't bother me simply because I have only 1 xlr inside my wallet.

What I'm trying to do now is to reset the wallet but reinstalling the wallet does not do anything. Is there any way I can do to reset the wallet and set a new encryption code?
copper member
Activity: 43
Merit: 1
NodeHost.Online Hosting Service Added!

We are happy to announce that XLR is listed on the NodeHost Platform! You can now easily and securely deploy your masternodes without any wallet downloads required. The NodeHost Platform is taking masternodes to the mainstream by offering a user-friendly deployment process. Nodehost offers fully automated masternode hosting as well as trustless masternode server deployment. Check out the platform at NodeHost.Online.

sr. member
Activity: 728
Merit: 251
Any progress we are having about exchange implementation and mass adoption?
When should we expect it?
member
Activity: 238
Merit: 10
Hello guys!

I have some problems building the new version 2.8.1 on Ubuntu 18.04

libzerocoin/bignum.h: In function ‘const CBigNum operator-(const CBigNum&)’:
libzerocoin/bignum.h:734:43: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
     BN_set_negative(&r, !BN_is_negative(&r));

Could you help me?

Hi Attractor,

You need to downgrade your version of OpenSSL. By default, you (Ubuntu 18.04) have OpenSSL version 1.1 installed. You can verify this with the shell command:
Code:
openssl version
which should return:
Code:
OpenSSL 1.1.0g 2 Nov 2017

OpenSSL v1.1 has had some major structural changes. It is no "fault" per se of Solaris, but it does not yet compile against those structural changes. Basically, the construction and initialization of 'BigNum' changed from prior versions of OpenSSL to v1.1. Hence you will have success once you get OpenSSL v1.0 installed as those structural changes are not yet needed.

I am away from a test system to verify, but if memory serves, to install OpenSSL version 1.0:
Code:
sudo apt-get install libssl1.0-dev

Once you get OpenSSL v1.0 installed, you will have success building your Solaris client.

I hope this info is found helpful. Best of luck!

It helped!
Thank you so much!
member
Activity: 97
Merit: 12
keesdewit, as usual, has been very helpful members of Solaris community.
Thank you for keep helping others to solve their technical issues.
< ... >

I like the new website of Solaris, too.
The new look Solaris website looks great! I really like the new colour scheme with the blue and yellow. This bear market won't stop good long term projects like Solaris and this is why I will continue to hold long term as I believe the market will recover in the near future and once txbit is fully launched we could see the Solaris price start to move up.
copper member
Activity: 1024
Merit: 513
txbit.io - cryptocurrency exchange
Hello guys!

I have some problems building the new version 2.8.1 on Ubuntu 18.04

libzerocoin/bignum.h: In function ‘const CBigNum operator-(const CBigNum&)’:
libzerocoin/bignum.h:734:43: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
     BN_set_negative(&r, !BN_is_negative(&r));

Could you help me?

Just configure your compiler to use the included/ recommended dependencies. It is explained here: https://github.com/Solaris-Project/Solaris/blob/master/depends/README.md

Or, as alternative use the precompiled wallet which should work on Ubuntu 18 and can be found here: https://github.com/Solaris-Project/Solaris/releases/download/v2.8.1.0/solaris-daemon-2.8.1.0-linux64.tar.gz
hero member
Activity: 1862
Merit: 590
The new look Solaris website looks great! I really like the new colour scheme with the blue and yellow. This bear market won't stop good long term projects like Solaris and this is why I will continue to hold long term as I believe the market will recover in the near future and once txbit is fully launched we could see the Solaris price start to move up.
legendary
Activity: 1076
Merit: 1006
Canary in the crypto mine!
Hello guys!

I have some problems building the new version 2.8.1 on Ubuntu 18.04

libzerocoin/bignum.h: In function ‘const CBigNum operator-(const CBigNum&)’:
libzerocoin/bignum.h:734:43: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
     BN_set_negative(&r, !BN_is_negative(&r));

Could you help me?

Hi Attractor,

You need to downgrade your version of OpenSSL. By default, you (Ubuntu 18.04) have OpenSSL version 1.1 installed. You can verify this with the shell command:
Code:
openssl version
which should return:
Code:
OpenSSL 1.1.0g 2 Nov 2017

OpenSSL v1.1 has had some major structural changes. It is no "fault" per se of Solaris, but it does not yet compile against those structural changes. Basically, the construction and initialization of 'BigNum' changed from prior versions of OpenSSL to v1.1. Hence you will have success once you get OpenSSL v1.0 installed as those structural changes are not yet needed.

I am away from a test system to verify, but if memory serves, to install OpenSSL version 1.0:
Code:
sudo apt-get install libssl1.0-dev

Once you get OpenSSL v1.0 installed, you will have success building your Solaris client.

I hope this info is found helpful. Best of luck!
member
Activity: 238
Merit: 10
Hello guys!

I have some problems building the new version 2.8.1 on Ubuntu 18.04

libzerocoin/bignum.h: In function ‘const CBigNum operator-(const CBigNum&)’:
libzerocoin/bignum.h:734:43: error: cannot convert ‘CBigNum*’ to ‘const BIGNUM* {aka const bignum_st*}’ for argument ‘1’ to ‘int BN_is_negative(const BIGNUM*)’
     BN_set_negative(&r, !BN_is_negative(&r));

Could you help me?
sr. member
Activity: 687
Merit: 291

Surprise! We just updated the solariscoin.com website!





   

That’s right! Solaris team never stops, bear market or not. We are glad to release our updated website to the public, and we hope everyone finds the new and updated information helpful.


We will keep updating the website and adding new functionality in the coming weeks and months, so stay tuned for more updates from us soon!



Thank you for supporting Solaris !






jr. member
Activity: 32
Merit: 4
Hi,

Wonder if anyone has seen this or knows of the solution: My desktop wallet is frozen at block 552349.  I've restarted, reindexed over and over, and every time it gets stuck synchronizing at about two weeks ago.

Edit: figured out the issue
newbie
Activity: 39
Merit: 0
I registered on beta.txbit.io and set my Solaris Core QT Linux wallet to testnet

here's my Test address if anyone wants to test:

AEdmQAKBGwJ2uBs642tLn34AZb7HQ4rCdE

$XLR/Testnet
sr. member
Activity: 687
Merit: 291



We are happy to announce that @SolarisCoin is live on Delta Direct! All the latest XLR updates will now be directly available on @get_delta !
Make sure to enable notifications for our Direct updates so you never miss out.



Thank you for supporting Solaris !

full member
Activity: 420
Merit: 101
Hello!
I really like that most of the winners of the community vote coins are in my portfolio)
I could predict I will earn money on the close following of this coin as the major update is going to come soon.
When is moon for XLR? I mean when the launch of the full release version is planned?
In December, there will be 2 beta version and there will be available full trades.

Hi! Could You make some specifications on the dates of those 2 launches?
Together with the launch of Bakkt exchange, Solaris could make a great rally on the crypto market.
member
Activity: 205
Merit: 42
Txbit.io Exchange
It's hard to say but txbit.io has been in the air, and will be officially launched for traders soon.
In contrast, the price fell hard to below 30 k satoshi.
how about your feelings, Solaris holders?
Honestly, I feel dissapointed a bit.

What kind of fudder are you? Price fell below 30k... where? It's holding above 30k.

Txbit.io is just in beta testing phase at the moment.
full member
Activity: 364
Merit: 100






Greetings Solaris Community,




Txbit beta v1 is now open to everyone!

Register at http://beta.txbit.io  now!


Read https://beta.txbit.io/News/Item/4  to get started and get Testnet coins to trade. Please do not send real coins to the generated address on txbit ! Use the Testnet faucets to deposit balances for trading.


















We want to hear your feedback!





Thank you for supporting Solaris !







Thanks for your hard work!
Pages:
Jump to: