shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
January 26, 2017, 07:37:05 PM |
|
In 20 years there will be 20.000.000 Pascal accounts, isn't this a scalability problem in case of success ?
accounts going to be rare could be a future investment and for suome special digits like 666-66 or something
|
|
|
|
Biterion
Newbie
Offline
Activity: 38
Merit: 0
|
|
January 26, 2017, 07:43:23 PM |
|
can someone tell me about how to run with multiple RIG...? i have 3 RIG right now must be the same setting for "Miner Name" and "Private Key" ? thanks
|
|
|
|
|
prophetx
Legendary
Offline
Activity: 1666
Merit: 1010
he who has the gold makes the rules
|
|
January 26, 2017, 07:50:47 PM |
|
In 20 years there will be 20.000.000 Pascal accounts, isn't this a scalability problem in case of success ?
accounts going to be rare could be a future investment and for suome special digits like 666-66 or something that's more than enough for the select group of NWO illuminati and reptilians. just kidding. that might be an issue though perhaps it will result in a lot of people cloning it to be useful for select communities - for example most online games and banks don't have 20 million customers
|
|
|
|
l30z1n
Newbie
Offline
Activity: 46
Merit: 0
|
|
January 26, 2017, 07:51:40 PM |
|
Hashrate is getting too crazy to solo mine this coin, who wants to wait around for week just to find 1 block.
I tink party over for smal Rigs like me, look on the BlocjChain exolorer, It's starting to appear Miner Playload in Chinese.
|
|
|
|
cpuwar
Newbie
Offline
Activity: 43
Merit: 0
|
|
January 26, 2017, 07:52:46 PM |
|
Guys, just NAT your 4004 port and you will get more connections Is there any benefit for it? How is it better for mining? Thanks.
|
|
|
|
Biterion
Newbie
Offline
Activity: 38
Merit: 0
|
|
January 26, 2017, 07:53:18 PM |
|
thanks for your advised just change with IPV4 right ? i'll try
|
|
|
|
Hix
Legendary
Offline
Activity: 1971
Merit: 1036
|
|
January 26, 2017, 07:54:06 PM |
|
Can someone tell me where CUDAminer for Linux? I found only binaries for WIN.
|
|
|
|
MrJaekin
|
|
January 26, 2017, 08:01:20 PM |
|
thanks for your advised just change with IPV4 right ? i'll try Yep, the IP address of the computer running the wallet.
|
|
|
|
shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
January 26, 2017, 08:05:48 PM |
|
pass 100k sat again...i think we can expect 300-500k til weekend still time to buy see you at 1mil sat 30mins later we are nearly 150k do you remember crave? and this is new tech!
|
|
|
|
Mooncoin_Foundation
|
|
January 26, 2017, 08:31:19 PM |
|
Congratulations, Pascal! Good to see a mineable coin and not ICO in favor.
|
|
|
|
Feeniks
Newbie
Offline
Activity: 37
Merit: 0
|
|
January 26, 2017, 08:33:19 PM |
|
|
|
|
|
espressodelisi
|
|
January 26, 2017, 08:34:41 PM |
|
OpenCL miner is here!https://github.com/Vorksholk/PascalCoin-OpenCL/releases/download/v1.00/PascalCoin_OpenCL_ProxyMiner_v1.zipGetting about 550 MH/s on an RX 480 with stock clocks.For anyone thinking about CPU mining, an i7-5820k overclocked used to get about 8 MH/s. Instructions very similar to PascalCoin CUDA Proxy miner. Here they are: To use this miner:
1. You must already have PascalCoin installed. If you don't have it, download it from sourceforge here: https://sourceforge.net/projects/pascalcoin/. Once it is installed, run the PascalCoinWallet.exe provided in the download.
2. You must be using a 256-bit secp256k1 key. This is the default behavior of the PascalCoin wallet.
3. Your miner name must be exactly 8 characters long. The miner expects that the input is exactly 176 total bytes (which is achieved by using a secp256k1 key and a 10-character name) NOTE: NOT 10 like before! 8 characters, because the last two will be used to identify each GPU!
4. You must have RPC enabled in your client (any port of your choosing, default is 4009)
5. You must run the proxy miner (PascalProxyv2.jar) in the same directory as the PascalCoinCUDA_ProxyMiner_smXX.exe file you run (everything is where it needs to be if you just extract the provided zip). For most people, the host should be 127.0.0.1, and the port should be 4009. Enter the same 8-character miner name you put in your PascalCoin wallet.
6. Open one or more (one for each GPU) copy of PascalCoinOpenCL_ProxyMiner.exe by cd-ing to this directory in a command prompt, and running PascalCoinOpenCL_ProxyMiner.exe. The miner takes four arguments: device (d), platform (p), intensity (i), and cyclesize (c).
For example: PascalCoinOpenCL_ProxyMiner.exe d0 p0 i23 c50 would run the miner on platform 0, device 0, with an intensity of 23 and a cyclesize of 50.
Higher intensities are more demanding on the GPU. Additionally, too high of an intensity can cause the miner to actually decrease in effective hashrate.
The cyclesize has a minimal affect on hashrate generally.
Unless you have a special setup (like NVidia and AMD cards in the same system), your platform is probably 0. You can determine which platform and device to use from the output at the original miner's start.
You can also run the benchmark miner (in the Benchmark folder) to try out different devices and intensity/cyclesize arguments. If you are compiling from source and want to make the benchmark version instead of the normal mining version, comment out the lines responsible for writing to the datainXX.txt file, (optionally) change the header file you read from to a single name regardless of device name, change the line
printf("Found nonce: %08x T: %08x Hashrate: %.3f MH/s Total: %d\n", nonce, timestamp, (((((double)totalNonces) * 4 * 16 * 16 * 16 * 16) / (4)) / (((double)getTimeMillis() - start) / 1000)), totalNonces);
to
printf("Found nonce: %08x T: %08x Hashrate: %.3f MH/s Total: %d\n", nonce, timestamp, (((((double)totalNonces) * 4 * 16 * 8) / (4)) / (((double)getTimeMillis() - start) / 1000)), totalNonces); and modify the .cl code by changing the lines:
uint targetX = h0 & 0xFFFFFFFF; uint targetY = h1 & 0xF0000000; to uint targetX = h0 & 0xFFFFFF70; uint targetY = h1 & 0x00000000;
This essentially lets the code find nonces 512 times faster, and accounts for the 512-times-faster-sharerate by reducing how many hashes it expects each nonce solve to take by a factor of 512, while removing the overhead of writing files (since writing a few files a second may cause it to be slower).
If you notice your miner finding several of the same nonce, try lowering the intensity and/or cyclesize (because you're sending so much work to the GPU that it can't get a timestamp often enough, so it exhausts the 4-ish billion possible nonces (~4 GH), and starte repeating work).
any linux version planned? My 4 GPU rig is running linux and I'd like to try minin PASC on it.
|
|
|
|
PontiacGTX
Member
Offline
Activity: 71
Merit: 10
|
|
January 26, 2017, 08:36:23 PM |
|
I wonder if I close the miner do I lose the Pascalcoin it has mined? and i wonder why the pascal coin wallet client doesnt update how much it is on my balance?
|
▒ NOW token ▒ by ChangeNOW ▒ Get the WIN! ▒ ChangeNOW - an instant Non-custodial Exchange Service (( changenow.io ))
|
|
|
Raxitto
|
|
January 26, 2017, 08:38:15 PM |
|
yoo respect... that is an old school rally...and with perfect timing, after Btc went crazy in the new year, now Pascal launches to sky rocket.. first time i saw it, at poloniex was 11k sat, now is reaching the 140 sat, 2 days later. i m full of regrets of course... congrats for the ones, that were there from the begining..
|
|
|
|
paramind22
|
|
January 26, 2017, 08:38:25 PM |
|
I wonder if I close the miner do I lose the Pascalcoin it has mined? and i wonder why the pascal coin wallet client doesnt update how much it is on my balance?
This isn't like a pool, you need to find a block before you get any coins. Finding a block is based on luck and hashpower.
|
|
|
|
bazsy
Member
Offline
Activity: 94
Merit: 10
|
|
January 26, 2017, 08:39:06 PM |
|
Pool?
|
|
|
|
J1MmY9
Newbie
Offline
Activity: 43
Merit: 0
|
|
January 26, 2017, 08:41:58 PM |
|
PASCAL MINING PROFITABILITY CALCULATOR
Check the target. Currently its 30416083
Take the first 2 bits "30" and change from HEX into DEC and you get 48
Take
2^48= 281,474,976,710,656 hashes
Now look at the 3rd bit, its 4. Take 4 / 16 = 0.25
Take 0.25 * 281,474,976,710,656 = 70,368,744,177,664
Add that to the original 2^48
281,474,976,710,656 + 70,368,744,177,664 = 351,843,720,888,320 hashes on average to find 1 block.
If your farm is 1 GH/s
351,843,720,888,320 / 1,000,000,000 = 351,843.72088832 seconds to find a block
Or 5864 Minutes to find a block
Or 97 Hours to find a block
Or 4.07 Days to find a block.
-----------------------------------------------------------
How reliable is this? Also, in case of the 3rd bit is 'A' does that mean 10? Yeah so 175,921,860,444,160 + 2^48 = 457,396,837,154,816 So it moves up to 457,396.837154816 Seconds 7,623.2806192469333333333333333333 Minutes 127 Hours 5.30 Days All while based on the same 1Gh/s hashrate... I have 8740 MH / s. How much time goes block?
|
|
|
|
Nea Sandu
|
|
January 26, 2017, 08:42:07 PM |
|
Pool?
Plenty of them! Check back some pages
|
|
|
|
Jayjay04
Legendary
Offline
Activity: 1364
Merit: 1000
|
|
January 26, 2017, 08:44:50 PM |
|
FUCK MY LIFE !!!! Pascal explosion !!
|
|
|
|
|