Bitcoin Forum
May 30, 2024, 01:12:26 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: Slimcoin | First Proof of Burn currency | Decentralized Web  (Read 136758 times)
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 03, 2020, 09:22:14 PM
 #2901

The developer has reached the first step we've agreed with him upon and released the document in which he is analyzing SLM code. Please let me know what do you think.
One other thing that might be useful, pre-computed EXT/bip32 keys for Slimcoin - as committed to Ian Coleman's BIP39 repos: https://github.com/iancoleman/bip39/blob/863eee8ed754e4aebd5059b712deb4fca8709c27/src/js/bitcoinjs-extensions.js#L153

Cheers

Graham


Thank you!

johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 04, 2020, 12:03:02 PM
 #2902

Do we have any testnet node available or running at the moment?
The developer asked me to create at least 4 nodes for the testnet for its work. I have some node available, but before I distract all the 4 from the main net I'm asking, just in case.

d5000
Legendary
*
Offline Offline

Activity: 3934
Merit: 6396


Decentralization Maximalist


View Profile
September 04, 2020, 01:10:29 PM
 #2903

Do we have any testnet node available or running at the moment?
The developer asked me to create at least 4 nodes for the testnet for its work. I have some node available, but before I distract all the 4 from the main net I'm asking, just in case.
My testnet node was not running in the last days. It is running the "hardcap" version so it would in its current state be not useful for testing the update (I think the hard cap should be implemented later so its testing does not interfere with the PPC 0.10 upgrade, and it would be much more convenient after the upgrade as PPC 0.10 should have a proper soft fork mechanism).

I can activate the "Standard" 0.6 SLM client on the testnet node after September 10/11 (because of a scheduled maintenance of my VPS), or wait until the first alpha of the PPC-0.10-based version is out.

To standardize terminology (I have planned to update this thread to include info about the SLM upgrade, and also change the thread title): Should we call the new version Slimcoin 0.7? (This would be the logical step, as the last one was 0.6) Or would it make sense to directly call it Slimcoin 1.0 to emphasize the code changes? (This would however be a pretty bold move as we would show the world that 1.0 is the first mature, "really stable" version) Both variants have their pros and cons, so I would like to hear the opinion of @everyone Wink (I'm slightly leaning to simply follow our current numbering scheme and call it 0.7).

Ah, and I think to use a later release candidate of PPC 0.10 as a base, like you suggested is a good idea, at least in the case in some weeks we still don't see a release on the horizon. PPC has a paid full time developer, and in the past he released RCs very frequently.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 04, 2020, 01:27:59 PM
 #2904

Do we have any testnet node available or running at the moment?
The developer asked me to create at least 4 nodes for the testnet for its work. I have some node available, but before I distract all the 4 from the main net I'm asking, just in case.
That's a bit ... unusual. IME, such a network is trivial to set up on single m/c, all that's required is that each node has its own datadir and is configured with a different port number (with port= and rpcport=).

I approach this by having (say) 4 different datadir directories (typically datadir-a, datadir-b and so on) each with its own slimcoin.conf setting the ports  (typically to, 60000/60001, 60002/60003, and so on) cross-connected (with port=60000,connect=128.0.0.1:60002 and port=60002,connect=128.0.0.1:60000 and so on) and run the clients with -datadir=`pwd`/datadir-a,  -datadir=`pwd`/datadir-b, etc. I find this arrangement very handy for experimentation as I can trivially start/stop the clients and clear out the datadirs after each experiment with a couple of simple bash commands.

For anyone who may be interested in running their own local Slimcoin testnet network, create the four datadir-? dirctories and add a slimcoin.conf to each:

basic slimcoin.conf:
Code:
testnet=1
reservebalance=0.00
debug=1
listen=1
server=1
txindex=1
fastindex=1
genproclimit=2
gen=0
printcreation=0
printstakemodifier=0
printselectcoin=0
rpcuser=slimcoinrpcuser
rpcpassword=slimcoinrpcuser
rpcallowip=127.0.0.1
maxconnections=3
upnp=0

added to the basic slimcoin.conf for datadir-a:
Code:
port=60000
rpcport=60001
connect=128.0.0.1:60002
connect=128.0.0.1:60004
connect=128.0.0.1:60006

added to the basic slimcoin.conf for datadir-b:
Code:
port=60002
rpcport=60003
connect=128.0.0.1:60000
connect=128.0.0.1:60004
connect=128.0.0.1:60006

added to the basic slimcoin.conf for datadir-c:
Code:
port=60004
rpcport=60005
connect=128.0.0.1:60000
connect=128.0.0.1:60002
connect=128.0.0.1:60006

added to the basic slimcoin.conf for datadir-d:
Code:
port=60006
rpcport=60007
connect=128.0.0.1:60000
connect=128.0.0.1:60002
connect=128.0.0.1:60004

Then just start 4 clients, the first with -datadir=`pwd`/datadir-a, the second with -datadir=`pwd`/datadir-b and so on, and you've got yourself a neat little local testnet chain to play with.

Just sayin'

Cheers

Graham
gavrilo77
Hero Member
*****
Offline Offline

Activity: 819
Merit: 502



View Profile
September 04, 2020, 02:44:55 PM
 #2905

Same way i am doing with .bat

slimcoin-qt.exe -datadir=Data

Data is folder with wallet and blockchain

AS many time just different rpcport
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 04, 2020, 04:00:05 PM
 #2906

Then just start 4 clients, the first with -datadir=`pwd`/datadir-a, the second with -datadir=`pwd`/datadir-b and so on, and you've got yourself a neat little local testnet chain to play with.

Maybe you have a VPS with 4 GB of Ram, or are you speaking about your local computer?
Because slimcoind is using almost all the RAM on my 1GB Ram VPSs.

gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 04, 2020, 05:11:22 PM
 #2907

Maybe you have a VPS with 4 GB of Ram, or are you speaking about your local computer?
Hint:
a neat little local testnet chain to play with.

Because slimcoind is using almost all the RAM on my 1GB Ram VPSs.
On testnet? Something horribly wrong there. But be that as it may, in general a 1Gb VPS is too under-powered for altcoin development.

Cheers

Graham
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 04, 2020, 05:44:09 PM
Last edit: September 04, 2020, 06:14:05 PM by johnwhitestar
 #2908

Maybe you have a VPS with 4 GB of Ram, or are you speaking about your local computer?
Hint:
a neat little local testnet chain to play with.
In my understanding you can do the same thing on a VPS, and from the point of view of that VPS it will be still a local testchain, or?

gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 04, 2020, 06:47:03 PM
 #2909

In my understanding you can do the same thing on a VPS, and from the point of view of that VPS it will be still a local testchain, or?
Local to the VPS, yes - that's entailed in the connect=127.0.0.1:<port> configuration statements.

Cheers

Graham
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 04, 2020, 07:24:45 PM
 #2910

In my understanding you can do the same thing on a VPS, and from the point of view of that VPS it will be still a local testchain, or?
Local to the VPS, yes - that's entailed in the connect=127.0.0.1:<port> configuration statements.

Cheers

Graham


I've got it, thanks.

johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 05, 2020, 12:34:26 PM
 #2911

Should we call the new version Slimcoin 0.7? (This would be the logical step, as the last one was 0.6) Or would it make sense to directly call it Slimcoin 1.0 to emphasize the code changes? (This would however be a pretty bold move as we would show the world that 1.0 is the first mature, "really stable" version) Both variants have their pros and cons, so I would like to hear the opinion of @everyone Wink (I'm slightly leaning to simply follow our current numbering scheme and call it 0.7).

I like the idea of v 1.0, but as you said following the current numbering is a bit more preferable.

Of course for SLM the upgrade we will possibly release is a great step ahead, but from the point of view of the general cryptoworld development we are just trying to catch the train that was about to leave. So more sober numbering is preferable, it will let understand to the more attentive people that we know where we are right now.

We can reserve 1.0 to the possible improvement of the PoB algorithm, for instance.  

gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 05, 2020, 01:33:56 PM
 #2912

Do we have any testnet node available or running at the moment?

144.76.118.44

Cheers

Graham
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 05, 2020, 03:20:17 PM
 #2913

Do we have any testnet node available or running at the moment?

144.76.118.44

Cheers

Graham

Thank you very much again!

For the moment the developer has taken into consideration your suggestion about the local testnet, should he need more resources I'll let include your node into our "package"  Smiley

Tomohisa
Full Member
***
Offline Offline

Activity: 360
Merit: 100


View Profile
September 05, 2020, 03:24:27 PM
 #2914

Because slimcoind is using almost all the RAM on my 1GB Ram VPSs.
On testnet? Something horribly wrong there. But be that as it may, in general a 1Gb VPS is too under-powered for altcoin development.

Cheers

Graham

I have a question: how many testnet clients you are able to fit in a single VPS with 2GB? Does the resource need to run a testnet client is more power-hungry than when you just running it as a simple node so 1GB RAM VPS is unstable to do it? As johnwhitestar said about his VPS with 1GB RAM is almost full...
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 05, 2020, 04:20:24 PM
 #2915

I have a question: how many testnet clients you are able to fit in a single VPS with 2GB? Does the resource need to run a testnet client is more power-hungry than when you just running it as a simple node.
Dunno for sure, don't have a 2Gb VPS to check it on, most of the RAM usage will be the db index which at 2.1 million blocks is probably a bit heavy, staking large bags is also compute-intensive and probably demands RAM to suit. Testnet otoh has 0 blocks (there isn't a legacy testnet chain to preserve atm) so will consume far fewer resources. I'll make a guess at two nodes at least, maybe the full four.

Cheers

Graham
0verseer
Full Member
***
Offline Offline

Activity: 480
Merit: 106


View Profile
September 06, 2020, 04:20:04 PM
Last edit: September 06, 2020, 06:13:51 PM by 0verseer
Merited by johnwhitestar (1)
 #2916

Some tard try to fake the Slimcoin ANN thread and inject a download link with malware. As I posted this, his thread is still up.

Fake ANN thread link: https://bitcointalk.org/index.php?topic=5273887.0
His pathetic github in the link: https://github.com/Slim-coin/qt

edited: Thank god, it got deleted.
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 06, 2020, 04:35:42 PM
Last edit: September 06, 2020, 07:46:22 PM by johnwhitestar
 #2917

Some tard try to fake the Slimcoin ANN thread and inject a download link with malware. As I posted this, his thread is still up.

Fake ANN thread link: https://bitcointalk.org/index.php?topic=5273887.0
His pathetic github in the link: https://github.com/Slim-coin/qt
Thank you for the info, reported to moderators.


edited: Thank god, it got deleted.
Yep  Smiley

gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
September 06, 2020, 09:53:38 PM
 #2918

Because I suspect that folks believe that sticking, syncing wallets are a Slimcoin-only problem, it's not, it's in Slimcoin's Peercoin heritage. This from the peercoin forum back on April 15th this year in response to someone reporting a wallet sticking while syncing:

Quote
Make sure you don't unlock your wallet for minting until it has finished syncing. If that doesn't work, make sure you still have the wallet backup and delete the whole folder, open the client fresh and wait for it to sync from scratch, then replace the wallet.dat file and open with the -rescan tag.

And that's a Peercoin 0.8 Core 0.16 wallet that's sticking while syncing because of premature staking.

I came across the post when confirming that the upgrade from Peercoin 0.7 to 0.8 was a hard fork (0.8 Peercoin hardfork task list), something that I think might be a bit of an organisation problem for Slimcoin, given the relatively large number of active addresses of uncontactable SLM hodlers.

Cheers

Graham
johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 08, 2020, 01:55:33 PM
Last edit: September 09, 2020, 11:21:12 PM by johnwhitestar
 #2919

All my seeding nodes are stuck at block 2197245, since yesterday. What is the most efficient way to get them on the track?

Edit: seems like I'm on the wrong blockchain, I'm seeing the following message about the last block
Code:
ERROR: CheckProofOfBurn() : INFO: prev block not in main chain

Downloading the blockchain requires weeks on my VPSs  - wouldn't really like to do it again.


Edit: solved by deleting .slimcoin folder on all my VPSs and copying a .slimcoin folder from another server that had a relatively recent blockchain version.

Seems like if the server is being shut down suddenly the last block remains corrupted and the synchronizing stops. It's just a guess, of course.  

johnwhitestar
Sr. Member
****
Offline Offline

Activity: 697
Merit: 262


Slimcoin - the Proof of Donation inventors!


View Profile
September 23, 2020, 10:20:26 PM
Last edit: September 24, 2020, 09:58:46 AM by johnwhitestar
 #2920

From here seems like Slimcoin has been listed on hoo.com, SLM/USDT pair, but if I go to the site I'm not seeing SLM there.

Pages: « 1 ... 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 »
  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!