Bitcoin Forum
May 03, 2024, 05:15:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 [176] 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 ... 555 »
  Print  
Author Topic: [ANN][DCR] Decred - Community Governance | Bitcoin Devs | Lightning Network  (Read 1201066 times)
ozboy2014
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
February 23, 2016, 02:58:45 AM
 #3501

polo should be soon..  Grin
1714713323
Hero Member
*
Offline Offline

Posts: 1714713323

View Profile Personal Message (Offline)

Ignore
1714713323
Reply with quote  #2

1714713323
Report to moderator
1714713323
Hero Member
*
Offline Offline

Posts: 1714713323

View Profile Personal Message (Offline)

Ignore
1714713323
Reply with quote  #2

1714713323
Report to moderator
1714713323
Hero Member
*
Offline Offline

Posts: 1714713323

View Profile Personal Message (Offline)

Ignore
1714713323
Reply with quote  #2

1714713323
Report to moderator
According to NIST and ECRYPT II, the cryptographic algorithms used in Bitcoin are expected to be strong until at least 2030. (After that, it will not be too difficult to transition to different algorithms.)
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714713323
Hero Member
*
Offline Offline

Posts: 1714713323

View Profile Personal Message (Offline)

Ignore
1714713323
Reply with quote  #2

1714713323
Report to moderator
1714713323
Hero Member
*
Offline Offline

Posts: 1714713323

View Profile Personal Message (Offline)

Ignore
1714713323
Reply with quote  #2

1714713323
Report to moderator
arielbit
Legendary
*
Offline Offline

Activity: 3416
Merit: 1059


View Profile
February 23, 2016, 03:11:45 AM
 #3502

polo should be soon..  Grin

yeah lol at people who are dumping, polo is a bigger market.
thefix
Legendary
*
Offline Offline

Activity: 1049
Merit: 1001



View Profile
February 23, 2016, 05:46:10 AM
 #3503

Finished adding the other half of the block header not shown earlier to the output of the tests - putting in the final XOR with input block stage of Blake-256 that I forgot about when testing, in order to make it a full Decred process that will work, and porting tests to match. Also changed protocol to something more Icarus-like, in preparation for CGMiner support, and changed some stuff in the core transform, helping me drop slices, making the design smaller.

Previously, slice usage was ~1,300 out of the LX9's 1,430. Dropped it to 1,205 in this latest synthesis, but that isn't yet enough free logic to allow me to speed it up yet, I don't think.

Sounds promising, do you expect similar kind of speeds compared to other Blake algo coins on FPGA devices? I am also curious if you are using a more modern readily available FPGA device?
decred (OP)
Full Member
***
Offline Offline

Activity: 156
Merit: 236



View Profile WWW
February 23, 2016, 05:56:12 AM
 #3504

Updated the OP text to reflect proof-of-stake (PoS) mining becoming active at block 4,096. The mainnet stake pool code underwent optimization and further testing today and is coming this week. The code will be made free and open-source software as well, so it will be really good to see if the project can work with others who are interested in becoming stake pool operators. You will be able to charge a nominal fee for doing so. It would be ideal to get at least 10 stake pools up and running to help decentralize the effort.
chrysophylax
Legendary
*
Offline Offline

Activity: 2814
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
February 23, 2016, 06:35:37 AM
 #3505

Finished adding the other half of the block header not shown earlier to the output of the tests - putting in the final XOR with input block stage of Blake-256 that I forgot about when testing, in order to make it a full Decred process that will work, and porting tests to match. Also changed protocol to something more Icarus-like, in preparation for CGMiner support, and changed some stuff in the core transform, helping me drop slices, making the design smaller.

Previously, slice usage was ~1,300 out of the LX9's 1,430. Dropped it to 1,205 in this latest synthesis, but that isn't yet enough free logic to allow me to speed it up yet, I don't think.

Sounds promising, do you expect similar kind of speeds compared to other Blake algo coins on FPGA devices? I am also curious if you are using a more modern readily available FPGA device?

Backstory is, this implementation was done simply because people kept telling me it couldn't be - the current public implementation of Blake-256 takes up 16k slices on a Spartan-6 LX150 - so it was definitely impossible to fit on an LX9. So I did. Performance is not going to be good on the LX9, of course - I'm using a Mojo v3 for testing. The real chip design is in developement, on my SoCKit - details on it here: http://www.terasic.com.tw/cgi-bin/page/archive.pl?Language=English&CategoryNo=165&No=816&PartNo=1 - for larger chips and targeting the most hashrate I can get out of it. It's got a Cyclone V FPGA and ARMv7 dual-core on the same chip, and 1GB of DDR3 connected to the ARMv7 side, with the other 1GB connected to the FPGA. It has TONS of wonderful things onboard to program - I've already played with the software side of it, compiling the kernel with Altera's patches, compiling the preloader and u-boot, and putting Arch Linux ARM on it - but now I'll be working with the FPGA more, and connecting the two together.

It can be a fully self-contained miner, too; here's just a short list of fun ideas I've had so far:
 - Using the onboard LCD to output hashrate
 - Reading temps off the sensor and displaying that
 - Connecting some of the buttons/switches to start/stop hashing
 - Lighting an LED when hashing is enabled and turning it off when disabled
 - LED flash on share found
 - Using hardware interrupts to notify the CPU of shares
 - Putting the ARMv7 into low-power mode while mining

The last two kind of help each other - you can signal an interrupt from the FPGA, and handle it in your own Linux kernel module, passing it to the userspace miner, and letting it check and submit, if need be. The advantage here is no need for polling, which reduces shit the CPU has to execute - add that to enabling the low-power state and it could be awesome.

this is where the proof of work will be in the mining capabilities ...

you are leaps ahead of people in the same arena - and if this was setup on a production basis - it would be able to make a huge sum of cash for you mate Wink ...

im in - where i can fit and where i can help with that ...

#crysx

thefix
Legendary
*
Offline Offline

Activity: 1049
Merit: 1001



View Profile
February 23, 2016, 06:58:15 AM
 #3506

Finished adding the other half of the block header not shown earlier to the output of the tests - putting in the final XOR with input block stage of Blake-256 that I forgot about when testing, in order to make it a full Decred process that will work, and porting tests to match. Also changed protocol to something more Icarus-like, in preparation for CGMiner support, and changed some stuff in the core transform, helping me drop slices, making the design smaller.

Previously, slice usage was ~1,300 out of the LX9's 1,430. Dropped it to 1,205 in this latest synthesis, but that isn't yet enough free logic to allow me to speed it up yet, I don't think.

Sounds promising, do you expect similar kind of speeds compared to other Blake algo coins on FPGA devices? I am also curious if you are using a more modern readily available FPGA device?

Backstory is, this implementation was done simply because people kept telling me it couldn't be - the current public implementation of Blake-256 takes up 16k slices on a Spartan-6 LX150 - so it was definitely impossible to fit on an LX9. So I did. Performance is not going to be good on the LX9, of course - I'm using a Mojo v3 for testing. The real chip design is in developement, on my SoCKit - details on it here: http://www.terasic.com.tw/cgi-bin/page/archive.pl?Language=English&CategoryNo=165&No=816&PartNo=1 - for larger chips and targeting the most hashrate I can get out of it. It's got a Cyclone V FPGA and ARMv7 dual-core on the same chip, and 1GB of DDR3 connected to the ARMv7 side, with the other 1GB connected to the FPGA. It has TONS of wonderful things onboard to program - I've already played with the software side of it, compiling the kernel with Altera's patches, compiling the preloader and u-boot, and putting Arch Linux ARM on it - but now I'll be working with the FPGA more, and connecting the two together.

It can be a fully self-contained miner, too; here's just a short list of fun ideas I've had so far:
 - Using the onboard LCD to output hashrate
 - Reading temps off the sensor and displaying that
 - Connecting some of the buttons/switches to start/stop hashing
 - Lighting an LED when hashing is enabled and turning it off when disabled
 - LED flash on share found
 - Using hardware interrupts to notify the CPU of shares
 - Putting the ARMv7 into low-power mode while mining

The last two kind of help each other - you can signal an interrupt from the FPGA, and handle it in your own Linux kernel module, passing it to the userspace miner, and letting it check and submit, if need be. The advantage here is no need for polling, which reduces shit the CPU has to execute - add that to enabling the low-power state and it could be awesome.

That SoCKit is pretty amazing and the price is not bad to boot

The Mojo 3 is a really inexpensive board for testing, I remember they thought about using it with VNL coin but it had really bad hash rates.

Sounds pretty exciting and I will be interested in your progress

What kind of power draw is the device pulling and how much do you expect to save in low-power mode?

Thanks again for the info and link to the SoCKit
Maicol792
Legendary
*
Offline Offline

Activity: 1260
Merit: 1010


View Profile
February 23, 2016, 08:02:09 AM
 #3507

Finished adding the other half of the block header not shown earlier to the output of the tests - putting in the final XOR with input block stage of Blake-256 that I forgot about when testing, in order to make it a full Decred process that will work, and porting tests to match. Also changed protocol to something more Icarus-like, in preparation for CGMiner support, and changed some stuff in the core transform, helping me drop slices, making the design smaller.

Previously, slice usage was ~1,300 out of the LX9's 1,430. Dropped it to 1,205 in this latest synthesis, but that isn't yet enough free logic to allow me to speed it up yet, I don't think.

Good work Wolf0 ... You arte a Legendary of optimization Smiley
kneim
Legendary
*
Offline Offline

Activity: 1666
Merit: 1000


View Profile
February 23, 2016, 09:01:54 AM
 #3508

Any guide for pos mining

If this shall be a question, take a look into the official decred forum: https://forum.decred.org/forums/proof-of-stake-mining/

bearex
Hero Member
*****
Offline Offline

Activity: 560
Merit: 501



View Profile
February 23, 2016, 10:18:52 AM
 #3509

Any ideas of the BIG buy order (50BTC) at about 0.004 mark at Bittrex? Also, what caused this increase in price and will it be permanent?
badam
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
February 23, 2016, 10:31:16 AM
 #3510

Any ideas of the BIG buy order (50BTC) at about 0.004 mark at Bittrex? Also, what caused this increase in price and will it be permanent?

The price rise was caused because of the fact that decred is a very promissing coin. Also never trade on suggestions made in forums or trollboxes. Do your research such kind of questions are useless because you will either get trolling responses either hyping responses. Do your research that's my best answer for such questions
badam
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
February 23, 2016, 10:34:18 AM
 #3511

As of 2016/2/12 there are left 2163 airdrop addresses unspent. ~27% of Airdrop receivers moved their coins
As of 2016/2/13 there are left 2143 airdrop addresses unspent. ~28% of Airdrop receivers moved their coins
As of 2016/2/14 there are left 2118 airdrop addresses unspent. ~29% of Airdrop receivers moved their coins
As of 2016/2/15 there are left 2093 airdrop addresses unspent. ~30% of Airdrop receivers moved their coins
As of 2016/2/16 there are left 2069 airdrop addresses unspent. ~30% of Airdrop receivers moved their coins
As of 2016/2/17 there are left 2051 airdrop addresses unspent. ~31% of Airdrop receivers moved their coins
As of 2016/2/18 there are left 2036 airdrop addresses unspent. ~31% of Airdrop receivers moved their coins
As of 2016/2/19 there are left 2034 airdrop addresses unspent. ~32% of Airdrop receivers moved their coins
As of 2016/2/20 there are left 2024 airdrop addresses unspent. ~32% of Airdrop receivers moved their coins
As of 2016/2/21 there are left 2017 airdrop addresses unspent. ~32% of Airdrop receivers moved their coins
As of 2016/2/22 there are left 2000 airdrop addresses unspent. ~33% of Airdrop receivers moved their coins
As of today 2016/2/23 there are left 1989 airdrop addresses unspent. ~33% of Airdrop receivers moved their coins

fenomenhaa
Sr. Member
****
Offline Offline

Activity: 248
Merit: 250



View Profile
February 23, 2016, 01:47:16 PM
 #3512

I have still same too much rejects,tried with different diff.



Uh time-too-new is the old bug of the first cgminer versions. Make sure you use the latest version from the decred github releases

Yeah new cgminer fixed it, but at this time what's this?it's look lile poolside error.


           ▄▀▀▀▄
   ▄▀▀▀▄   █   █   ▄▀▀▀▄
   █   █    ▀█▀    █   █
    ▀▀▀▀▄    ▀    ▄▀▀▀▀
DE]   ██▀▀▀█▄   ▀▀█   █
 ▀▀▀      ██▄▄▄█▀      ▀▀▀
        ▄   ▀ ▀   ▄
   ▄▀▀▀█     █     █▀▀▀▄
   █   █   ▄▀▀▀▄   █   █
    ▀▀▀    █   █    ▀▀▀
            ▀▀▀
          ▄▄█▄█▄[/color]
▄▀▀▀▄     ██   ██     ▄▀▀▀▄
█   █▀▀[color=#2C97
██████
██████
██████
██████
██████  ██████
██████  ██████
██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
✓  SUPER FAST TRANSACTION
✓  USER-FRIENDLY INTERFACE
✓  FAST & EASY REGISTRATION
▄██████
███▀▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄▄
▀██████
JOIN AFFILIATE PROGRAM
UP TO 50% COMMISSIONS
██████▄
▀▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄▄███
██████▀
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
February 23, 2016, 01:50:32 PM
 #3513

I have still same too much rejects,tried with different diff.



Uh time-too-new is the old bug of the first cgminer versions. Make sure you use the latest version from the decred github releases

Yeah new cgminer fixed it, but at this time what's this?it's look lile poolside error.


Did you try a higher diff port ? Looks like the pool isn't providing the work fast enough, yep.

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
fenomenhaa
Sr. Member
****
Offline Offline

Activity: 248
Merit: 250



View Profile
February 23, 2016, 02:28:04 PM
 #3514

@ocminer sure, already tried with diff 64 nothing change.


           ▄▀▀▀▄
   ▄▀▀▀▄   █   █   ▄▀▀▀▄
   █   █    ▀█▀    █   █
    ▀▀▀▀▄    ▀    ▄▀▀▀▀
DE]   ██▀▀▀█▄   ▀▀█   █
 ▀▀▀      ██▄▄▄█▀      ▀▀▀
        ▄   ▀ ▀   ▄
   ▄▀▀▀█     █     █▀▀▀▄
   █   █   ▄▀▀▀▄   █   █
    ▀▀▀    █   █    ▀▀▀
            ▀▀▀
          ▄▄█▄█▄[/color]
▄▀▀▀▄     ██   ██     ▄▀▀▀▄
█   █▀▀[color=#2C97
██████
██████
██████
██████
██████  ██████
██████  ██████
██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
██████  ██████  ██████
✓  SUPER FAST TRANSACTION
✓  USER-FRIENDLY INTERFACE
✓  FAST & EASY REGISTRATION
▄██████
███▀▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄▄
▀██████
JOIN AFFILIATE PROGRAM
UP TO 50% COMMISSIONS
██████▄
▀▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄▄███
██████▀
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
February 23, 2016, 02:40:18 PM
 #3515

@ocminer sure, already tried with diff 64 nothing change.

Okay I'll try to get some testing here done with my own rigs and let you know

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Iced
Full Member
***
Offline Offline

Activity: 627
Merit: 208


Belgian based crypto-enthusiast


View Profile
February 23, 2016, 03:44:19 PM
 #3516

I have still same too much rejects,tried with different diff.



Uh time-too-new is the old bug of the first cgminer versions. Make sure you use the latest version from the decred github releases

Yeah new cgminer fixed it, but at this time what's this?it's look lile poolside error.


Did you try a higher diff port ? Looks like the pool isn't providing the work fast enough, yep.

Try adding the following parameters to your launcher (or .bat)
--no-submit-stale --scan-time 2 --queue 0

No signature for now
qwep1
Hero Member
*****
Offline Offline

Activity: 610
Merit: 500


View Profile
February 23, 2016, 03:53:54 PM
 #3517

ocminer why it came with 8GH/s I got 8 coins for 24 hours and for 8 gh in hour I got 0.45 DCR why ?

              ▄▄██▄▄
          ▄▄██████████▄▄
      ▄▄██████████████████▄▄
  ▄▄██████████▀▀ ▀▀██████████▄▄
▄█████████▀▀          ▀▀█████████▄
██████▀▀        ▄▄        ▀▀██████
██████      ▄▄██████▄▄      ██████
██████    ██████████████    ██████
██████    ██████████████    ██████
██████    ██████████████    ██████
██████      ▀▀██████▀▀      ██████
██████          ▀▀        ▄▄██████
▀█████    ▄▄          ▄▄█████████▀
   ▀▀█    ████▄▄ ▄▄██████████▀▀
          ████████████████▀▀
          ▀▀██████████▀▀
              ▀▀██▀▀
P H O R E

     █
    █
   █
  █
   █
    █
   █
  █
 █
    KryptKoin rebranded to Phore   
     █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █
PoS 3.0  -  Masternodes  -  Obfuscation


     █
    █
   █
  █
   █
    █
   █
  █
 █
.


            ▄▄██▄▄
        ▄▄██████████▄▄
    ▄▄████████▀▀████████▄▄
 ▄████████▀▀      ▀▀████████▄
▐█████▀▀              ▀▀█████▌
▐████       ▄▄██▄▄       ████▌
▐████    ▄██████████▄    ████▌
▐████    ████████████    ████▌
▐████    ▀██████████▀    ████▌
▐████       ▀▀██▀▀       ████▌
 ▀███                 ▄▄█████▌
    ▀    █▄▄      ▄▄████████▀
         █████▄▄████████▀▀
         ▀██████████▀▀
            ▀▀██▀▀
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
February 23, 2016, 03:56:58 PM
Last edit: February 23, 2016, 04:07:51 PM by ocminer
 #3518

ocminer why it came with 8GH/s I got 8 coins for 24 hours and for 8 gh in hour I got 0.45 DCR why ?

Sorry I cannot understand your question, 8 GH/s for 24h should give about 9-10 coins when I compare with my rigs, maybe good or bad luck ? 0.45 per hour also estimates to about 10 coins per 24h so both results are pretty close to each other ?!

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
qwep1
Hero Member
*****
Offline Offline

Activity: 610
Merit: 500


View Profile
February 23, 2016, 04:11:37 PM
 #3519

ocminer why it came with 8GH/s I got 8 coins for 24 hours and for 8 gh in hour I got 0.45 DCR why ?

Sorry I cannot understand your question, 8 GH/s for 24h should give about 9-10 coins when I compare with my rigs, maybe good or bad luck ? 0.45 per hour also estimates to about 10 coins per 24h so both results are pretty close to each other ?!
what you config?

              ▄▄██▄▄
          ▄▄██████████▄▄
      ▄▄██████████████████▄▄
  ▄▄██████████▀▀ ▀▀██████████▄▄
▄█████████▀▀          ▀▀█████████▄
██████▀▀        ▄▄        ▀▀██████
██████      ▄▄██████▄▄      ██████
██████    ██████████████    ██████
██████    ██████████████    ██████
██████    ██████████████    ██████
██████      ▀▀██████▀▀      ██████
██████          ▀▀        ▄▄██████
▀█████    ▄▄          ▄▄█████████▀
   ▀▀█    ████▄▄ ▄▄██████████▀▀
          ████████████████▀▀
          ▀▀██████████▀▀
              ▀▀██▀▀
P H O R E

     █
    █
   █
  █
   █
    █
   █
  █
 █
    KryptKoin rebranded to Phore   
     █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █
PoS 3.0  -  Masternodes  -  Obfuscation


     █
    █
   █
  █
   █
    █
   █
  █
 █
.


            ▄▄██▄▄
        ▄▄██████████▄▄
    ▄▄████████▀▀████████▄▄
 ▄████████▀▀      ▀▀████████▄
▐█████▀▀              ▀▀█████▌
▐████       ▄▄██▄▄       ████▌
▐████    ▄██████████▄    ████▌
▐████    ████████████    ████▌
▐████    ▀██████████▀    ████▌
▐████       ▀▀██▀▀       ████▌
 ▀███                 ▄▄█████▌
    ▀    █▄▄      ▄▄████████▀
         █████▄▄████████▀▀
         ▀██████████▀▀
            ▀▀██▀▀
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
February 23, 2016, 04:14:54 PM
 #3520

ocminer why it came with 8GH/s I got 8 coins for 24 hours and for 8 gh in hour I got 0.45 DCR why ?

Sorry I cannot understand your question, 8 GH/s for 24h should give about 9-10 coins when I compare with my rigs, maybe good or bad luck ? 0.45 per hour also estimates to about 10 coins per 24h so both results are pretty close to each other ?!
what you config?

All 280x here .. all together about 10 GH/s  (9,5-10,2)

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Pages: « 1 ... 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 [176] 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 ... 555 »
  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!