Bitcoin Forum
July 05, 2024, 04:18:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 »
  Print  
Author Topic: (XF₲) Fuego 🔥 Decentralized Privacy Banking Network (POW)  (Read 32955 times)
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 02, 2018, 01:45:29 AM
 #161

Your right. You got me.

Ive been lying this whole time guys.

This is important.

THERE WILL BE more than 8 Million 8 {DRGL}

The actual total amount adds another 0.8 {DRGL}

Well thats not entirely true either. 


Theres more.

I feel so horrible.

After the last {DRGL} is mined, it will include another extra  0.0000008 {DRGL}

Im so ashamed.
 Cheesy

Alright. Enough play.
But Im GLAD to see people going thru the code and paying attention. Straight up.

I really want to continue working on this GUI wallet being an enjoyable experience as top priority right now. That starts with making it easy to download.

M'lord  c6mining  givin out AirDrops!!   Righteous.

Hey I'd like to see what someone can do for a simple {DRGL} icon design, too.

The code is open source for a reason. This software is free for a reason.

Nobody owns it.

Valar morghulis
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 02, 2018, 01:59:43 AM
Last edit: July 11, 2018, 05:17:19 PM by aejontargaryen
 #162

if anybody has any problems they would like help on please try to give as much detailed info as you can and I'll do my best to help.
windows and mac work to come
Just a tip for building the wallet on Ubuntu 16.04. The package libboost is just libboost-all-dev ( version 1.58 on Ubuntu 16.04, but we don't need the version, just the default package ).

Code review is huge. Code edit is massive. We need good help at the Wall / Github  

... the shield that guards the realms of men
gameparadise007
Full Member
***
Offline Offline

Activity: 442
Merit: 100


View Profile
February 02, 2018, 07:52:10 AM
 #163

SO what is the total supply?
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 02, 2018, 12:09:48 PM
Last edit: January 17, 2019, 10:32:14 PM by aejontargaryen
 #164

        approximately
 {8 MILLION}
exactly 8,000,008. {DRGL}
precisely    8000008.8000008  {DRGL}
        {8M8.8m8}
rocket_racoon
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 02, 2018, 02:29:49 PM
 #165

I'll admit that c++ isn't my favourite language and I'm hoping to be proved wrong, but I can't see anything in the code that splits that huge value into 8000008.8000008

I see a MONEY_SUPPLY variable of type unsigned 64bit int (which suggests it's expected to cater for a huge number) in cryptonoteconfig.h

Being of type INT would also suggest that it's a whole number.

And in currency.cpp there's a reward being calculated using a money supply and an emission factor

but that's all.

can you shed some light, dev?
cozzz
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
February 02, 2018, 05:46:13 PM
 #166

I'll admit that c++ isn't my favourite language and I'm hoping to be proved wrong, but I can't see anything in the code that splits that huge value into 8000008.8000008

I see a MONEY_SUPPLY variable of type unsigned 64bit int (which suggests it's expected to cater for a huge number) in cryptonoteconfig.h

Being of type INT would also suggest that it's a whole number.

And in currency.cpp there's a reward being calculated using a money supply and an emission factor

but that's all.

can you shed some light, dev?

https://github.com/ZirtysPerzys/dragonglass/blob/master/src/CryptoNoteConfig.h

In this file tell about decimal point parameter name CRYPTONOTE_DISPLAY_DECIMAL_POINT be 7.
rocket_racoon
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 02, 2018, 05:53:33 PM
 #167


https://github.com/ZirtysPerzys/dragonglass/blob/master/src/CryptoNoteConfig.h

In this file tell about decimal point parameter name CRYPTONOTE_DISPLAY_DECIMAL_POINT be 7.


I think that refers to the decimal display in the miner app.. example, my last reward was 27.6770048
cryptonomicon25
Member
**
Offline Offline

Activity: 460
Merit: 12


View Profile
February 02, 2018, 06:41:47 PM
 #168


https://github.com/ZirtysPerzys/dragonglass/blob/master/src/CryptoNoteConfig.h

In this file tell about decimal point parameter name CRYPTONOTE_DISPLAY_DECIMAL_POINT be 7.


I think that refers to the decimal display in the miner app.. example, my last reward was 27.6770048

The CRYPTONOTE_DISPLAY_DECIMAL_POINT = 7 is universal. The MONEY_SUPPLY variable incorporates this value, so giving MONEY_SUPPLY a value of 80000088000008 means that the total supply is 8000008.8000008
rocket_racoon
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 02, 2018, 07:25:57 PM
 #169

yep fair enough, I see it now

std::string Currency::formatAmount(uint64_t amount) const {
  std::string s = std::to_string(amount);
  if (s.size() < m_numberOfDecimalPlaces + 1) {
    s.insert(0, m_numberOfDecimalPlaces + 1 - s.size(), '0');
  }
  s.insert(s.size() - m_numberOfDecimalPlaces, ".");
  return s;
}
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 03, 2018, 04:42:46 AM
Last edit: February 03, 2018, 11:42:25 PM by aejontargaryen
 #170


https://github.com/ZirtysPerzys/dragonglass/blob/master/src/CryptoNoteConfig.h

In this file tell about decimal point parameter name CRYPTONOTE_DISPLAY_DECIMAL_POINT be 7.


I think that refers to the decimal display in the miner app.. example, my last reward was 27.6770048

The CRYPTONOTE_DISPLAY_DECIMAL_POINT = 7 is universal. The MONEY_SUPPLY variable incorporates this value, so giving MONEY_SUPPLY a value of 80000088000008 means that the total supply is 8000008.8000008

Very nicely put Lord Nomicon25 of House Crypto. (my knee feels like bending)
im not very good with humor.
Honor is something I do know.
This will never be the 'hottest ICO' or 'furthest advancement of tech this space has ever seen.'

What {Dragonglass} IS - is fair & true, and open to everyone...
The only surprise is reserved for those who've left their part undone in the coming war.

"I am true to my word.  ...or I try to be."
CryptoMan007
Newbie
*
Offline Offline

Activity: 77
Merit: 0


View Profile
February 06, 2018, 06:20:06 AM
 #171

Hello guys, is this still CPU mineable or difficulty is high now ?
Also please tell current block number.
Galapagos
Copper Member
Jr. Member
*
Offline Offline

Activity: 129
Merit: 2


View Profile
February 06, 2018, 09:28:01 AM
 #172

Hi guys,
I would like to give 20000 DRGL for some bountys or airdrops, do we have some addresses where we can collect for those kind of things?
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 06, 2018, 11:06:59 PM
 #173

Hi guys,
I would like to give 20000 DRGL for some bountys or airdrops, do we have some addresses where we can collect for those kind of things?

Galapagos is a badass. Truly a slayer of more than merely Windows. Cool

A multi-signature wallet may be possible..
Though keeping a tally of combined pledge amount may be the best we can do until then.

I shall also wish to pledge a few thousand DRGL to development, whilst also working my best to earn any bounties.
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 07, 2018, 03:55:50 AM
 #174

Hello guys, is this still CPU mineable or difficulty is high now ?
Also please tell current block number.
Always CPU mineable, m'lord.
Block height ~30180
Difficulty ~50k
gameparadise007
Full Member
***
Offline Offline

Activity: 442
Merit: 100


View Profile
February 08, 2018, 06:01:17 AM
 #175

Hello

I can also giveaway some coins for bounties 😀
aejontargaryen (OP)
Jr. Member
*
Offline Offline

Activity: 414
Merit: 8

🔥


View Profile WWW
February 10, 2018, 04:22:00 PM
 #176

Hello

I can also giveaway some coins for bounties 😀

Honorable, indeed..
Money flows best to where it is distributed most..
mauncoin
Newbie
*
Offline Offline

Activity: 196
Merit: 0


View Profile
February 12, 2018, 10:21:26 AM
 #177

Hello!
Do you plan to create masternodes ?
gameparadise007
Full Member
***
Offline Offline

Activity: 442
Merit: 100


View Profile
February 13, 2018, 01:13:11 AM
 #178

one more coin launched today with same name - Dragonglass Smiley
https://bitcointalk.org/index.php?topic=2934765.0
CryptoMan007
Newbie
*
Offline Offline

Activity: 77
Merit: 0


View Profile
February 16, 2018, 06:30:01 AM
 #179

Strange the difficulty is still very low Tongue , still cpu mineable.
love cpu mining, just mining for fun now Tongue
gameparadise007
Full Member
***
Offline Offline

Activity: 442
Merit: 100


View Profile
February 24, 2018, 03:20:34 AM
 #180

Hello,

IS this coin active, I don't see any new thing here ? Dev, are you still working on this coin ?
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 »
  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!