Bitcoin Forum
May 08, 2024, 01:43:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Do you Accept Komodo ICO conversion vs Reject Komodo ICO conversion and fund new dev team?
Accept - 145 (68.7%)
Reject - 66 (31.3%)
Total Voters: 211

Pages: « 1 ... 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 [334] 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 ... 547 »
  Print  
Author Topic: BTCD is no more  (Read 1328438 times)
xtent
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 30, 2014, 08:59:05 PM
 #6661

Any news on Teleport?
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715132611
Hero Member
*
Offline Offline

Posts: 1715132611

View Profile Personal Message (Offline)

Ignore
1715132611
Reply with quote  #2

1715132611
Report to moderator
1715132611
Hero Member
*
Offline Offline

Posts: 1715132611

View Profile Personal Message (Offline)

Ignore
1715132611
Reply with quote  #2

1715132611
Report to moderator
mecus
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 30, 2014, 09:07:13 PM
 #6662

We can always use more volunteers to help us test SuperNET!

If you know your way around a command line and some makefiles, grab a vps and head over to
https://forum.thesupernet.org/index.php?topic=66.0 to help!

It will speed things up and you get to be on the cutting edge of the hottest new tech. in cryptocurrencies!  Smiley

Matthew

BTCD with supernet will make a sensation on the cryptocurrency world and of course market.

just can't wait.
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
September 30, 2014, 09:11:38 PM
Last edit: September 30, 2014, 09:55:48 PM by jl777
 #6663

I was able to compile libjl777 as a shared library and link it into BitcoinDarkd.

Here is how:

1. copy randombytes.o from the nacl build directory (nacl-20090405/build/<username>/<processortype>/lib) to btcd/src
2. change the LIBS line in makefile.unix to this:
  
Code:
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a -ljl777 libuv.a libnacl.a randombytes.o -lcurl -lm -ldl
3. create a new file in btcd/libjl777 called make_shared and paste this into it:
    
Code:
rm libjl777.so
rm /usr/lib/libjl777.so
gcc -shared -Wl,-soname,libjl777.so \
-o libjl777.so libjl777.o libtom/*.o \
picoc/*.o picoc/cstdlib/*.o picoc/platform/*.o \
libgfshare.o -lstdc++ -lc
mv libjl777.so /usr/lib
4. edit btcd/m_unix to this:
    
Code:
git pull
./BitcoinDarkd stop
cd libjl777
./clean
./m
cp libjl777.a libs
cd libuv
make
cp .libs/libuv.a ../libs
cd ..
cp libs/*.a ../src
./make_shared
cd ../src
rm BitcoinDarkd
make -f makefile.unix
rm ~/.BitcoinDark/debug.log
cp BitcoinDarkd ..
cd ..
./BitcoinDarkd


Let me know if it works for you. My CPU usage seems to be pretty high, not sure if this is causing that. If we can get this perfected, then future SuperNET upgrades can be made by simply replacing libj777.so in /usr/lib with the updated one instead of rebuilding BitcoinDarkd  Smiley
Is it running stable?
I was getting random malloc/free errors using a .so

works great!
I pushed a merged btcd repo

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
SHossain
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 30, 2014, 10:27:14 PM
 #6664

BitcoinDark Block Explorer http://explorebtcd.info gone Dark. Now with more juice.
Showing Stake Reward for each block.

Various API available to get your info.

Test with some value from below:

Code:
/api/block/[:hash]
/api/tx/[:txid]
/api/addr/[:addr][?noTxList=1]
/api/addr/[:addr]/utxo
/api/txs/?block=[:hash]
/api/txs/?address=[:hash]
/api/status?q=getInfo
/api/status?q=getDifficulty
/api/status?q=getLastBlockHash
usage: http://explorebtcd.info/api/status?q=getInfo

use any of the API method after the domain name & enjoy.
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
September 30, 2014, 11:19:54 PM
Last edit: September 30, 2014, 11:30:57 PM by cloudboy
 #6665

Any news on Teleport?

We recently began the process of open testing.  Teleport will be one of many new features available to BitcoinDark through the SuperNET integration.

I invite you to visit https://forum.thesupernet.org/index.php?topic=66.0 to view our testing progress.
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
September 30, 2014, 11:28:59 PM
 #6666

I was able to compile libjl777 as a shared library and link it into BitcoinDarkd.

Here is how:

1. copy randombytes.o from the nacl build directory (nacl-20090405/build/<username>/<processortype>/lib) to btcd/src
2. change the LIBS line in makefile.unix to this:
  
Code:
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a -ljl777 libuv.a libnacl.a randombytes.o -lcurl -lm -ldl
3. create a new file in btcd/libjl777 called make_shared and paste this into it:
    
Code:
rm libjl777.so
rm /usr/lib/libjl777.so
gcc -shared -Wl,-soname,libjl777.so \
-o libjl777.so libjl777.o libtom/*.o \
picoc/*.o picoc/cstdlib/*.o picoc/platform/*.o \
libgfshare.o -lstdc++ -lc
mv libjl777.so /usr/lib
4. edit btcd/m_unix to this:
    
Code:
git pull
./BitcoinDarkd stop
cd libjl777
./clean
./m
cp libjl777.a libs
cd libuv
make
cp .libs/libuv.a ../libs
cd ..
cp libs/*.a ../src
./make_shared
cd ../src
rm BitcoinDarkd
make -f makefile.unix
rm ~/.BitcoinDark/debug.log
cp BitcoinDarkd ..
cd ..
./BitcoinDarkd


Let me know if it works for you. My CPU usage seems to be pretty high, not sure if this is causing that. If we can get this perfected, then future SuperNET upgrades can be made by simply replacing libj777.so in /usr/lib with the updated one instead of rebuilding BitcoinDarkd  Smiley
Is it running stable?
I was getting random malloc/free errors using a .so

works great!
I pushed a merged btcd repo

Great, now we don't have to rebuild BitcoinDarkd when you update libjl777  Grin
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
October 01, 2014, 12:18:03 AM
 #6667

I was able to compile libjl777 as a shared library and link it into BitcoinDarkd.

Here is how:

1. copy randombytes.o from the nacl build directory (nacl-20090405/build/<username>/<processortype>/lib) to btcd/src
2. change the LIBS line in makefile.unix to this:
  
Code:
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a -ljl777 libuv.a libnacl.a randombytes.o -lcurl -lm -ldl
3. create a new file in btcd/libjl777 called make_shared and paste this into it:
    
Code:
rm libjl777.so
rm /usr/lib/libjl777.so
gcc -shared -Wl,-soname,libjl777.so \
-o libjl777.so libjl777.o libtom/*.o \
picoc/*.o picoc/cstdlib/*.o picoc/platform/*.o \
libgfshare.o -lstdc++ -lc
mv libjl777.so /usr/lib
4. edit btcd/m_unix to this:
    
Code:
git pull
./BitcoinDarkd stop
cd libjl777
./clean
./m
cp libjl777.a libs
cd libuv
make
cp .libs/libuv.a ../libs
cd ..
cp libs/*.a ../src
./make_shared
cd ../src
rm BitcoinDarkd
make -f makefile.unix
rm ~/.BitcoinDark/debug.log
cp BitcoinDarkd ..
cd ..
./BitcoinDarkd


Let me know if it works for you. My CPU usage seems to be pretty high, not sure if this is causing that. If we can get this perfected, then future SuperNET upgrades can be made by simply replacing libj777.so in /usr/lib with the updated one instead of rebuilding BitcoinDarkd  Smiley
Is it running stable?
I was getting random malloc/free errors using a .so

works great!
I pushed a merged btcd repo

Great, now we don't have to rebuild BitcoinDarkd when you update libjl777  Grin
but I only make a few hundred builds per week. is that too many?
Smiley

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
October 01, 2014, 05:55:45 AM
 #6668

Thanks to BTCDDev!

I am now able to build and test libjl777.so without having to rebuild BitcoinDarkd
what this means is that we can start to think about release candidate testing for BitcoinDarkd!

The first version can just have a disabled libjl777 so all it tests is the new multisig, PoS v2, API pass through support and various other improvements BTCDDev has added over the months.

this will allow us to upgrade the installed base that is ready for a dropin libjl777.so into the /usr/lib and the Windows and Mac equivalents.

Then as new SuperNET features are qualified for release, we can make releases for libjl777 independently of a new BitcoinDarkd

James

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
Breasal
Hero Member
*****
Offline Offline

Activity: 585
Merit: 500


View Profile
October 01, 2014, 08:46:06 AM
 #6669

Unable to get explorers working (for address balance). Anyone suggest which to use?
SHossain
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
October 01, 2014, 09:40:41 AM
 #6670

Did you check http://explorebtcd.info ?
david1365
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
October 01, 2014, 11:13:41 AM
 #6671

Cheap BTCD Grin
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
October 01, 2014, 12:20:10 PM
 #6672

Cheap BTCD Grin

Yes, I'm buying some as well  Grin
crackfoo
Legendary
*
Offline Offline

Activity: 3458
Merit: 1126



View Profile WWW
October 01, 2014, 12:40:54 PM
 #6673

The latest shift for the BitcoinDark Multipool paid out over 63 BTCD.

Cheers!

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
mecus
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
October 01, 2014, 01:35:57 PM
 #6674

Cheap BTCD Grin

Yes, I'm buying some as well  Grin

Me too  Grin
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
October 01, 2014, 02:17:20 PM
 #6675


I think the sellers must not be reading this thread showing progress on Teleport development  Wink
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
October 01, 2014, 02:49:26 PM
 #6676

Someone just scooped up a bunch on bittrex.  Shocked I wonder why?  Grin Grin
JimmyJones
Member
**
Offline Offline

Activity: 101
Merit: 100


View Profile
October 01, 2014, 02:53:59 PM
 #6677

Things are definetly comeing together, BTCDdev is doing a bang up job getting things ready to go for the teleport/supernet integration   Smiley

Some good reading on the progress being made in this thread as well....

https://forum.thesupernet.org/index.php?topic=66.0

JJ

FreakBro #2  AKA.... cardcoder
cloudboy
Hero Member
*****
Offline Offline

Activity: 690
Merit: 501


View Profile
October 01, 2014, 07:14:39 PM
 #6678

Things are definetly comeing together, BTCDdev is doing a bang up job getting things ready to go for the teleport/supernet integration   Smiley

Some good reading on the progress being made in this thread as well....

https://forum.thesupernet.org/index.php?topic=66.0

JJ

Yes, that thread is excellent reading  Smiley
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
October 01, 2014, 09:47:02 PM
 #6679

I pushed a version that automatically disables the SuperNET code if there is no SuperNET.conf
Since this is all in a dynamic .so file, it means we can start making a SuperNET ready BitcoinDarkd release.

I think there are the build issues for Windows and Mac and maybe a few other things. We can start a release test cycle for BitcoinDarkd

James

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
Googlulinks
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000


View Profile
October 01, 2014, 11:10:15 PM
 #6680

Hello guys. Could anyone help me?

I am not able to synchronize the wallet.

Put the file (. Conf) and still does not sync. Does anyone know how to solve the problem?

Thanks
Pages: « 1 ... 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 [334] 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 ... 547 »
  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!