Bitcoin Forum
July 08, 2024, 05:46:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔ DigiSync v6.14.2 - DigiSpeed - Segwit -DiguSign on: July 11, 2017, 11:59:58 AM
I think this is a very good opportunity / moment for digibyte to show the crypto world you are the superior alternative to Bitcoin . Have you seen all the mess this bitcoin situation is making to the whole crypto currency ecosystem ? And everything for what ? For an issue Digibyte has already solved and proved :  Segwit (in fact the problem is other , segwit is one of the possible solutions)

                            This is the first of many problems Btc will face, and all them are features Digibyte already offers . Btc community is now arguing and the majority of them do not know what to do or even what is going to happen with their money . Digibyte should shows itself as the solution at this point !  


From my point of view, this is the perfect moment for Digibyte to take some of the market cap Btc is loosing. Somebody should perform some marketing actions on this coin !

DGB has copied Myriad and bitcoin, they have not innovated shit yet, if bitcoin goes down who will digibyte copy next?
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔ DigiSync v6.14.2 - DigiSpeed - Segwit -DiguSign on: April 29, 2017, 08:50:27 PM
What's the next big thing for digibyte since segwit is now active?

Whatever the next big development is from the Bitcoin developers. Copy and paste and Jared and HR market the update like it's the 2nd coming.

Isn't that what alot of alt coins have done?

GRS was first to implement Segwit and is ahead of dgb in every aspect. Is dgb overvalued ? Well its over 4 times GRS value and it's not as good.

The real difference is Poloniex. Whales on Poloniex boost the DGB price far higher then it deserves to be.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔ DigiSync v6.14.2 - DigiSpeed - Segwit -DiguSign on: April 21, 2017, 06:40:23 PM
Short answers:

1.) Not applicable
2.) Not applicable
3.) Not applicable


Well damn, that means it's a better coin than dash! Maybe we can see .1!  Roll Eyes

You whales make me laugh. Let's compare a coin that copied code from bitcoin developers called Segwit to Dash that is innovating all the time.  Try harder boys! PUMP PUMP PUMP THAT SHIT!
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔ DigiSync v6.14.2 - DigiSpeed - Segwit -DiguSign on: April 21, 2017, 12:39:16 PM
Will this really be the first crypto to activate segwit? I thought some other cryptos already did?

Other cryptos have like GRS, but Jared likes to Hype the fuck out of this coin.  Wink
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: April 09, 2017, 08:22:02 AM

Stop with the fake hype, GRS already crossed the segwit line first. Don't be marketing fake news.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: April 05, 2017, 02:45:59 PM
Quick update, we have one final hurdle to get through before we release v6.14.1.  The upcoming soft fork will consist of 4 phases as defined here: https://github.com/digibyte/digibyte/blob/6.14.1devnet/src/versionbits.h#L20

Code:
enum ThresholdState {
    THRESHOLD_DEFINED,
    THRESHOLD_STARTED,
    THRESHOLD_LOCKED_IN,
    THRESHOLD_ACTIVE,
    THRESHOLD_FAILED,
};

These soft forks will be carried out according to bip 9 as described here: https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki

The parameters for our soft fork are defined here: https://github.com/digibyte/digibyte/blob/6.14.0/src/chainparams.cpp#L145

THRESHOLD_DEFINED - Currently our mining tests work through here without issues.

THRESHOLD_STARTED - This is where we are having mining problems with testing. (Period already started, period is 1 week requiring 70% of previous 40,320 blocks to advance to next phase).  We get "Unrecognized block version" on most miners when mining through this phase, although some mining software still mines blocks.

THRESHOLD_LOCKED_IN - Same as Started

THRESHOLD_ACTIVE - Once we hit activation everything works as it should on all mining software.

The new block version bits as defined in bip 9 are defined here: https://github.com/digibyte/digibyte/blob/6.14.0/src/versionbits.h#L14

Code:
static const int32_t VERSIONBITS_TOP_BITS = 0x20000000UL;
/** What bitmask determines whether versionbits is in use */
static const int32_t VERSIONBITS_TOP_MASK = 0xE0000000UL;
/** Total bits available for versionbits */
static const int32_t VERSIONBITS_NUM_BITS = 28;

The issue is a combination of Multi-Algo versioning, plus bip 9 soft fork roll out versioning.  

Our Multi-Algo block bit versioning is defined with this bitwise operator here: https://github.com/digibyte/digibyte/blob/6.14.0/src/primitives/block.h#L30
Code:
enum
{
    // primary version
    BLOCK_VERSION_DEFAULT        = 4,

    // algo
    BLOCK_VERSION_ALGO           = (7 << 9),
    BLOCK_VERSION_SCRYPT         = (1 << 9),
    BLOCK_VERSION_SHA256D        = (1 << 9),
    BLOCK_VERSION_GROESTL        = (2 << 9),
    BLOCK_VERSION_SKEIN          = (3 << 9),
    BLOCK_VERSION_QUBIT          = (4 << 9),
};

When mining through a test network and all the phases here are the block versions we are getting converted to binary and hex:

Code:
Version= 0010 0000 0000 0000 0000 1110 0000 0111 - 20000007 - Scrypt -- STARTED - LOCKEN_IN
Version= 0010 0000 0000 0000 0000 1110 0000 0000 - 20000000 - Scrypt -- DEFINED - ACTIVE
Version= 0010 0000 0000 0000 0000 0010 0000 0111 - 20000207 - Sha256 -- STARTED - LOCKEN_IN
Version= 0010 0000 0000 0000 0000 0010 0000 0000 - 20000200 - Sha256 -- DEFINED - ACTIVE
Version= 0010 0000 0000 0000 0000 0100 0000 0111 - 20000407 - Groestl -- STARTED - LOCKEN_IN
Version= 0010 0000 0000 0000 0000 0100 0000 0000 - 20000400 - Groestl -- DEFINED - ACTIVE
Version= 0010 0000 0000 0000 0000 0110 0000 0111 - 20000607 - Skein -- STARTED - LOCKEN_IN
Version= 0010 0000 0000 0000 0000 0110 0000 0000 - 20000600 - Skein -- DEFINED - ACTIVE
Version= 0010 0000 0000 0000 0000 1000 0000 0111 - 20000807 - Qubit -- STARTED - LOCKEN_IN
Version= 0010 0000 0000 0000 0000 1000 0000 0000 - 20000800 - Qubit -- DEFINED - ACTIVE

So the identifier to far right that flags segwit support etc is causing issues (the 7 at end).  Anyone have any suggestions?

Current dev branch we are working and testing out of: https://github.com/digibyte/digibyte/commits/6.14.1devnet

GRS devs can sort this out for you for a price , you won't have much luck with arrogant Gulden devs or untouchable litecoin devs who have already done the update.
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 21, 2017, 05:13:37 PM
Coming soon! #DigiByte v6.13 DigiSync! Many core wallet updates! Fast synchronization & more scalability!

You have to be shitting me right? You giving bitcoins fast sync the name of digisync. What a bunch of con artists. It's like us calling header first sync GRSsync. It's not your fucking code, don't pretend it is.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 12, 2017, 06:12:02 PM
Check Jared's latest vid out here: https://www.youtube.com/watch?v=rDg0t5LBdC0

Well worth the watch. Nice to see everything successfully maturing while staying true to the underlying principles of the UTXO set. (That's clearly one of the keys for long term success IMHO.)

Marketing will come later, or so they continue to say.  Undecided

I would start with concerted efforts to disseminate this type of youtube communication. 327 views looks more like fringe cult numbers than what one would expect of a widely distributed decentralized cryptocurrency of DigiByte's character. Wink

You tube views are better now. 😉

Wow! 2,500 new views in 2 days! After getting only 327 in the first 8 days of its existence. #4 on the all time best list for DigiByte and better than any DigiReport! That's phenomenal . . . if they're real . . . and I don't have any reason to think that they aren't.

Anyone have any idea as to what's caused this sudden interest?

My favorite is still #3 https://www.youtube.com/watch?v=rmDyhKOjNKM (behind #1 & #2 which are DigiByte gaming related) and should be posted everywhere possible, including prominently on the website, IMO.

This one's great too with both great content (all implemented) and production values (except for the sound . . .) https://www.youtube.com/watch?v=-haCDqhaTqc .

Let's get these climbing the charts too!


HR don't be an asshole, you know that shit is faked like the twitter followers, nodes, gamers etc.
Wasn’t expecting to be saying this but I’m 100% certain HR isn’t being the arsehole here.  Got evidence of faking anything to do with DigiByte, feel free to share it in detail. You may actually come up with stuff if you dig deep enough but if you do it’s more likely to lead to some overzealous fans and funny enough every coin has got some. Smiley

PS: HR, can’t think of any particular reason other than, because it was posted here at a time near where many traders may be thinking about what they are going to do with their BTC next, not pump DigiByte  I’m hoping.

Over 25000 twitter followers and digibyte is 20 sat? Over 20 000 gamers and digibyte is 20 sat ? Coins in the top 20 don't have near this many followers.

You have to be brain dead if you think those figures havent been manipulated.

Here, take some snake oil.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 12, 2017, 03:01:04 PM
Check Jared's latest vid out here: https://www.youtube.com/watch?v=rDg0t5LBdC0

Well worth the watch. Nice to see everything successfully maturing while staying true to the underlying principles of the UTXO set. (That's clearly one of the keys for long term success IMHO.)

Marketing will come later, or so they continue to say.  Undecided

I would start with concerted efforts to disseminate this type of youtube communication. 327 views looks more like fringe cult numbers than what one would expect of a widely distributed decentralized cryptocurrency of DigiByte's character. Wink

You tube views are better now. 😉

Wow! 2,500 new views in 2 days! After getting only 327 in the first 8 days of its existence. #4 on the all time best list for DigiByte and better than any DigiReport! That's phenomenal . . . if they're real . . . and I don't have any reason to think that they aren't.

Anyone have any idea as to what's caused this sudden interest?

My favorite is still #3 https://www.youtube.com/watch?v=rmDyhKOjNKM (behind #1 & #2 which are DigiByte gaming related) and should be posted everywhere possible, including prominently on the website, IMO.

This one's great too with both great content (all implemented) and production values (except for the sound . . .) https://www.youtube.com/watch?v=-haCDqhaTqc .

Let's get these climbing the charts too!


HR don't be an asshole, you know that shit is faked like the twitter followers, nodes, gamers etc.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 12, 2017, 02:16:32 PM
Check Jared's latest vid out here: https://www.youtube.com/watch?v=rDg0t5LBdC0

Well worth the watch. Nice to see everything successfully maturing while staying true to the underlying principles of the UTXO set. (That's clearly one of the keys for long term success IMHO.)

Marketing will come later, or so they continue to say.  Undecided

I would start with concerted efforts to disseminate this type of youtube communication. 327 views looks more like fringe cult numbers than what one would expect of a widely distributed decentralized cryptocurrency of DigiByte's character. Wink




Digibyte will be 3rd coin to update to 0.13 codebase?

1. Gulden
2. Litecoin
3. Digibyte

This is good news for dgb.

GRS already update to 0.13 without $250k investment and we have more working wallets.

Jared going market a bitcoin update. Fake news
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 12, 2017, 02:09:02 PM
Check Jared's latest vid out here: https://www.youtube.com/watch?v=rDg0t5LBdC0

Well worth the watch. Nice to see everything successfully maturing while staying true to the underlying principles of the UTXO set. (That's clearly one of the keys for long term success IMHO.)

Marketing will come later, or so they continue to say.  Undecided

I would start with concerted efforts to disseminate this type of youtube communication. 327 views looks more like fringe cult numbers than what one would expect of a widely distributed decentralized cryptocurrency of DigiByte's character. Wink



You tube views are better now. 😉

Way to go faking the views. Groestl has done more then this shit coin with $250k investment
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!