Bitcoin Forum
September 30, 2025, 11:12:08 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 »
1  Other / Archival / Re: [ANN] [PEEP COIN] GUARANTEED VALUE - FREE ICO!!! on: August 02, 2016, 03:34:31 AM
How does PEEP  GUARANTE its VALUE  Huh could you explain it ?
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ħ [HODL] Blockchain Pays You Interest. 0.43% Every Day on: June 11, 2016, 07:10:33 PM
When will the annual rate come to an end?I want to know.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MNM][LAUNCHED] MINEUM |x13| PoW STARTED on: June 11, 2016, 09:25:51 AM
A bigger exchange please
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: RISE | ICO OPEN | RECORDED VERSION OF "NEXT GENERATION ECONOMY" AVAILABLE on: June 11, 2016, 08:57:22 AM
@Dev,have you contacted poloniex or  bittrex to get Rise listed when ICO is over in 2 weeks?
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LTCR] Litecred - [QUBIT][8 MB][MINING][HYBRID POW/POS SUBSIDY] RELAUNCHED on: June 07, 2016, 05:18:29 PM
How can I mine LTCR? It seems there are no pools available right now
The olny way is to solo mine.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XNA]DeOxyRibose | Pure PoS | v2.3.0 | HARDFORK! | Masternodes Coming Soon. on: May 17, 2015, 07:50:47 AM
latest wallet + nodes + delete all the block files ,always stuck at block 2501,why???
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: May 15, 2015, 04:47:03 PM
We really need a big exchange right now. Cheesy
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: May 02, 2015, 10:31:50 PM
The net hashrate is pretty low,the network seems risky.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [RD] Red Wind. Mars Colonization. Launched. Algo=CryptoNight on: May 02, 2015, 10:31:08 PM
Ladies and gentlemen,

We have not disappeared, and coin is still operating, and we are working on some updates, too.

We would like to remind you all that we are not going to rush the development of the coin, because our final goal, the colonization of Mars, means that RD must be integrated in the human society, which does not live in such fast tempo as most cryptocurrencies do. So we try to synchronize the life of RD with the life of society, at least timewise.

Thank you for your attention and understanding.
What have you done over the past months? I haven't seen any progress for this coin.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [007] Stealth Addresses. PoW Phase. C-CEX/CRYPTSY. Masternodes. on: April 28, 2015, 03:58:49 PM
scrypt crap!!!!!  Wink
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: April 27, 2015, 01:40:19 PM
New cgminer-khc version 3.7.8 available

Changes/enhancements:

- Updated DLLs to the latest available versions.
- Added the "--secure" option to enhance security(*).

Download from here:
https://github.com/kryptohash/cgminer-khc/releases


(*)The Secure mode allows cgminer-khc to use HTTPS protocol for RPC calls but, unlike other miner software, cgminer-khc connects only to Wallets and Pools that present a "trusted" SSL Certificate.
Why is this important? Because not checking for trusted SSL Certificates opens the door to Man-In-The-Middle attacks, where an adversary (a.k.a. Hacker) could steal your credentials and even your coins.


How to enable Secure mode for Solo mining:

Note: This should only be used if cgminer-khc runs on a different computer than the Wallet.

1. Download OpenSSL for Windows ( https://www.openssl.org/related/binaries.html )


2. Use openSSL command lines below to create a Self-Signed SSL Certificate for the Computer running the Wallet.

  openssl genrsa -out server.pem 2048
  openssl req -new -x509 -nodes -sha256 -days 3650 -key server.pem > server.cert


3. Copy the server.pem and server.cert to your kryptohash/region0 folder


4. Edit the kryptohash.conf file and add/uncomment these lines:

  server=1
  rpcport=38912
  rpcuser=<YourSecretUser>
  rpcpassword=<YourSecretPassword>


5. Enable SSL/TLS in the Wallet

  rpcssl=1
  rpcsslciphers=TLSv1.2+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
  rpcsslcertificatechainfile=server.cert
  rpcsslprivatekeyfile=server.pem


6. Specify the IP address of the Computer where cgminer-khc will connect from.

  rpcallowip=192.168.1.1


7. Ensure the line below is commented out:

  #rpcconnect=127.0.0.1


8. Copy the server.cert file to the computer where cgminer-khc will run. Place the cert file inside the cgminer-khc-3.7.8 folder

9. Rename the server.cert file to cacert.pem or, append the content of server.cert to the end of the existing cacert.pem file.

10. Execute cgminer-khc using:

   cgminer --kryptohash --secure -o https://<IP-Address-Of-Your-Wallet>:38912 -u <YourSecretUser> -p <YourSecretPassword> --shaders 2048 --shaders-mul 8



How to enable Secure mode for Pools.

1. Ensure your Pool supports HTTPS for RPC calls.


2. Download the latest cacert.pem file available at the CURL website ( http://curl.haxx.se/docs/caextract.html ) and place the file inside the cgminer-khc-3.7.8 folder.


3. If your Pool doesn't have a SSL Certificate signed by a public CA, ask the Pool to provide you with a Self-Signed SSL Certificate in PEM format.


4. Edit the cacert.pem file and append the Self-Signed SSL Certificate provided by your the Pool at the end of cacert.pem.


5. Execute cgminer-khc using  

   cgminer --kryptohash --secure -o https://<Your-Pool-IP-Address>:<SSL port> -u <YourSecretUser> -p <YourSecretPassword> --shaders 2048 --shaders-mul 8




Is this miner faster than 3.7.7?
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: *ANN*【QUARK】 BitCrystal Coin + 200 new commands + decenttralized exchange on: April 26, 2015, 11:42:04 PM
 This market is in danger of de-listing due to low trade volume and lack of user interest. It may be removed on May 1st unless the average daily trade volume for the last 7 days exceeds 0.2 BTC. Angry Angry Angry
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: *ANN*【QUARK】 BitCrystal Coin + 200 new commands + decenttralized exchange on: April 26, 2015, 07:45:05 PM
i havent many experience with testnet.... but i promise that the exchange works and i currently do make a minecraft server with my plugins and i promise that i test its more witjh test bitcoins... and that the bitcoin and bitcrystal have all features for a decentralized excfhange then i have added commands to can see balance from multisig address without owned all privkeys you need only a one privkey... guys please accepted if you find buggs its was really hard works i have needed at least 13 hours per day developed on this exchange. Sometimes i developed a entire day on this exchange...
i do my best


Why i do that?

i hate people the are scammer, i hate laws the takes our freedom, i hate peoples the hitted baseless guys , the steal money, and i do my best do prevent all this...

i dont believe on god but i believe on karma ...

i belief that whatever you do comes back to you, e.g. if you do something good, something good will happen to you, and vice versa.

keep up the great work!  im buying and holding! 
BTCRY price is growing steady~  Grin
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [RD] Red Wind. Mars Colonization. Launched. Algo=CryptoNight on: April 26, 2015, 07:23:56 PM
Has the dev disspeared?  Huh
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: April 26, 2015, 03:58:48 PM
I'm buying KHC today at EmpoEX if anyone is interested. KHC really needs a good explorer. Developer should get a hold of https://chainz.cryptoid.info. They are reasonable on price and their explorer is extremely detailed and easy to use.
Yeah,chainz is a good BE.
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: April 22, 2015, 10:33:21 PM
The diff is only 28 now Angry
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: April 19, 2015, 09:22:02 AM
what's the status of android wallet development? Huh

It is finally coming along.  

Porting the existing BTC wallets to support all the KHC features (320bit hashes, ed25519 signatures, etc) has been harder than what I originally expected.  


Great !Can't wait to use the android wallet. Grin
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [RD] Red Wind. Mars Colonization. Launched. Algo=CryptoNight on: April 17, 2015, 11:22:35 AM
Anyone looking to buy 19,000,000 RedWind I'm accepting offers
we need an exchange  Wink
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: *ANN*【QUARK】 BitCrystal Coin + 200 new commands + decenttralized exchange on: April 17, 2015, 10:28:11 AM
The coin is not abondened. I am use almost all my freetime for the developing of my echange and the exhange must completed the last tests. Then I can published my last wallets + the exchange . The exhange is really good I have added many commands to the wallets for example getbalance_multisig . Yes you can see the balamce from the wallets without owned all the priv keys cool what
When will the exchange and new wallet be released?
BTCRY is dirt cheap now.  Sad Sad
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Kryptohash | Brand new PoW algo | 320bit hash | ed25519 | PID algo for dif on: April 17, 2015, 10:26:40 AM
what's the status of android wallet development? Huh
Pages: [1] 2 3 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!