Bitcoin Forum
May 25, 2024, 06:35:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 ... 135 »
161  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: April 05, 2017, 01:10:53 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
162  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: March 23, 2017, 02:46:33 PM
Very 1st Segwit test block on version 6.13.1 has been mined on the main DigiByte blockchain!
https://twitter.com/DigiByteCoin/status/844920496470704130

We are doing this to test backwards compatibility before releasing new wallets!
163  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: DigiByte & League of Legends - How can we make DigiByte Gaming better? on: March 06, 2017, 02:45:12 AM
https://twitter.com/DigiByteGaming/status/838570454063312896
We are pausing all payouts until we fix some issues with exploits in payout API interface. Thanks for your understanding.
164  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 17, 2017, 02:57:22 AM
Thank you all for your continued support and for being here for 3 years!  DGB is now officially 3 years old! Join us for the 1st ever DGB Roundtable live broadcast.  Anyone can join the discussion and join the chat to ask questions!

https://www.youtube.com/watch?v=AFrmY7YFyis


I have 2 questions.

1. Why is development slow with 5-6 people working on DGB?
2. Why does dgb need more crowdfunding when they received $250k in 2014? The $250k investment has not done anything , what will another $250k really help?

First, thank you for taking the time to ask the question. Second thank you for supporting DGB!

As mentioned in the original CoinDesk Press release: http://www.coindesk.com/digibyte-raises-250k-altcoin-retail-payments/

Quote
The funds will be used by the DigiByte developers as part of a push to upgrade the core functionality of the project's code and develop new services on top of its infrastructure.

Key phrase here: "develop new services on top of its infrastructure"

$250 K (from a private investor) would cover 3 quality developers & company expenses for about a year in Silicon Valley. It costs about 3k a month for a developer simply to live there.  We are now three years later. For those who are not aware, these are the platforms and upgrades that have been created since then:

Core Protocol:
Multi-Algo Hard Fork (Multi-Algo mining)
Multi-Shield Hard Fork (Multi-Shield difficulty adjustment)
DigiSpeed Hard Fork (Increased speed & scalability)
Upcoming 4.1.3 Release

Result = DigiByte is now the longest and most proven scalable public PoW blockchain in existence with over 3.7 million blocks and a capacity of 300 TPS currently.

"new services on top of its infrastructure"
DigiByte Gaming
DiguSign
DigiExplorer
DigiByte.co (2 New Websites)
DigiByte Gaming Wallet (Multiple Phases)
iOS Wallet
Android SPV Wallet Upgrades & Maintenance
Tofugear Retail Payments Integration (we really need to promote this more)
DigiPay Payment Processor
DigiByte Market
DigiTradeX (Fully functioning exchange developed and tested, never released due to regulatory burdens and requirements for USD to DGB)
Original DigiByteTip Platform
Upcoming Digi-ID and Digi-2FA
Numerous conferences, marketing materials and presentations have been paid for to promote DGB. Not to mention the DGB we have paid out to bring 40,000 new gamers into the Digi ecosystem.

All DGB we have has been purchased on the market, there was no ICO or Pre-Mine held on to support development once this group emerged. (0.5 percent was given away and used for initial wallets the first 6 weeks. All documented publicly as most of you know, check the first page)

All the above services require hosting & maintenance costs.  At one point our combined server expenses were over $1,000 USD.  We have also sponsored and helped community projects whenever possible.

As for us "crowd funding".  We are working to build a thriving ecosystem outside of "us".  Name one other cryptocurrency where a handful of people have done all the above.  Each of those services could easily use a team of 20 people to really be taken to their full potential with millions in investment for each one. Simply look at individual platforms in the BTC community, and the teams and funding behind each one.

Quote
2. Why does dgb need more crowdfunding when they received $250k in 2014? The $250k investment has not done anything, what will another $250k really help?

DigiByte is decentralised and we want to grow the community to take on their own projects and help build a true, decentralised future. This platform is to allow individuals to "crowd-fund" their own ideas and projects.  For others to take initiative.  Nowhere are "we" asking for another 250K from anyone.

Hopefully this clears some things up.
165  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 17, 2017, 02:30:08 AM
Hello and congratulations on the three year mark.
Is this team still running the Digibyte Gaming site?
My payouts and my friends are getting rejected, regardless of game.

We have just pushed an update to the DigiByte Gaming Wallet to fix the transaction proposal issue people were having:

1) Make sure to back up your wallets seed phrase (Settings Icon -> Backup)

2) Go to Chrome store, update wallet & make sure you are on version 1.8.9 https://chrome.google.com/webstore/detail/digibyte-gaming-wallet/lpmijfncbdjhcbockhipcncnhfgghkoj

Lets us know if you have any more issues.  Thanks for supporting DigiByte Gaming!
166  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 11, 2017, 02:16:35 AM
Thank you all for your continued support and for being here for 3 years!  DGB is now officially 3 years old! Join us for the 1st ever DGB Roundtable live broadcast.  Anyone can join the discussion and join the chat to ask questions!

https://www.youtube.com/watch?v=AFrmY7YFyis
167  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: DigiByte & League of Legends - How can we make DigiByte Gaming better? on: January 06, 2017, 02:40:47 AM
This is great news. I recently joined 12 hours back.

I played 5 games of which we won 3 games. That means I get daily quest bonus as well. But I was not able to claim rewards for any of them. My account shows only one game reward of 3 DGB  which is still holding a pending status.

Are you still having this issue?  It should be resolved. We are also working through an issue with the Chrome Extension Gaming Wallet as well.  Stay tuned! DigiByte turns 3 years old in 4 days! Help us celebrate!
168  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 06, 2017, 02:38:44 AM


We are a running a founders day discount on orders paying with DigiByte, this 21% discount will run for the 24Hrs of January 10th.  More discounts on DigiByte will follow over the coming weeks

Cryptocloudhosting.org
This is great to hear! Make sure to tweet it out and we will get it retweeted!
169  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 03, 2017, 07:53:32 PM
We are planning on setting up some discounts for orders paying with DigiByte over the next few weeks on CryptoCloudHosting.org

If anyone has any ideas of any other offers / discounts you would like us to run with DigiByte let me know.

Let us know what you end up doing and we can help get the word out.  Especially for DigiByte's up-coming third birthday on the 10th! Thank you for supporting DigiByte!
170  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 03, 2017, 07:51:51 PM
Been testing the official pool (scrypt) since about 930gmt last night only 1.4MH but as yet no payments checked the block Explorer for a couple of adresses including mine and found only one had received any payments!
Any explanation or reasons why anyone can think of?
To me looks like you have about 1/20th of mining. If pool has found one block, your share will be less than 50 DGB. Digihash will pay out when you have mined 500 DGB, so pool needs to find 10-11 blocks before you are paid. Hope that helps.    Smiley

This seems to be the likely reason as well.  We had to increase the payout threshold because of the bottleneck of tens of thousands of micropayments from the pool. If you have any more specific questions or details feel free to email dev @ digibyte.co
171  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: January 03, 2017, 06:15:53 PM
Let Coinbase know you would like to see DigiByte added to their exchange: https://docs.google.com/forms/d/e/1FAIpQLSc2fiKVGs8bBWSzUols16GjetJ0aWx4N1J10SP0NwhG6rdtfg/viewform

172  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: December 31, 2016, 07:51:59 PM
Happy new years everyone! 2017 is going to be a great year for DigiByte!
173  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: December 14, 2016, 12:59:25 PM
For those that are curious about what DiguSign will be used for with blockchain contracts please look here: http://digusign.com/

Quote
Currently there are no proven, scalable ways of doing secure "smart" contracts on a blockchain.  But you can leverage some of the benefits of DigiByte blockchain to create a more practical secure blockchain contract solution.


174  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: December 14, 2016, 12:54:30 PM
I sold all my digibyte during the last pump and not because I wanted to sell and make a profit but because I could see the writing on the wall after the weekly digireports had stopped and other things promised never came to fruition. I think you will get your money back in 2017 as the pumps and dumps come in cycles. I prefer to invest in coins that have a long term goal and are able to deliver.

Thank you for your feedback.  The digireports required a couple days to make properly and were taking a significant amount of time without many results. The time is much better spent developing some solid platforms until we are ready to market them.

Our focus has been on developing some real world utility for DigiByte and we will continue to do so. We have gotten feedback that a live video stream with Q&A might be well received.  It is almost Christmas after all!
175  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, DiguSign it?, DigiSpeed on: December 14, 2016, 12:42:58 PM
I think I was scammed by the DigiByte gaming wallet. Jared has not replied. :-( I should of stuck to the QT wallet!

Where did you message us?  Please forgive the delay. It's hard keeping on top of all these social media channels.  We will get your sorted. We have been working around the clock on a new DiguSign release.

You should have the backup seed phrase.  Which version of the Gaming Wallet are you running?
176  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: November 30, 2016, 06:03:39 PM
Whatever the updates are that you pushed for csgo.. they clearly did not work. Rejected payments or no more payout for days,weeks months now.

Thanks for the feedback. PM us your CSGO id or username and we can look you up in the system.  We implemented several measures to prevent blatant abuse of the system and want to make sure we are not triggering false positives. The pool is paying out CS GO and LOL payouts currently as expected and can be seen here: https://digibytegaming.com/leaderboard?mode=daily
177  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: November 30, 2016, 06:00:57 PM
We have relaunched the developer mining pool http://digihash.co/ on new hardware with updated diff settings! We can use the help testing it out!  Let us know if you have any suggestions or issue.
178  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: DigiByte & League of Legends - How can we make DigiByte Gaming better? on: November 29, 2016, 09:49:19 AM
We just pushed some updates to fix some bugs people were exploiting. LOL & CSGO payouts plus tipping are now all working.  Thank you all for your support!
179  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: November 29, 2016, 09:47:20 AM
We want to let everyone know we pushed some updates to DigiByte Gaming to fix CSGO payouts as well as some other issues.  We have a lot of development underway with DiguSign and have some exciting announcements coming up in the next few weeks!
180  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★DigiByte|极特币★★[DGB]✔DigiByte Gaming - CS:GO, LoL, #DigiByteTip, DigiSpeed on: November 18, 2016, 10:07:39 AM
Check out the new DigiByte website! https://digibyte.co/  We will be adding more over the coming weeks.  Please let us know of any suggestions or issues you have. This new site will be much easier for us to keep updated and expand upon.
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 ... 135 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!