Bitcoin Forum
May 14, 2024, 01:51:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 [267] 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 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 ... 433 »
  Print  
Author Topic: [PASC] PascalCoin: Induplicatable NFT  (Read 990665 times)
hannusolo
Sr. Member
****
Offline Offline

Activity: 434
Merit: 257


View Profile
February 21, 2017, 07:14:55 PM
 #5321

I've just asked nanopool about this. They said that they will add an account settings page where every miner can set up the minimum payout and public key.

Still waiting for this

Me too...
They said it's not ready yet. Sadly they didn't mentioned any deadline...
1715694685
Hero Member
*
Offline Offline

Posts: 1715694685

View Profile Personal Message (Offline)

Ignore
1715694685
Reply with quote  #2

1715694685
Report to moderator
1715694685
Hero Member
*
Offline Offline

Posts: 1715694685

View Profile Personal Message (Offline)

Ignore
1715694685
Reply with quote  #2

1715694685
Report to moderator
1715694685
Hero Member
*
Offline Offline

Posts: 1715694685

View Profile Personal Message (Offline)

Ignore
1715694685
Reply with quote  #2

1715694685
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715694685
Hero Member
*
Offline Offline

Posts: 1715694685

View Profile Personal Message (Offline)

Ignore
1715694685
Reply with quote  #2

1715694685
Report to moderator
Trololoh
Sr. Member
****
Offline Offline

Activity: 461
Merit: 250



View Profile
February 21, 2017, 08:13:30 PM
 #5322

Pascal frozen at POLO Huh
aqzu
Full Member
***
Offline Offline

Activity: 227
Merit: 100


View Profile
February 21, 2017, 08:22:19 PM
 #5323

Pascal frozen at POLO Huh

is people start to pump pascal again?
reffi
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
February 21, 2017, 09:27:45 PM
 #5324

looks like pascal moooning again!
MayDee
Member
**
Offline Offline

Activity: 84
Merit: 10



View Profile
February 21, 2017, 09:40:25 PM
 #5325

Pump confirmed  Grin
escapefrom3dom
Sr. Member
****
Offline Offline

Activity: 1932
Merit: 288



View Profile
February 21, 2017, 10:22:03 PM
 #5326

Pump confirmed  Grin

hold ur horses.  Cool

MrJaekin
Sr. Member
****
Offline Offline

Activity: 275
Merit: 258


View Profile
February 21, 2017, 11:17:34 PM
 #5327

OpenCL miner is here!

https://github.com/Vorksholk/PascalCoin-OpenCL/releases/download/v1.00/PascalCoin_OpenCL_ProxyMiner_v1.zip

Getting 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:

Code:
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).

I can't seem to get this miner to work... how do I run the proxy.jar file in Windows 10?  Any guide/help would be appreciated.
Mister305
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile WWW
February 21, 2017, 11:30:15 PM
 #5328

where the hell is my account number on this wallet!?!
escapefrom3dom
Sr. Member
****
Offline Offline

Activity: 1932
Merit: 288



View Profile
February 21, 2017, 11:39:09 PM
 #5329

where the hell is my account number on this wallet!?!

rtfm.
no offence.

set the checkbox «Explore accounts with one of my Wallet Keys».

and if u see no accounts than u've got none.

so u can mine or buy it.

oslak
Sr. Member
****
Offline Offline

Activity: 273
Merit: 250


View Profile
February 21, 2017, 11:48:19 PM
 #5330

OpenCL miner is here!

https://github.com/Vorksholk/PascalCoin-OpenCL/releases/download/v1.00/PascalCoin_OpenCL_ProxyMiner_v1.zip

Getting 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:

Code:
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).

I can't seem to get this miner to work... how do I run the proxy.jar file in Windows 10?  Any guide/help would be appreciated.

Install java for the proxy, and vcredist 32bit for the miner.
raphma
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
February 22, 2017, 12:32:00 AM
 #5331

i wouldn't trust in a altcoin pump when bitcoin is already pumping.... seems a little manipulated...
but pascal is great anyway, so i'm sure it's a good buy. just dont be worried if the price falls a little.
Skatebird
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
February 22, 2017, 02:34:59 AM
 #5332

i wouldn't trust in a altcoin pump when bitcoin is already pumping.... seems a little manipulated...
but pascal is great anyway, so i'm sure it's a good buy. just dont be worried if the price falls a little.

It means nothin, we never know in crypto world...

                  ▄█▄
              █████████
           ███    █    ███
       ████       █       ████
    ███           █           ███
████              █              ████
█████             ███             █████
██   ███         █████         ████  ██
██      ███▓    ██ █ ██     ███      ██
██         ██████  █  ██████         ██
██           █████ █ █████           ██
██          ██   █████   ██          ██
██         ██ ███  █  ███ ██         ██
██        ████     █     ████        ██
██     ███ ███     █     ███ ███     ██
██ ████       ████ █  ███       ████ ██
███              █████              ███
  ███             █             ███
     ████         █         ████
         ███      █      ████
            ████  █   ███
               ███████
                 ▀█▀














 
                  ▄█▄
              █████████
           ███    █    ███
       ████       █       ████
    ███           █           ███
████              █              ████
█████             ███             █████
██   ███         █████         ████  ██
██      ███▓    ██ █ ██     ███      ██
██         ██████  █  ██████         ██
██           █████ █ █████           ██
██          ██   █████   ██          ██
██         ██ ███  █  ███ ██         ██
██        ████     █     ████        ██
██     ███ ███     █     ███ ███     ██
██ ████       ████ █  ███       ████ ██
███              █████              ███
  ███             █             ███
     ████         █         ████
         ███      █      ████
            ████  █   ███
               ███████
                 ▀█▀

 














 
.
TELEGRAM
FACEBOOK
TWITTER
REDDIT

 














 
.
LINKEDIN
INSTAGRAM
GITHUB
BITCOINTALK
Aetsen
Full Member
***
Offline Offline

Activity: 188
Merit: 100


View Profile
February 22, 2017, 05:58:41 AM
 #5333

Anyone know what's going on with Nanopool? Workers not showing online, but hashing fine and finding blocks and people saying they have no payouts from nanopool in 20 hours.

derekis126
Sr. Member
****
Offline Offline

Activity: 306
Merit: 250


View Profile
February 22, 2017, 06:25:49 AM
 #5334

It is pretty good if you collect PASC sub 20000 sat, it was a bargain, and there is a small price correction, after this wave, I doubt it can go lower like 10000 sat.
cleverhope
Sr. Member
****
Offline Offline

Activity: 616
Merit: 252



View Profile
February 22, 2017, 10:31:47 AM
 #5335

make pascal great again. But as for me,i do not believe in it anymore. very dangerous coin. Especially it was strange, why polo frosed market yesterday.
zonefloor
Hero Member
*****
Offline Offline

Activity: 1862
Merit: 524


View Profile
February 22, 2017, 01:27:38 PM
 #5336

polo frosed market reason is PASC get new update.
escapefrom3dom
Sr. Member
****
Offline Offline

Activity: 1932
Merit: 288



View Profile
February 22, 2017, 08:25:39 PM
 #5337

polo frosed market reason is PASC get new update.

for now – everything is ok.

maybe even there are conditions for a new rising.

Meeseekz
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 22, 2017, 11:20:06 PM
 #5338

going to the moon again.

will reach 0.0003 easy today
gnargnar
Legendary
*
Offline Offline

Activity: 1111
Merit: 1000


crypto-enthusiast since 2012


View Profile
February 22, 2017, 11:35:34 PM
 #5339

I think we will have big fun $$
 Smiley
reffi
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
February 23, 2017, 12:06:32 AM
 #5340

Pascal needs marketplace to buy accounts and stuff, I will pay for account! Should be easier to use! Tongue
Pages: « 1 ... 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 [267] 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 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 ... 433 »
  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!