Pages:
Author

Topic: [ANN] DERO: DAG + Cryptonote + Bulletproofs + SSL + POW + Smart Contracts - page 27. (Read 123190 times)

jr. member
Activity: 148
Merit: 2
Hello @Serena,
My first reply to you since you left.
I believe you have contributed lots of efforts and time for the DERO Community. Thanks for that.
For me you are still the same kind and sweet person. Pls don't allow this incident to affect you any way.
Let the good and positive in you be more powerful. I have seen and handle lots of such in life, thanks to the teacher called Experience.
You will always have my good wishes. Feel free for anything else.

Thanks.

Regards.

I hope you change your mind about the community. My experience here taught me many lessons, and some particularly harsh ones about trust.

a few things I've noticed

Topoheight DIFFERENCE - Sample #1 additional data Height: 249380 -VS- Topoheight: 322904 ----- with the original blocks removed we get --- Height: 153,830 -VS- Topoheight: 227,354 for a block emission rate of 147.79561854% topoheight -VS- blockheight. This means DERO is generating 47.79561854% side blocks but Capt stated they expect 10% to 15% side blocks.

(1) A cursory glance suggests that Dero is putting out around 32% - 37% -or- 3.186x to 4.779x more side blocks than expected while simultaneously maintaining a lower emission rate than Monero had at this time (18,620.62 Monero mined on day 225). Math - 47% actual vs 10% - 15% as Capt stated (47.79561854 / 15 = 3.18637456933) and 47% actual vs 10% (47.79561854 / 10 = 4.779561854)

(2) If we were to remove the side blocks we would have (using current numbers that do smoothly lower) 1.532 DERO every 12 seconds for
1.532 (Dero per block) x 5 (blocks per minute) x 60 (minutes per hour) x 24 (hours per day) = 11030.4 DERO per day (7200 blocks per day) without the side blocks on day 225.

(3) If we add the side blocks back in with an emission rate of 1 DERO per block (1.02 actual ATM) at a rate of 47.79561854% additional blocks on top of the 7200 per day for 3441.2843088 extra DERO per day bringing us to a total of (approximately) ~14471.6843088 DERO on day 225 (18,620.62 Monero mined on day 225)

These appear to be the same minus the language differences
DERO emission: https://github.com/deroproject/derosuite/blob/master/emission/emission.go

Code:
target := config.COIN_DIFFICULTY_TARGET
target_minutes := target / 60
emission_speed_factor := config.COIN_EMISSION_SPEED_FACTOR - (target_minutes - 1)

Monero emission: https://github.com/monero-project/monero/blob/3ad4ecd4ff52f011ee94e0e80754b965b82f072b/src/cryptonote_basic/cryptonote_basic_impl.cpp

Code:
const int target = version < 2 ? DIFFICULTY_TARGET_V1 : DIFFICULTY_TARGET_V2;
    const int target_minutes = target / 60;
    const int emission_speed_factor = EMISSION_SPEED_FACTOR_PER_MINUTE - (target_minutes-1);


Dero config: https://github.com/deroproject/derosuite/blob/9687ad9cb479bf564c7900b948150200fdd5a301/config/config.go
Code:
var COIN_EMISSION_SPEED_FACTOR = uint64(20)
var COIN_DIFFICULTY_TARGET = uint64(120)

Monero config: https://github.com/monero-project/monero/blob/3ad4ecd4ff52f011ee94e0e80754b965b82f072b/src/cryptonote_config.h
Code:
EMISSION_SPEED_FACTOR_PER_MINUTE                (20)
DIFFICULTY_TARGET_V2                            120  // seconds
DIFFICULTY_TARGET_V1                            60  // seconds

-

So can you at least tell me where the 3.07 blocks came from if the configs were the same and the port appears to be successful with the most basic parameters in place?

Edit: I made a new account to post this btw since I'm not around my bitcointalk passphrase for --Serena--

Edit 2: I'm aware the parameters etc will be different for Atlantis, but I guess I'm wondering why it's still not close to the proper emission curve? I'd dig for what was causing the 3.07 blocks since it's not the basic config, but there's of course no point now. So I'll just leave it at - why is the emission curve still broken?

(Honest question)

Are you talking taking into consideration that side blocks split the reward for that height?
newbie
Activity: 2
Merit: 0
Hello @Serena,
My first reply to you since you left.
I believe you have contributed lots of efforts and time for the DERO Community. Thanks for that.
For me you are still the same kind and sweet person. Pls don't allow this incident to affect you any way.
Let the good and positive in you be more powerful. I have seen and handle lots of such in life, thanks to the teacher called Experience.
You will always have my good wishes. Feel free for anything else.

Thanks.

Regards.

I hope you change your mind about the community. My experience here taught me many lessons, and some particularly harsh ones about trust.

a few things I've noticed

Topoheight DIFFERENCE - Sample #1 additional data Height: 249380 -VS- Topoheight: 322904 ----- with the original blocks removed we get --- Height: 153,830 -VS- Topoheight: 227,354 for a block emission rate of 147.79561854% topoheight -VS- blockheight. This means DERO is generating 47.79561854% side blocks but Capt stated they expect 10% to 15% side blocks.

(1) A cursory glance suggests that Dero is putting out around 32% - 37% -or- 3.186x to 4.779x more side blocks than expected while simultaneously maintaining a lower emission rate than Monero had at this time (18,620.62 Monero mined on day 225). Math - 47% actual vs 10% - 15% as Capt stated (47.79561854 / 15 = 3.18637456933) and 47% actual vs 10% (47.79561854 / 10 = 4.779561854)

(2) If we were to remove the side blocks we would have (using current numbers that do smoothly lower) 1.532 DERO every 12 seconds for
1.532 (Dero per block) x 5 (blocks per minute) x 60 (minutes per hour) x 24 (hours per day) = 11030.4 DERO per day (7200 blocks per day) without the side blocks on day 225.

(3) If we add the side blocks back in with an emission rate of 1 DERO per block (1.02 actual ATM) at a rate of 47.79561854% additional blocks on top of the 7200 per day for 3441.2843088 extra DERO per day bringing us to a total of (approximately) ~14471.6843088 DERO on day 225 (18,620.62 Monero mined on day 225)

These appear to be the same minus the language differences
DERO emission: https://github.com/deroproject/derosuite/blob/master/emission/emission.go

Code:
target := config.COIN_DIFFICULTY_TARGET
target_minutes := target / 60
emission_speed_factor := config.COIN_EMISSION_SPEED_FACTOR - (target_minutes - 1)

Monero emission: https://github.com/monero-project/monero/blob/3ad4ecd4ff52f011ee94e0e80754b965b82f072b/src/cryptonote_basic/cryptonote_basic_impl.cpp

Code:
const int target = version < 2 ? DIFFICULTY_TARGET_V1 : DIFFICULTY_TARGET_V2;
    const int target_minutes = target / 60;
    const int emission_speed_factor = EMISSION_SPEED_FACTOR_PER_MINUTE - (target_minutes-1);


Dero config: https://github.com/deroproject/derosuite/blob/9687ad9cb479bf564c7900b948150200fdd5a301/config/config.go
Code:
var COIN_EMISSION_SPEED_FACTOR = uint64(20)
var COIN_DIFFICULTY_TARGET = uint64(120)

Monero config: https://github.com/monero-project/monero/blob/3ad4ecd4ff52f011ee94e0e80754b965b82f072b/src/cryptonote_config.h
Code:
EMISSION_SPEED_FACTOR_PER_MINUTE                (20)
DIFFICULTY_TARGET_V2                            120  // seconds
DIFFICULTY_TARGET_V1                            60  // seconds

-

So can you at least tell me where the 3.07 blocks came from if the configs were the same and the port appears to be successful with the most basic parameters in place?

Edit: I made a new account to post this btw since I'm not around my bitcointalk passphrase for --Serena--

Edit 2: I'm aware the parameters etc will be different for Atlantis, but I guess I'm wondering why it's still not close to the proper emission curve? I'd dig for what was causing the 3.07 blocks since it's not the basic config, but there's of course no point now. So I'll just leave it at - why is the emission curve still broken?
jr. member
Activity: 148
Merit: 2
Dear Dero Community,

The time is here for release of the Dero code to external developers. In honor of our commitment to transparency, communications between @Captain and the external developers will be taking place on the #ext-developers Discord channel ongoing. Please feel free to visit any time.

Regards,
kryptoid

Discord Invite : https://discord.gg/GmDgjkD
member
Activity: 308
Merit: 33
Hello @Serena,
My first reply to you since you left.
I believe you have contributed lots of efforts and time for the DERO Community. Thanks for that.
For me you are still the same kind and sweet person. Pls don't allow this incident to affect you any way.
Let the good and positive in you be more powerful. I have seen and handle lots of such in life, thanks to the teacher called Experience.
You will always have my good wishes. Feel free for anything else.

Thanks.

Regards.
jr. member
Activity: 40
Merit: 1
Someone just post the viewkey in slack and discord as a proof that prmine is untact when he is a community manager,
now he take the same viewkey as a proof that premine is spent, what the fuck.
newbie
Activity: 104
Merit: 0
If you count all the transactions received up until block height 72, it perfectly matches the balance available in the screenshot posted July 3rd.

https://i.imgur.com/7XSLwgB.png

It's also likely that Cap sent himself a flat 2,000,200 coins instead of the entire wallet balance.

Here are the likely inputs:

2000000+31.369672915858+31.369613082955+31.369553250166+31.369493417492+31.369433584932+31.369373752485+18.734686079847

What you're left with (after fee?) is approximately the 6.83996 change


There doesn't appear to be any conspiracy here, Sorry Mojo

"Numbers appear to add up" is not a good response, private keys and Tx_Keys only

Please, answer me one thing, and be honest. You and Serena knew ALL THE TIME about all the premine issues, like not being locked, or being in just one wallet, right? Even when I asked you in private about it and told you my concerns regarding this matter, you promptly answered and gave some excuse, and assured that everything was all right. I knew it was impossible to check for sure without the spend key, because that's how CN protocol works.
Anyway... so, why do you and Serena suddenly turned against all the project? What do you two won pretending that everything was fine (not only the premine, but all the other issues) all the time? Were you two trying to gain some time lying to the community while intending to dump all your Dero amounts? I remember clearly you two speaking good things about the project in the last days (maybe even in the last hours) before the medium post, even Serena speaking in french about how the devs are good and brilliant, and how the tech is real... and now, just a lot of FUD. I asked Serena here about her behavior regarding this matter, but she not answered. Will you? Maybe you two were just worried to get rid of your bags while kept lying to the supporters after all, just trying to get out without getting hurt in the proccess, and after that, screw up what remained of the community, right? If not, maybe you two tried to lower the price to buy again, in larger quantities at a lower price, don't?
If not, so tell... what are you two winning into this all? Why that sudden change in the behavior of you two?
You two certainly are not saints in all this mess... if not the opposite.
jr. member
Activity: 87
Merit: 2

We are not out to take down the community..






aand again caught lying. you don't care about any "truth" but your own version of it. you have a personal vendetta for whatever internal reason that hurt your feelings so much. it's obvious to everyone. EVERYONE. so stop pretending like you're doing any of this for the benefit of anyone other than your own petty malice

you two truly are the lowest of the low pieces of shit in the cryptospace. you should consider resurrecting BitConnect, as that would be a fitting project for such

sincerely, fuck you

Seriously you can do better than that... At least next time don't make it look like I'm saying "I'm stupid", if you are stupid, please don't assume everyone is


And as usual, since this is a new page:

https://medium.com/@mojo_lb/to-whom-captain-deros-lead-developer-feels-it-does-not-concern-6df0a9ca692a

newbie
Activity: 4
Merit: 0

We are not out to take down the community..



aand again caught lying. you don't care about any "truth" but your own version of it. you have a personal vendetta for whatever internal reason that hurt your feelings so much. it's obvious to everyone. EVERYONE. so stop pretending like you're doing any of this for the benefit of anyone other than your own petty malice

you two truly are the lowest of the low pieces of shit in the cryptospace. you should consider resurrecting BitConnect, as that would be a fitting project for such

sincerely, fuck you
newbie
Activity: 7
Merit: 0
If you count all the transactions received up until block height 72, it perfectly matches the balance available in the screenshot posted July 3rd.

https://i.imgur.com/7XSLwgB.png

It's also likely that Cap sent himself a flat 2,000,200 coins instead of the entire wallet balance.

Here are the likely inputs:

2000000+31.369672915858+31.369613082955+31.369553250166+31.369493417492+31.369433584932+31.369373752485+18.734686079847

What you're left with (after fee?) is approximately the 6.83996 change


There doesn't appear to be any conspiracy here, Sorry Mojo

"Numbers appear to add up" is not a good response, private keys and Tx_Keys only

You continue to lose respect when you take the focus off any legitimate issues and try to make a fuss about nothing. The only people in the DERO inner circle who have dumped their coins between Jul 3 and now, is you and Serena.

Look at the TX on the block explorer, there are 8 inputs. The numbers do add up

I am not apposed to seeing the entire TX history of the premine wallet, but there is exactly zero evidence that anything nefarious has taken place. All the data available proves that ALL of the DERO received between block 1 and block 72 has not been touched. There is not a dime of evidence to the contrary.

However, at any point between the last screenshot and now (a few days) Captain could have sent 2,000,200 coins to an exchange and no one would be wiser. The view key only enables us to see what has been received. A new clear plan for the pre-mine needs to be presented to the community, and locks should be put in place.

Code review should take place in <12H.

Mojo, if you're really trying to help, stick to facts, not speculation.

Addressing an earlier point about the current code base not being released, but rather Atlantis V2, I would like to present a theory.

Everyone knows the source code was not released to qualified cryptographers that Serena had found, why? Why was the source code not released following mainnet? Does anyone remember this conversation?

https://www.reddit.com/r/CryptoCurrency/comments/8pnt1u/dero_creates_a_new_type_of_dag/

Serena?

Here's what I think and know. Bulletproofs were added to mainnet before audit was complete (inappropriate).
The audit was not complete and since there was a risk of vulnerabilities, Captain chose not to release the cryptography outside his inner circle, especially now that the code was running on mainnet (theory).

Captain - "Code will be released only after audits are completed and if any necessary actions required are taken.". Audits have recently completed (according to Cap), and now code release to devs is following shortly after.

Anyone read this article?:

https://ethereumworldnews.com/monero-bulletproof-protocol/

My final thoughts.. Bulletproofs were added before audit was done (wrong to do), captain didn't want to share code with people who had no liability (questionable), some minor or major issues were found as a result of the audit which are being implemented into "Atlantis V2" and we will never see any code before this version.
newbie
Activity: 21
Merit: 0
Dear Mojo, speaking is not moving sacks. Every time it's a shot in the dark.
jr. member
Activity: 87
Merit: 2
If you count all the transactions received up until block height 72, it perfectly matches the balance available in the screenshot posted July 3rd.



It's also likely that Cap sent himself a flat 2,000,200 coins instead of the entire wallet balance.

Here are the likely inputs:

2000000+31.369672915858+31.369613082955+31.369553250166+31.369493417492+31.369433584932+31.369373752485+18.734686079847

What you're left with (after fee?) is approximately the 6.83996 change


There doesn't appear to be any conspiracy here, Sorry Mojo

"Numbers appear to add up" is not a good response, private keys and Tx_Keys only
newbie
Activity: 33
Merit: 0
@jopari & DeroHodler: all well and good, but everything you've written is conjecture. The software has been closed-source since before atlantis, and you have no way of saying when, or even if, the premine ever left the wallet shown in the screenshot. For all you know, there really is a bit more than 4m dero in there.

@kryptoid: have you ever gone by the name mrpoopybutthole on discord?

For a short period of time (2 or 3 months) but I was not active for most of that time. It's a rick and morty reference.

Edit : my discord is my newest account besides telegram.

Good, that was the correct answer.
jr. member
Activity: 148
Merit: 2
@jopari & DeroHodler: all well and good, but everything you've written is conjecture. The software has been closed-source since before atlantis, and you have no way of saying when, or even if, the premine ever left the wallet shown in the screenshot. For all you know, there really is a bit more than 4m dero in there.

@kryptoid: have you ever gone by the name mrpoopybutthole on discord?

For a short period of time (2 or 3 months) but I was not active for most of that time. It's a rick and morty reference.

Edit : my discord is my newest account besides telegram.
newbie
Activity: 33
Merit: 0
@jopari & DeroHodler: all well and good, but everything you've written is conjecture. The software has been closed-source since before atlantis, and you have no way of saying when, or even if, the premine ever left the wallet shown in the screenshot. For all you know, there really is a bit more than 4m dero in there.

@kryptoid: have you ever gone by the name mrpoopybutthole on discord?
newbie
Activity: 7
Merit: 0
If you count all the transactions received up until block height 72, it perfectly matches the balance available in the screenshot posted July 3rd.

https://i.imgur.com/7XSLwgB.png

It's also likely that Cap sent himself a flat 2,000,200 coins instead of the entire wallet balance.

Here are the likely inputs:

2000000+31.369672915858+31.369613082955+31.369553250166+31.369493417492+31.369433584932+31.369373752485+18.734686079847

What you're left with (after fee?) is approximately the 6.83996 change


There doesn't appear to be any conspiracy here, Sorry Mojo
jr. member
Activity: 148
Merit: 2
Wew lads.  What a shitshow.  While I'll give serena and mojo credit for being the absolutely worst "community managers" ever since mojo banned me twice for absolutely no reason whatsoever.  The fact that mojo is a petulant child and cannot take any criticism also reflects poorly on captain dumbass's judgement and reasoning skills.  That's right mojo :middle_finger:  Enjoy being poor.  And serena, well now here's someone who has ZERO understanding of any blockchain technology.  And her sudden apology tour was 100% lulz when she knew her days were numbered.  I didn't buy her BS for a second.  Both of you, please, leave crypto.  You're both pathetic and should be working at McDonalds.

Then we have kryptoid (aka MrPoopyButthole) known serial scammer.  Captain dumbass once again does a bang up job picking his community managers.  Another idiot herding the bagholding sheep.  But maybe he's involved now because there is something more nefarious going on.

Everyone wonders why the code hasn't been released.  Also the idiots who think having the view key shows the premine is intact.  You believers are the highest order of idiot and should immediately well, nevermind.  I've never had dero, and honestly never will.  Dont' really care if it moons or goes to zero.  I do however feel bad when innocent people lose their funds or get dumped on by shady devs.  I don't really care about the people blowing their horn about how much they love this project, or will hold forever, those people cannot be expected to ever have an independent coherent thought.  Still no code released.  Just binaries.  Sure people, trust these "anonymous" devs.  They would never put anything malicious in the binaries, or they're not running on a central database somewhere to hold up their shoddy network.  And speaking of anonymous dev, captain dipshit isn't so anonymous.  I decided to dox him for the lulz and was actually amazed that he's been able to keep up the facade for as long as he has so far.  Take this as fud or curse my words, but this guy has dumped bags on people before and he will do it again.  I'll give him two days to come clean, or dump what's left of his premine before I out him.  The rest of you can DYOR but I assure you that rats will be jumping from the sinking ship.

1) I'm not a CM. I'm a volunteer mod, I've made this clear.

2) Care to provide any proof (or even allegations from others) that I am a scammer? Let alone a "known serial scammer"?

Cute.
newbie
Activity: 15
Merit: 0
The early transactions there (before topo 260928) amount to ~2000238 DERO, 2m of which are the premine, the inputs from 2 to 7 are mining rewards, and 2c47.. at 72 seems to be the transfer of a mining reward from another wallet. With the 18 that you call "change", that amounts to around 2000238 DERO. At topo 260928, ~2000206 DERO are received. This means we need to account for 32 DERO. Capt has previously said that 26 DERO were spent for "exchange testings" [1], which means only 6 DERO (0.0003% of the balance at height 72) are presently unaccounted for. Because I only have that data and the encrypted blockchain to go on, I think such a tiny discrepancy should be permissible.

And it's important to note that, assuming that those 26 DERO were indeed spent from the premine wallet, *because that wallet also received mining rewards, none of the 'actual' premine seems to have been spent*. But DERO is fungible, so who cares either way? The whole point of fungibility is that coin units are indistinguishable.

[1] https://old.reddit.com/r/DeroProject/comments/8xy0ht/dero_ama_with_lead_developer_july_2018/e2d1ner/

Please stop this mud-slinging.
jr. member
Activity: 87
Merit: 2
I think people are not seeing another big issue with an unlocked premine of this size, and it's simple market manipulation.

Dero reached a rather sizable ATH back in January before the market took a dump. A premine of this size would allow for massive sell opportunities, only to buy in again at the bottom. The same can be said as of now, with Dero at 30% of the price it was a month or two ago.

These "untouched" premine totals can be completely fabricated, since the dev can play with this stack on the market, force a massive dump, then buy back enough dero with a 70% discount to keep the same amount of premine, except with rather substantial gains made along the way.

Makes perfect sense.. Let's ask capt to move all premine to another wallet, and provide the full keys to the current wallet, so we can see if the premine was spent anytime other than when he sent it to the same wallet to prove it's all there

Full Premine intact as of 12 JULY 2018.



@CaptDero We want the Tx_key for the transaction to the same wallet you claim it is the original premine

Edit:

The Tx at height 72 is change Tx from a sent transaction, so we know 100% that that wallet already sent funds out before, fund containing more than one input



Anybody care to explain?

newbie
Activity: 33
Merit: 0
I think people are not seeing another big issue with an unlocked premine of this size, and it's simple market manipulation.

Dero reached a rather sizable ATH back in January before the market took a dump. A premine of this size would allow for massive sell opportunities, only to buy in again at the bottom. The same can be said as of now, with Dero at 30% of the price it was a month or two ago.

These "untouched" premine totals can be completely fabricated, since the dev can play with this stack on the market, force a massive dump, then buy back enough dero with a 70% discount to keep the same amount of premine, except with rather substantial gains made along the way.

I do not disagree, but there is also a more subtle and insidious effect that a sizeable premine cannot help but have: it centralizes control of the network under the premine holder, for as long as it exists.

The community puts their money into a project, so what happens if/when the original developer goes off the rails? If the source is open, the community can wrest control of the network by forking. However, say that 20% of existing coins are currently held in premine; in this case, the community cannot take over without massively rewarding the very developer from whom they wish to take control, while at the same time, taking a hit (in terms of value) themselves.

As such, projects which have sizeable premines, and/or closed code, can hardly be called decentralized.
newbie
Activity: 13
Merit: 0
I think people are not seeing another big issue with an unlocked premine of this size, and it's simple market manipulation.

Dero reached a rather sizable ATH back in January before the market took a dump. A premine of this size would allow for massive sell opportunities, only to buy in again at the bottom. The same can be said as of now, with Dero at 30% of the price it was a month or two ago.

These "untouched" premine totals can be completely fabricated, since the dev can play with this stack on the market, force a massive dump, then buy back enough dero with a 70% discount to keep the same amount of premine, except with rather substantial gains made along the way.
Pages:
Jump to: