Bitcoin Forum
June 25, 2024, 01:38:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 »
  Print  
Author Topic: [CENT] Pennies launched  (Read 135092 times)
shakezula
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
August 09, 2013, 03:56:04 AM
 #161

The Piggy Bank has been updated to 0.9.2 and now includes QR Code support.

https://andarazoroflove.org/pennies
sumantso
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
August 09, 2013, 07:04:05 AM
 #162

Good work fixing the new version Smiley
I was worried there for a minute as I had deleted the earlier version.

EDIT: Nope, same problem.

gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 09, 2013, 03:14:04 PM
 #163

Have a Pennies pool i'm testing at http://thec0de.com/pool

If you have issues with account (no email) - hit me up (contact info on site) and I'll unlock your account.

Payouts are non decimal points for CENT so manual payouts are disabled. Please set auto payout for 1 cent.

Any issues - please let me know Smiley

This is a scypt-jane coin so I recommend you use https://github.com/ali1234/cpuminer to mine Smiley

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
Fablio2
Sr. Member
****
Offline Offline

Activity: 464
Merit: 252



View Profile
August 09, 2013, 05:49:41 PM
 #164

Have a Pennies pool i'm testing at http://thec0de.com/pool
there is price on the pool "CENT/BTC: 0.00134000"
Is there any exchange for CENT's?
gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 09, 2013, 05:55:09 PM
 #165

Good Question - There is no public facing exchange available.

I am simply using the coinchoose API that was in the mmcfe_ng configs. It happened to pull that value, and I checked - it's not some other coin's exchange rate either Wink

Maybe coming soon  Shocked

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
sal002
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile WWW
August 09, 2013, 06:26:30 PM
 #166

Good Question - There is no public facing exchange available.

I am simply using the coinchoose API that was in the mmcfe_ng configs. It happened to pull that value, and I checked - it's not some other coin's exchange rate either Wink

Maybe coming soon  Shocked

You sure?  I am not sure how I can have a value if there is no exchange (and I don't think I have added Pennies to COinChoose yet).
gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 09, 2013, 06:46:10 PM
 #167

Good Question - There is no public facing exchange available.

I am simply using the coinchoose API that was in the mmcfe_ng configs. It happened to pull that value, and I checked - it's not some other coin's exchange rate either Wink

Maybe coming soon  Shocked

You sure?  I am not sure how I can have a value if there is no exchange (and I don't think I have added Pennies to COinChoose yet).
Well it's pulling it from somewhere. Haha no mal intent here - just clueless I suppose:

Code:
$config['currency'] = 'CENT';
$config['price']['url'] = 'http://www.coinchoose.com';
$config['price']['target'] = '/api.php';
$config['price']['currency'] = 'BTC';

and in mmcfe's header.tpl:
Code:
 # cat header.tpl                                                                                                                                                                                [11:43:48]
          <div id="siteinfo">{$GLOBAL.websitename}<br/>
            <span class="slogan">{$GLOBAL.slogan}</span>
          </div>
          <div id="ministats">
            <table border="0">
              <tr>
                {if $GLOBAL.config.price.currency}<td><li>{$GLOBAL.config.currency}/{$GLOBAL.config.price.currency}: {$GLOBAL.price|default:"0"|number_format:"8"}&nbsp;&nbsp;&nbsp;&nbsp;</li></td>{/if}
                <td><li>Network Hashrate: {($GLOBAL.nethashrate / 1000 / 1000 )|default:"0"|number_format:"3"} MH/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Hashrate: {($GLOBAL.hashrate / 1000)|number_format:"3"} MH/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Sharerate: {$GLOBAL.sharerate|number_format:"2"} Shares/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Workers: {$GLOBAL.workers|default:"0"}&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
              </tr>
            </table>
          </div>

I'm not too code savy - lemme know if you need me to post other portions of the mmcfe code - or you can check it out (as it's mostly defaults on backend stuff) on https://github.com/TheSerapher/php-mmcfe-ng

Maybe it's cached? I had it set up to do feathercoin as a test before pennies.

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
sal002
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile WWW
August 09, 2013, 07:28:47 PM
 #168

Good Question - There is no public facing exchange available.

I am simply using the coinchoose API that was in the mmcfe_ng configs. It happened to pull that value, and I checked - it's not some other coin's exchange rate either Wink

Maybe coming soon  Shocked

You sure?  I am not sure how I can have a value if there is no exchange (and I don't think I have added Pennies to COinChoose yet).
Well it's pulling it from somewhere. Haha no mal intent here - just clueless I suppose:

Code:
$config['currency'] = 'CENT';
$config['price']['url'] = 'http://www.coinchoose.com';
$config['price']['target'] = '/api.php';
$config['price']['currency'] = 'BTC';

and in mmcfe's header.tpl:
Code:
 # cat header.tpl                                                                                                                                                                                [11:43:48]
          <div id="siteinfo">{$GLOBAL.websitename}<br/>
            <span class="slogan">{$GLOBAL.slogan}</span>
          </div>
          <div id="ministats">
            <table border="0">
              <tr>
                {if $GLOBAL.config.price.currency}<td><li>{$GLOBAL.config.currency}/{$GLOBAL.config.price.currency}: {$GLOBAL.price|default:"0"|number_format:"8"}&nbsp;&nbsp;&nbsp;&nbsp;</li></td>{/if}
                <td><li>Network Hashrate: {($GLOBAL.nethashrate / 1000 / 1000 )|default:"0"|number_format:"3"} MH/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Hashrate: {($GLOBAL.hashrate / 1000)|number_format:"3"} MH/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Sharerate: {$GLOBAL.sharerate|number_format:"2"} Shares/s&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
                <td><li>Pool Workers: {$GLOBAL.workers|default:"0"}&nbsp;&nbsp;&nbsp;&nbsp;</li></td>
              </tr>
            </table>
          </div>

I'm not too code savy - lemme know if you need me to post other portions of the mmcfe code - or you can check it out (as it's mostly defaults on backend stuff) on https://github.com/TheSerapher/php-mmcfe-ng

Maybe it's cached? I had it set up to do feathercoin as a test before pennies.

Hmmm...looking at www.coinchoose.com/api.php - I don't see a "CENT" for the "symbol" field.  It might be pulling the Feathercoin one.
sal002
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile WWW
August 09, 2013, 07:37:17 PM
 #169

Yeah - it would take some debugging, but it looks like it is caching the price (or not parsing my feed correctly).  However, it is a bit curious why they are using my feed as my pricing is from publicly available APIS for Cryptsy, Coin-E, Vircurex, Crypto-Trade.  I am not upset, but seems to be better to go to the source Smiley

gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 09, 2013, 07:39:08 PM
 #170

Yeah - it would take some debugging, but it looks like it is caching the price (or not parsing my feed correctly).  However, it is a bit curious why they are using my feed as my pricing is from publicly available APIS for Cryptsy, Coin-E, Vircurex, Crypto-Trade.  I am not upset, but seems to be better to go to the source Smiley



Yours was listed as an option by someone I believe and merged in to git.

I also believe some other API's were changed which resulted in the need for alternative sources.

AND...your API is easy to work with maybe? I had the least issues using yours Wink

Thank you  Grin

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
y0m0
Newbie
*
Offline Offline

Activity: 20
Merit: 0



View Profile
August 09, 2013, 07:44:23 PM
 #171

Have a Pennies pool i'm testing at http://thec0de.com/pool

If you have issues with account (no email) - hit me up (contact info on site) and I'll unlock your account.

Payouts are non decimal points for CENT so manual payouts are disabled. Please set auto payout for 1 cent.

Any issues - please let me know Smiley

This is a scypt-jane coin so I recommend you use https://github.com/ali1234/cpuminer to mine Smiley

Trying to join your pool gr33k with no luck, when I try to register it says, email already in use which is weird. solved.
I would also love to understand how are we supposed to share the cents, whoever get it first keep it? or is there a
"temporary" bank in wich you store them and when a certain amount is collected you devide them based on the % of share
achieved by each worker?
sal002
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile WWW
August 09, 2013, 07:46:13 PM
 #172

Yeah - it would take some debugging, but it looks like it is caching the price (or not parsing my feed correctly).  However, it is a bit curious why they are using my feed as my pricing is from publicly available APIS for Cryptsy, Coin-E, Vircurex, Crypto-Trade.  I am not upset, but seems to be better to go to the source Smiley



Yours was listed as an option by someone I believe and merged in to git.

I also believe some other API's were changed which resulted in the need for alternative sources.

AND...your API is easy to work with maybe? I had the least issues using yours Wink

Thank you  Grin

That is fine.  We just may want to have the issue fixed here when the coin is not in my listing yet.  Plus, I consolidate all the other APIs for pricing Smiley
gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 09, 2013, 07:52:02 PM
 #173

try to join your pool gr33k with no luck, when I try to register it says, email already in use wich is weird.
I would also love to understand how are we supposed to share the cents, whoever get it first keep it? or is there a
"temporary" bank in wich you store them and when a certain amount is collected you devide them based on the % of share
achieved by each worker?
It's part of the test honestly - I propose to obtain it as decimals on backed ... and collect until you have 1 penny and it sends to you. Not sure if it will pan out that way Wink

Your account is unlocked now Smiley

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
auctioneeeeer (OP)
Sr. Member
****
Offline Offline

Activity: 305
Merit: 250


View Profile
August 10, 2013, 05:40:08 PM
 #174

Still steadily solo mining these successfully without client issues.  Would like to see these on an exchange soon. 
gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 10, 2013, 05:44:24 PM
 #175

Still steadily solo mining these successfully without client issues.  Would like to see these on an exchange soon. 

Auctioneer - what are you using to solo mine (just curious)

I've just recently got in to the scrypt-jane stuff, and have the pennies pool up but we don't seem to be getting any blocks.

Getting a lot of these on my minerd (with scrypt-jane):

[2013-08-10 10:36:42] thread 0: 10389 hashes, 0.35 khash/s
[2013-08-10 10:37:42] thread 0: 21035 hashes, 0.35 khash/s
[2013-08-10 10:38:42] thread 0: 20971 hashes, 0.35 khash/s
[2013-08-10 10:39:42] thread 0: 21071 hashes, 0.35 khash/s
[2013-08-10 10:39:57] thread 0: 5036 hashes, 0.35 khash/s
[2013-08-10 10:39:57] accepted: 0/18 (0.00%), 0.35 khash/s (booooo)

On pushpool end - nothing but getting work in the syslog...which looks ok I guess but no blocks solved.

We had some massive HASH power in the pool without any solved - which leads me to think something is wrong.

I tried pushpool forks like https://github.com/paul2112/pushpool but then I get only:

[2013-08-10 09:19:47] thread 0: 1 hashes, 0.31 khash/s
[2013-08-10 09:20:39] thread 0: 18327 hashes, 0.35 khash/s
[2013-08-10 09:21:39] thread 0: 20927 hashes, 0.35 khash/s
[2013-08-10 09:21:39] LONGPOLL detected new block
[2013-08-10 09:21:39] thread 0: 1 hashes, 0.31 khash/s
[2013-08-10 09:22:33] thread 0: 18751 hashes, 0.35 khash/s
[2013-08-10 09:22:33] LONGPOLL detected new block
[2013-08-10 09:23:33] thread 0: 21034 hashes, 0.35 khash/s
[2013-08-10 09:23:33] LONGPOLL detected new block
[2013-08-10 09:24:33] thread 0: 20854 hashes, 0.35 khash/s
[2013-08-10 09:25:33] thread 0: 20939 hashes, 0.35 khash/s

Not sure which one is better...lol

If anyone has some tips on pennies pooling - plz share Smiley

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
auctioneeeeer (OP)
Sr. Member
****
Offline Offline

Activity: 305
Merit: 250


View Profile
August 10, 2013, 06:21:02 PM
 #176

I am using the piggybank client on some E5-2680v2 Intel samples (10 Core).
shakezula
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
August 10, 2013, 06:52:21 PM
 #177

Still very low numbers of pennies in the wild. 1% stake at this point is 460 coins. I am willing to sell 2x 1.06% stakes (500 Pennies) at 2BTC each if anyone's buying them.

I will put the cost directly back in to my mining operation and VPS operations.
gr33k
Full Member
***
Offline Offline

Activity: 181
Merit: 101



View Profile
August 10, 2013, 07:39:06 PM
 #178

Still very low numbers of pennies in the wild. 1% stake at this point is 460 coins. I am willing to sell 2x 1.06% stakes (500 Pennies) at 2BTC each if anyone's buying them.

I will put the cost directly back in to my mining operation and VPS operations.

Any luck setting up a backend with pushpool or stratum? They seem to communicate to some extent...but block solving isn't happening I suspect.

I tried using https://github.com/paul2112/pushpool but it doesn't seem to work right either Sad

█≣≣≣MULTIVERSUM≣≣≣█▐4th GenerationRelational BlockchainPre-ICO-Starts on 01 March,2018 until 31 March 2018
        WHITE PAPER                  ANN THREAD                                        3rd part blockchain applications infrastructure
✔     Reddit     ✔     Medium     ✔     Facebook          Telegram     ✔     Twitter     ✔
achillez
Hero Member
*****
Offline Offline

Activity: 874
Merit: 1000


View Profile
August 11, 2013, 02:11:51 AM
 #179

So what's the eta of getting pennies on coins-e or cryptsy?
Rubberduckie
Legendary
*
Offline Offline

Activity: 1442
Merit: 1000



View Profile
August 11, 2013, 03:34:49 AM
 #180

I've got 294 for sale if anyone is buying


Cheers

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 »
  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!