Bitcoin Forum
July 01, 2024, 07:47:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 282 »
  Print  
Author Topic: [ANN][The Original Multipool - Scrypt/SHA256/Scrypt-N/X11] multipool.us  (Read 424138 times)
Balthazar
Legendary
*
Offline Offline

Activity: 3108
Merit: 1359



View Profile
June 19, 2013, 11:06:56 AM
 #821

Quote
Last 30 Blocks Found - NVC
Block   Confirms   Finder   Time
27,351   12   mike270   2013-06-19 13:04:13

Congratulations Smiley
kslavik
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


GET IN - Smart Ticket Protocol - Live in market!


View Profile
June 19, 2013, 11:48:44 AM
 #822

.....Also I wondered if it was better to order the List having the worker names as keys then have the coins as values to workers? e.g
{"workers":{"name:"{"coin":{"key":"value"},"coin":{"key":"value"}}}}

Reversing Workers tables to Worker->Currency->Key:value,Key:Value, (from "Currency->worker->key:value,key:value) would work as well, with a difference that results will be grouped by workers first.

I think it is better to leave it as it is because sortable workers list per currency would make more sense than
sortable currencies list per worker. I know that we have only hashrate for each worker over there right now as a key:value, but once more values are added (# of shares, difficulty, etc) into the table per worker, sorting would only make sense within a currency.

If anyone interested, my Web-based API reader is right here http://json.karasoft.com with Multipool templates added:



               ████
             ███  ███
           ████     ███
         ███  ███    ███
       ████     ███    ███
     ███  ███     ███    ███
   ████     ███     ███   ██
 ███  ███     █████████████████
███     ███     ███           ██
 ███      ███     ██          ██
   ███      ██████████      ███
     ███      ██████      ███
       ███      ██      ███
         ███          ███
           ███      ███
             ███  ███
               ████

GUTS
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
smart-ticket protocol for events
live product with market traction!
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
  BTC ANN
  WEBSITE
  BLOG
   
  SANDBOX
  WHITEPAPER
  BOUNTY
   
acc85
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
June 19, 2013, 12:00:31 PM
 #823

.....Also I wondered if it was better to order the List having the worker names as keys then have the coins as values to workers? e.g
{"workers":{"name:"{"coin":{"key":"value"},"coin":{"key":"value"}}}}

Reversing Workers tables to Worker->Currency->Key:value,Key:Value, (from "Currency->worker->key:value,key:value) would work as well, with a difference that results will be grouped by workers first.

I think it is better to leave it as it is because sortable workers list per currency would make more sense than
sortable currencies list per worker. I know that we have only hashrate for each worker over there right now as a key:value, but once more values are added (# of shares, difficulty, etc) into the table per worker, sorting would only make sense within a currency.

If anyone interested, my Web-based API reader is right here http://json.karasoft.com with Multipool templates added:



hmm I noticed that in trc coin list of workers, there are more workers than there are in the other coins, I'm guessing those were deleted workers also included in the list?

Also just suggested the Worker->Currency->Key:value,Key:Value, cause in most miner monitors i've seen.. it's more of a case os seeing which worker is active than seeing what coin is being minerd by what miner, afterall. it is a worker list

Donation Addresses:
Bitcoin: 1K1W8eUyuFvX33KYCFYRgDVU8XXkNrh9hW
LiteCoin: LRHg4DqnMGK74wPpN3Y2mgmi1ZMXbWUGkc
kslavik
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


GET IN - Smart Ticket Protocol - Live in market!


View Profile
June 19, 2013, 12:49:17 PM
 #824

.....Also I wondered if it was better to order the List having the worker names as keys then have the coins as values to workers? e.g
{"workers":{"name:"{"coin":{"key":"value"},"coin":{"key":"value"}}}}

Reversing Workers tables to Worker->Currency->Key:value,Key:Value, (from "Currency->worker->key:value,key:value) would work as well, with a difference that results will be grouped by workers first.

I think it is better to leave it as it is because sortable workers list per currency would make more sense than
sortable currencies list per worker. I know that we have only hashrate for each worker over there right now as a key:value, but once more values are added (# of shares, difficulty, etc) into the table per worker, sorting would only make sense within a currency.

If anyone interested, my Web-based API reader is right here http://json.karasoft.com with Multipool templates added:


hmm I noticed that in trc coin list of workers, there are more workers than there are in the other coins, I'm guessing those were deleted workers also included in the list?

Also just suggested the Worker->Currency->Key:value,Key:Value, cause in most miner monitors i've seen.. it's more of a case os seeing which worker is active than seeing what coin is being minerd by what miner, afterall. it is a worker list
There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.
 
If only value inside the table would be "hash rate" per Currency/per worker, then table would look great if workers would be on Y axis and currencies on the X (I agree with you there):
Code:
              LTC   FTC     DGC    NVC    MNC
Worker 1       0     0       0      0     85.3
Worker 2       0     0       0      0     300.5

it would look like that internally:
Code:
{"worker1":{"coin 1":"hashrate","coin 2":"hashrate"}},
{"worker2":{"coin 1":"hashrate","coin 2":"hashrate"}}

On the other hand if there is more than 1 key:value pairs per worker/per currency, I would still like to see workers in the list (I know it will be several lists: one per currency), which would mean that Currencies should be first grouping parameter.

Multipool specific API reader would display values as they would think is the best (so either way would work), but I have a generic one (I display data as given to me by API), which makes me prefer Currency->Worker->key:value,key:value way.


               ████
             ███  ███
           ████     ███
         ███  ███    ███
       ████     ███    ███
     ███  ███     ███    ███
   ████     ███     ███   ██
 ███  ███     █████████████████
███     ███     ███           ██
 ███      ███     ██          ██
   ███      ██████████      ███
     ███      ██████      ███
       ███      ██      ███
         ███          ███
           ███      ███
             ███  ███
               ████

GUTS
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
smart-ticket protocol for events
live product with market traction!
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
  BTC ANN
  WEBSITE
  BLOG
   
  SANDBOX
  WHITEPAPER
  BOUNTY
   
acc85
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
June 19, 2013, 01:29:25 PM
 #825

.....Also I wondered if it was better to order the List having the worker names as keys then have the coins as values to workers? e.g
{"workers":{"name:"{"coin":{"key":"value"},"coin":{"key":"value"}}}}

Reversing Workers tables to Worker->Currency->Key:value,Key:Value, (from "Currency->worker->key:value,key:value) would work as well, with a difference that results will be grouped by workers first.

I think it is better to leave it as it is because sortable workers list per currency would make more sense than
sortable currencies list per worker. I know that we have only hashrate for each worker over there right now as a key:value, but once more values are added (# of shares, difficulty, etc) into the table per worker, sorting would only make sense within a currency.

If anyone interested, my Web-based API reader is right here http://json.karasoft.com with Multipool templates added:


hmm I noticed that in trc coin list of workers, there are more workers than there are in the other coins, I'm guessing those were deleted workers also included in the list?

Also just suggested the Worker->Currency->Key:value,Key:Value, cause in most miner monitors i've seen.. it's more of a case os seeing which worker is active than seeing what coin is being minerd by what miner, afterall. it is a worker list
There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.
 
If only value inside the table would be "hash rate" per Currency/per worker, then table would look great if workers would be on Y axis and currencies on the X (I agree with you there):
Code:
              LTC   FTC     DGC    NVC    MNC
Worker 1       0     0       0      0     85.3
Worker 2       0     0       0      0     300.5

it would look like that internally:
Code:
{"worker1":{"coin 1":"hashrate","coin 2":"hashrate"}},
{"worker2":{"coin 1":"hashrate","coin 2":"hashrate"}}

On the other hand if there is more than 1 key:value pairs per worker/per currency, I would still like to see workers in the list (I know it will be several lists: one per currency), which would mean that Currencies should be first grouping parameter.

Multipool specific API reader would display values as they would think is the best (so either way would work), but I have a generic one (I display data as given to me by API), which makes me prefer Currency->Worker->key:value,key:value way.

it wouldn't nessecarily need to look like:
Code:
{"worker1":{"coin 1":"hashrate","coin 2":"hashrate"}},
{"worker2":{"coin 1":"hashrate","coin 2":"hashrate"}}

afterall, it's just a JSON, rearranging the data into presentable data is simple enough, could easily be  {"worker1":{"coin 1":{"hashrate":value, "status":value},"coin 2":{"hashrate":value, "status":value}}}.

it's more aesthetics, not really important, as long as it hold the data it's fine. More importantly is the deleted workers still being retained in teh database or still being parsed to the JSON.

Donation Addresses:
Bitcoin: 1K1W8eUyuFvX33KYCFYRgDVU8XXkNrh9hW
LiteCoin: LRHg4DqnMGK74wPpN3Y2mgmi1ZMXbWUGkc
Zalfrin
Sr. Member
****
Offline Offline

Activity: 401
Merit: 250



View Profile
June 19, 2013, 03:59:42 PM
 #826

Is the donator list updated manually, just on a slow refresh, or... ? I bumped my donation up to 4% to be a "patron", but I'm not on the list after an hour or so. *shrug*
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 04:07:21 PM
 #827

I was trying to set donation to a fraction of a percent Wink but the form apparently reset it to 0. Hint Hint.

Try putting in a leading zero (i.e. "0.1" or "0.5") rather than just ".5".. 

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 04:07:30 PM
 #828

Quote
Last 30 Blocks Found - NVC
Block   Confirms   Finder   Time
27,351   12   mike270   2013-06-19 13:04:13

Congratulations Smiley

woohoo!

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 04:09:35 PM
 #829

Is the donator list updated manually, just on a slow refresh, or... ? I bumped my donation up to 4% to be a "patron", but I'm not on the list after an hour or so. *shrug*

Oops!  Bug in the stats..  I had originally planned to set patron at 5% but forgot to modify the SQL when I changed it to 4.  Thanks for reporting, you should be showing up now!

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 04:13:29 PM
 #830


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
acc85
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
June 19, 2013, 04:44:04 PM
 #831


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Donation Addresses:
Bitcoin: 1K1W8eUyuFvX33KYCFYRgDVU8XXkNrh9hW
LiteCoin: LRHg4DqnMGK74wPpN3Y2mgmi1ZMXbWUGkc
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 05:29:57 PM
 #832


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Check out api2.php and let me know what you think.

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
acc85
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
June 19, 2013, 05:43:41 PM
 #833

perfect! gonna start using API key instead

Donation Addresses:
Bitcoin: 1K1W8eUyuFvX33KYCFYRgDVU8XXkNrh9hW
LiteCoin: LRHg4DqnMGK74wPpN3Y2mgmi1ZMXbWUGkc
kslavik
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


GET IN - Smart Ticket Protocol - Live in market!


View Profile
June 19, 2013, 05:49:39 PM
 #834


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Check out api2.php and let me know what you think.

I would separate Multiport stats to a separate API call: apiMultiport.php (take out worker and pool data). There could be different frequency when those stats are needed, they would be on a different window/screen in the API reader most likely anyway.



               ████
             ███  ███
           ████     ███
         ███  ███    ███
       ████     ███    ███
     ███  ███     ███    ███
   ████     ███     ███   ██
 ███  ███     █████████████████
███     ███     ███           ██
 ███      ███     ██          ██
   ███      ██████████      ███
     ███      ██████      ███
       ███      ██      ███
         ███          ███
           ███      ███
             ███  ███
               ████

GUTS
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
smart-ticket protocol for events
live product with market traction!
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
  BTC ANN
  WEBSITE
  BLOG
   
  SANDBOX
  WHITEPAPER
  BOUNTY
   
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 07:33:11 PM
 #835


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Check out api2.php and let me know what you think.

I would separate Multiport stats to a separate API call: apiMultiport.php (take out worker and pool data). There could be different frequency when those stats are needed, they would be on a different window/screen in the API reader most likely anyway.


They're fairly inexpensive operations, and they're cached..  Are they breaking your reader?

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
flound1129 (OP)
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


www.multipool.us


View Profile
June 19, 2013, 07:46:41 PM
 #836


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Check out api2.php and let me know what you think.

I would separate Multiport stats to a separate API call: apiMultiport.php (take out worker and pool data). There could be different frequency when those stats are needed, they would be on a different window/screen in the API reader most likely anyway.



By the way, the display is different when there's no API key.  It just shows the hashrates for the various currencies.

Multipool - Always mine the most profitable coin - Scrypt, X11 or SHA-256!
kslavik
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


GET IN - Smart Ticket Protocol - Live in market!


View Profile
June 19, 2013, 08:51:13 PM
 #837


There is something wrong with worker deletion: wrong worker is deleted when I tried to delete one, and they are not completely gone from the database.

For some reason the TRC pool worker table was out of sync.  I synced it up with the others.

the api is perfect! .. good job.

Is there any way to get the current pool being mined via scrypt throught he api?

Check out api2.php and let me know what you think.

I would separate Multiport stats to a separate API call: apiMultiport.php (take out worker and pool data). There could be different frequency when those stats are needed, they would be on a different window/screen in the API reader most likely anyway.


They're fairly inexpensive operations, and they're cached..  Are they breaking your reader?

Nothing can break my reader: as long as it has valid JSON, it will display it.  Smiley

It is just a matter of preference: only request data which is relevant and needed at the moment. I have seen pools with many different API data sets. My app can display multiple popups directed to different API services, so I would rather have two small windows than one big one with a long scroll bar. Either way is fine in the end, especially of no additional resources is involved in generating those API responses.

What do other people think who are using APIs?




               ████
             ███  ███
           ████     ███
         ███  ███    ███
       ████     ███    ███
     ███  ███     ███    ███
   ████     ███     ███   ██
 ███  ███     █████████████████
███     ███     ███           ██
 ███      ███     ██          ██
   ███      ██████████      ███
     ███      ██████      ███
       ███      ██      ███
         ███          ███
           ███      ███
             ███  ███
               ████

GUTS
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
smart-ticket protocol for events
live product with market traction!
    ███
███
███
███
███
███
███
███
███
███
███
███
███
███
   
  BTC ANN
  WEBSITE
  BLOG
   
  SANDBOX
  WHITEPAPER
  BOUNTY
   
acc85
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
June 19, 2013, 09:02:12 PM
 #838

I think it's fine as it is so far Smiley .. I've seen worst Tongue..

Donation Addresses:
Bitcoin: 1K1W8eUyuFvX33KYCFYRgDVU8XXkNrh9hW
LiteCoin: LRHg4DqnMGK74wPpN3Y2mgmi1ZMXbWUGkc
nicksmith
Full Member
***
Offline Offline

Activity: 161
Merit: 100



View Profile
June 19, 2013, 10:04:34 PM
 #839

I think it's fine as it is so far Smiley .. I've seen worst Tongue..

I would rather make one http call than more, so I like api2.php with it just tagged on the end.

Great merged mining BTC pool at http://mmpool.bitparking.com/ my monitor site for it http://bitmonitor.usr.io/
Play on cex http://cex.usr.io my cex Android app http://cexapp.usr.io
SullyTex
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 20, 2013, 12:10:24 AM
 #840

Could you please check to see if I am generating anything?  Worker is SullyTex.4

Been hashing for the past hour and even found some blocks but nothing showing on the web page.  I even killed off and created a new worker to verify.

 cgminer version 3.2.0 - Started: [2013-06-19 17:48:30]
---------------------------------------------------------------------------
 (5s):111.8M (avg):211.8Mh/s | A:0  R:6  HW:0  U:0.0/m  WU:3.0/m
 ST: 2  SS: 0  NB: 229  LW: 1278  GF: 3  RF: 0
 Connected to multipool.in diff 32 with stratum as user SullyTex.4
 Block: 16f05bbf79dc9f30...  Diff:3  Started: [19:16:16]  Best share: 193
---------------------------------------------------------------------------
 [P]ool management [G]PU management ettings [D]isplay options [Q]uit
 GPU 0:  65.0C  53%    | 212.9M/212.0Mh/s | A:0 R:6 HW:0 U:0.00/m I:14
---------------------------------------------------------------------------

 [2013-06-19 19:13:21] Stratum from pool 0 detected new block
 [2013-06-19 19:13:32] Found block for pool 0!
 [2013-06-19 19:13:36] Stratum from pool 0 detected new block
 [2013-06-19 19:14:01] Stratum from pool 0 detected new block
 [2013-06-19 19:14:41] Stratum from pool 0 detected new block
 [2013-06-19 19:14:46] Stratum from pool 0 detected new block
 [2013-06-19 19:15:06] Stratum from pool 0 detected new block
 [2013-06-19 19:15:11] Stratum from pool 0 detected new block
 [2013-06-19 19:15:21] Stratum from pool 0 detected new block
 [2013-06-19 19:15:29] Found block for pool 0!
 [2013-06-19 19:15:40] Stratum from pool 0 detected new block
 [2013-06-19 19:15:45] Stratum from pool 0 detected new block
 [2013-06-19 19:16:16] Stratum from pool 0 detected new block
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 282 »
  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!