Pages:
Author

Topic: [ANN] Sling | Decentralized Markets | HTML5 UI | Rebasing - page 10. (Read 20666 times)

full member
Activity: 346
Merit: 100
https://bmy.guide
would it help if we raise a development Fund?

I would contribute towards a development fund if it's needed.
legendary
Activity: 1457
Merit: 1014
would it help if we raise a development Fund?
full member
Activity: 346
Merit: 100
https://bmy.guide
if that is a problem that also affect Dash i think they will also come up with a Solution, right?
Dash uses PoW for masternode payments and doesn't use PoS.  Dash's PoS are their masternode tier.  I think there are solutions to this problem without using PoW.

Perhaps it doesn't need to be overcomplicated.

Have you thought of any solutions yet CryptoVote?
full member
Activity: 229
Merit: 100
if that is a problem that also affect Dash i think they will also come up with a Solution, right?
Dash uses PoW for masternode payments and doesn't use PoS.  Dash's PoS are their masternode tier.  I think there are solutions to this problem without using PoW.
legendary
Activity: 1457
Merit: 1014
I just realized this new thread has only three pages and is populated by me, me, me and a couple other people . . .  Come on people, where's the hype, let's get active here. Sling has too much potential for the thread to be this quiet. Show yourselves  Shocked



crypto can you give an update on Development?


Well, its not good....

While working on InstantX, I have found that masternodes where not meant to run with PoS or at least with its current implementation.  The PoS block rewards are not random like PoW so masternodes can be manipulated by high stakers.  Masternode quorums, masternode payment selection, InstantX and DarkSend are not safe with the current code.  We need to find another solution and I need the communities help with this.

Since PoS creates the hash variable in the CMasterNode::CalculateScore method below, it can be manipulated to fix the masternode payment.  Malicious code can be written to pre-calculate hashes to make your masternode "score" more favorable when you mint a block with PoS.

Code:
//
// Deterministically calculate a given "score" for a masternode depending on how close it's hash is to
// the proof of work for that block. The further away they are the better, the furthest will win the election
// and get paid this block
//
uint256 CMasterNode::CalculateScore(int mod, int64_t nBlockHeight)
{
    if(pindexBest == NULL) return 0;

    uint256 hash = 0;
    uint256 aux = vin.prevout.hash + vin.prevout.n;

    if(!GetBlockHash(hash, nBlockHeight)) return 0;

    uint256 hash2 = Hash(BEGIN(hash), END(hash));
    uint256 hash3 = Hash(BEGIN(hash), END(aux));

    uint256 r = (hash3 > hash2 ? hash3 - hash2 : hash2 - hash3);

    return r;
}

This is an interview with Evan Duffield of Dash as he explains it: https://youtu.be/rNZcO2vm7Jc?t=926  (see ~15:26)

if that is a problem that also affect Dash i think they will also come up with a Solution, right?
full member
Activity: 229
Merit: 100
I just realized this new thread has only three pages and is populated by me, me, me and a couple other people . . .  Come on people, where's the hype, let's get active here. Sling has too much potential for the thread to be this quiet. Show yourselves  Shocked



crypto can you give an update on Development?


Well, its not good....

While working on InstantX, I have found that masternodes where not meant to run with PoS or at least with its current implementation.  The PoS block rewards are not random like PoW so masternodes can be manipulated by high stakers.  Masternode quorums, masternode payment selection, InstantX and DarkSend are not safe with the current code.  We need to find another solution and I need the communities help with this.

Since PoS creates the hash variable in the CMasterNode::CalculateScore method below, it can be manipulated to fix the masternode payment.  Malicious code can be written to pre-calculate hashes to make your masternode "score" more favorable when you mint a block with PoS.

Code:
//
// Deterministically calculate a given "score" for a masternode depending on how close it's hash is to
// the proof of work for that block. The further away they are the better, the furthest will win the election
// and get paid this block
//
uint256 CMasterNode::CalculateScore(int mod, int64_t nBlockHeight)
{
    if(pindexBest == NULL) return 0;

    uint256 hash = 0;
    uint256 aux = vin.prevout.hash + vin.prevout.n;

    if(!GetBlockHash(hash, nBlockHeight)) return 0;

    uint256 hash2 = Hash(BEGIN(hash), END(hash));
    uint256 hash3 = Hash(BEGIN(hash), END(aux));

    uint256 r = (hash3 > hash2 ? hash3 - hash2 : hash2 - hash3);

    return r;
}

This is an interview with Evan Duffield of Dash as he explains it: https://youtu.be/rNZcO2vm7Jc?t=926  (see ~15:26)
hero member
Activity: 736
Merit: 500
Can someone explain why you are doing cpr on sling?
What does sling have to offer that you don't find in BitBay, Blackcoin, Sys, Shadow, and bitcoin itself?

Edit: Not fudding. I really want to know. I have invested in every "market" coin that I believe has a chance to make it, and I will also do so with sling and others if there is real innovation there.
My main interest is the decentralized market and getting masternodes more involved with the network operations. In addition to DarkSend and InstantX, I want masternodes to relay encrypted shards for messaging.  Secure messaging is needed for the market so buyers and sellers can communicate without leaving the UI.  I don't think any of the other coins have secure messaging where it will work in a widely adopted production market system.  Either the delivery is not guaranteed or the messages are stored encrypted on a public block chain.  The problem with the latter is that one day the encryption will be broken and accessible to all.

Once I fix some core issues, I will start innovating with Sling by adding a decentralized rating system, a new HTML5 Market UI that connects to the node and the secure messaging using MNs.  It is not much fun right now fixing leftover issues but it is building my knowledge on how the core classes work.  Right now, I'm working on splitting CBlock into three classes (CBlockHeader and CBlockPoS) to keep up with efficiencies added by Bitcoin and Dash.  It keeps breaking PoS but I will get it to work.

I have tried to setup "masternode" multiple times with no success. I still have enough coin to do so as I'm a "bagholder" and have not sold. Still interested in setting up my wallet for masternode but got lost in the lack of instructions, when I tried months ago. I am not a programmer and I don't think the majority of the other guys here are either. If instructions have been updated that would be great, please send link. Thanks in advance, long live the sling.


Hi, if you still want to setup a MN i can help you get going.
Let me know where you are stuck, and i will guide you thru it.

IW
legendary
Activity: 1457
Merit: 1014
I just realized this new thread has only three pages and is populated by me, me, me and a couple other people . . .  Come on people, where's the hype, let's get active here. Sling has too much potential for the thread to be this quiet. Show yourselves  Shocked



crypto can you give an update on Development?
hero member
Activity: 706
Merit: 500
I just realized this new thread has only three pages and is populated by me, me, me and a couple other people . . .  Come on people, where's the hype, let's get active here. Sling has too much potential for the thread to be this quiet. Show yourselves  Shocked

hero member
Activity: 706
Merit: 500
Can someone explain why you are doing cpr on sling?
What does sling have to offer that you don't find in BitBay, Blackcoin, Sys, Shadow, and bitcoin itself?

Edit: Not fudding. I really want to know. I have invested in every "market" coin that I believe has a chance to make it, and I will also do so with sling and others if there is real innovation there.
My main interest is the decentralized market and getting masternodes more involved with the network operations. In addition to DarkSend and InstantX, I want masternodes to relay encrypted shards for messaging.  Secure messaging is needed for the market so buyers and sellers can communicate without leaving the UI.  I don't think any of the other coins have secure messaging where it will work in a widely adopted production market system.  Either the delivery is not guaranteed or the messages are stored encrypted on a public block chain.  The problem with the latter is that one day the encryption will be broken and accessible to all.

Once I fix some core issues, I will start innovating with Sling by adding a decentralized rating system, a new HTML5 Market UI that connects to the node and the secure messaging using MNs.  It is not much fun right now fixing leftover issues but it is building my knowledge on how the core classes work.  Right now, I'm working on splitting CBlock into three classes (CBlockHeader and CBlockPoS) to keep up with efficiencies added by Bitcoin and Dash.  It keeps breaking PoS but I will get it to work.

Exiting stuff. I'm glad I have been staking  Wink

Same, been staking for months on end.

Sling always seemed like a long haul sleeper of a coin.



I hate to shout out to other coins on this thread but please allow this one time . ..  

I'm hoping bitbean turns out good as well as I am also a "bagholder" of those and have been steady steaking since the launch of both coins  Cool  At this point I think sling has more potential but am still a fan of both  Cool
hero member
Activity: 706
Merit: 500
Can someone explain why you are doing cpr on sling?
What does sling have to offer that you don't find in BitBay, Blackcoin, Sys, Shadow, and bitcoin itself?

Edit: Not fudding. I really want to know. I have invested in every "market" coin that I believe has a chance to make it, and I will also do so with sling and others if there is real innovation there.
My main interest is the decentralized market and getting masternodes more involved with the network operations. In addition to DarkSend and InstantX, I want masternodes to relay encrypted shards for messaging.  Secure messaging is needed for the market so buyers and sellers can communicate without leaving the UI.  I don't think any of the other coins have secure messaging where it will work in a widely adopted production market system.  Either the delivery is not guaranteed or the messages are stored encrypted on a public block chain.  The problem with the latter is that one day the encryption will be broken and accessible to all.

Once I fix some core issues, I will start innovating with Sling by adding a decentralized rating system, a new HTML5 Market UI that connects to the node and the secure messaging using MNs.  It is not much fun right now fixing leftover issues but it is building my knowledge on how the core classes work.  Right now, I'm working on splitting CBlock into three classes (CBlockHeader and CBlockPoS) to keep up with efficiencies added by Bitcoin and Dash.  It keeps breaking PoS but I will get it to work.

I have tried to setup "masternode" multiple times with no success. I still have enough coin to do so as I'm a "bagholder" and have not sold. Still interested in setting up my wallet for masternode but got lost in the lack of instructions, when I tried months ago. I am not a programmer and I don't think the majority of the other guys here are either. If instructions have been updated that would be great, please send link. Thanks in advance, long live the sling.

full member
Activity: 346
Merit: 100
https://bmy.guide
Can someone explain why you are doing cpr on sling?
What does sling have to offer that you don't find in BitBay, Blackcoin, Sys, Shadow, and bitcoin itself?

Edit: Not fudding. I really want to know. I have invested in every "market" coin that I believe has a chance to make it, and I will also do so with sling and others if there is real innovation there.
My main interest is the decentralized market and getting masternodes more involved with the network operations. In addition to DarkSend and InstantX, I want masternodes to relay encrypted shards for messaging.  Secure messaging is needed for the market so buyers and sellers can communicate without leaving the UI.  I don't think any of the other coins have secure messaging where it will work in a widely adopted production market system.  Either the delivery is not guaranteed or the messages are stored encrypted on a public block chain.  The problem with the latter is that one day the encryption will be broken and accessible to all.

Once I fix some core issues, I will start innovating with Sling by adding a decentralized rating system, a new HTML5 Market UI that connects to the node and the secure messaging using MNs.  It is not much fun right now fixing leftover issues but it is building my knowledge on how the core classes work.  Right now, I'm working on splitting CBlock into three classes (CBlockHeader and CBlockPoS) to keep up with efficiencies added by Bitcoin and Dash.  It keeps breaking PoS but I will get it to work.

Exiting stuff. I'm glad I have been staking  Wink

Same, been staking for months on end.

Sling always seemed like a long haul sleeper of a coin.

hero member
Activity: 706
Merit: 500
Can someone explain why you are doing cpr on sling?
What does sling have to offer that you don't find in BitBay, Blackcoin, Sys, Shadow, and bitcoin itself?

Edit: Not fudding. I really want to know. I have invested in every "market" coin that I believe has a chance to make it, and I will also do so with sling and others if there is real innovation there.
My main interest is the decentralized market and getting masternodes more involved with the network operations. In addition to DarkSend and InstantX, I want masternodes to relay encrypted shards for messaging.  Secure messaging is needed for the market so buyers and sellers can communicate without leaving the UI.  I don't think any of the other coins have secure messaging where it will work in a widely adopted production market system.  Either the delivery is not guaranteed or the messages are stored encrypted on a public block chain.  The problem with the latter is that one day the encryption will be broken and accessible to all.

Once I fix some core issues, I will start innovating with Sling by adding a decentralized rating system, a new HTML5 Market UI that connects to the node and the secure messaging using MNs.  It is not much fun right now fixing leftover issues but it is building my knowledge on how the core classes work.  Right now, I'm working on splitting CBlock into three classes (CBlockHeader and CBlockPoS) to keep up with efficiencies added by Bitcoin and Dash.  It keeps breaking PoS but I will get it to work.

Exiting stuff. I'm glad I have been staking  Wink
hero member
Activity: 706
Merit: 500

adding a "anti-spam" fee per Listing would solve the Problem instantly.

If "anti-spam" fee per listing is not too difficult to implement and it will combat spam (pointless listings that clutter the market interface) it sounds like it's worth integrating; esp if the aim is to get sling market up to production grade quality.

I like the fee idea. Sucks the marketplace is full of gay sex toys and shit.
full member
Activity: 346
Merit: 100
https://bmy.guide

adding a "anti-spam" fee per Listing would solve the Problem instantly.

If "anti-spam" fee per listing is not too difficult to implement and it will combat spam (pointless listings that clutter the market interface) it sounds like it's worth integrating; esp if the aim is to get sling market up to production grade quality.
legendary
Activity: 1457
Merit: 1014
Can someone remove all the crap in the marketplace? 

Steady staking . . . 

You can't remove a listing from a decentralized market network but I can add a button to delete a listing locally.  Is that what you are asking for?

adding a "anti-spam" fee per Listing would solve the Problem instantly. it could also be nice to add standard fee for 14 Days Listing and extended Fee for let's say 30 Day Listing.
full member
Activity: 229
Merit: 100
Can someone remove all the crap in the marketplace? 

Steady staking . . . 

You can't remove a listing from a decentralized market network but I can add a button to delete a listing locally.  Is that what you are asking for?
hero member
Activity: 706
Merit: 500
Can someone remove all the crap in the marketplace? 

Steady staking . . . 
legendary
Activity: 1457
Merit: 1014
Guys i really appreciate your hard work! i just saw on Bittrex that the Delisting Warning is there again, if someone want to buy or sell a bit there that would help Smiley
The 7 Day Volume has to be increased until the 4 Dec. up to 1.4 BTC. (currently 0.1BTC)
full member
Activity: 168
Merit: 100
I have added today an Automatic Bootstrap Creator.
U can download a hourly generated bootstrap here:

Link: Bootstraps

Usage:
- Close ur Wallet and wait until its also closed in ur taskmanager
- Download the bootstrap-latest.7z
- UnZip it with 7z or WinRAR (or ur prefered tool)
- Place the bootstrap.dat file in ur Data Folder
- Start ur Wallet and wait until the import is done
- When the import is done the boostrap.dat file is renamed to bootstrap.old and u can delete it
Pages:
Jump to: