Pages:
Author

Topic: [ANN][FC] Fuguecoin - Fugue256 hash, Launched! NO PRE-M! CPU/GPU minable! - page 11. (Read 122098 times)

I_M
full member
Activity: 135
Merit: 100
That balance sheet doesn't show solo-mined coins.
hero member
Activity: 938
Merit: 1000
Found on Fuguecoin forum, by Mr Fuguecoin :

800,000 FC at 200sat well below market value (I though there wasn't any premine ? and you ask people to donate because you can't pay the bounty...)

That's really nice for all those who are mining your coin.


Where did you find this info? The biggest shareholder of Fuguecoin I think is our Lord Christian. If someone hold more than 60k Fuguecoin why it doesn't show in the blockchain?

Well a quick look at the coin: we are at block 28510 now, so 50coins / block that means 1.4Mil Fuguecoin is available.
If it were true that someone holds more than 800k fuguecoin, then we have in total 600k coins left in circulation.
At quick look at http://agran.net/fc_getbalance.php?top=100 shows that more than 600k already.

So anyone in the top 100 could confirm this information? I'm a bag holder too, holding just shy 10k coins.
full member
Activity: 126
Merit: 100
Found on Fuguecoin forum, by Mr Fuguecoin :

800,000 FC at 200sat well below market value (I though there wasn't any premine ? and you ask people to donate because you can't pay the bounty...)

That's really nice for all those who are mining your coin.


+100


Where ? link ? i see nothing.

In all case when i started to mine this coin, no 800k of FC was mined.
legendary
Activity: 1400
Merit: 1050
Found on Fuguecoin forum, by Mr Fuguecoin :

800,000 FC at 200sat well below market value (I though there wasn't any premine ? and you ask people to donate because you can't pay the bounty...)

That's really nice for all those who are mining your coin.
newbie
Activity: 50
Merit: 0
hero member
Activity: 910
Merit: 1000
1) Our coin is very necessary Block Explorer. I now pronounce the bounty for fist Block Explorer.
(Must be able to find the balance of addresses.)

Please send your donation to this address!
F6BrXLy16TmJqrdxDyUS9YfzZs3eFicwiF
All coins that we accumulate - I will send to the author of service.

Already donated:
agran - 50 FC
anon - 10 FC
azhago - 25 FC
dstorm - 50 FC
skwinx - 500 FC
Foss - 65 FC
hashnine - 100 FC
denned - 1000 FC (!!!)

Total: 1800 FC
sr. member
Activity: 420
Merit: 250
"Proof-of-Asset Protocol"
New pool:
https://cpu-pool.net/fugue/
Welcome...
Tested on testnet, work fine ...
Without fee due find first block...

Custom cpu miner.
GPU miner work fine...
Welcome ...
full member
Activity: 126
Merit: 100
1) Our coin is very necessary Block Explorer. I now pronounce the bounty for fist Block Explorer.
(Must be able to find the balance of addresses.)

Please send your donation to this address!
F6BrXLy16TmJqrdxDyUS9YfzZs3eFicwiF
All coins that we accumulate - I will send to the author of service.

Already donated:
agran - 50 FC
anon - 10 FC
azhago - 25 FC
dstorm - 50 FC
skwinx - 500 FC
Foss - 65 FC

Total: 700 FC

I added 100.
member
Activity: 98
Merit: 10
need Hash4 function in python for block explorer Sad
https://bitcointalksearch.org/topic/m.5881617

Block Hashes with python-fugue work fine, but wallet addresses generation/validation wrong and txid wrong Sad

full member
Activity: 125
Merit: 100
hero member
Activity: 910
Merit: 1000
1) Our coin is very necessary Block Explorer. I now pronounce the bounty for fist Block Explorer.
(Must be able to find the balance of addresses.)

Please send your donation to this address!
F6BrXLy16TmJqrdxDyUS9YfzZs3eFicwiF
All coins that we accumulate - I will send to the author of service.

Already donated:
agran - 50 FC
anon - 10 FC
azhago - 25 FC
dstorm - 50 FC
skwinx - 500 FC
Foss - 65 FC

Total: 700 FC
newbie
Activity: 69
Merit: 0

Hello FugueCoin Community.

We added FC to our voting poll.
You can vote for FC at coinano.com/vote

Our reward system will give a different and exciting experience.
Be online, trade safely&funny and always win !  
Happy trading !!



More Info  https://bitcointalksearch.org/topic/annnewexchangecoinanocom-cryptocurrency-exchange-market-launched-527950
Visit us   www.coinano.com
Follow us  https://twitter.com/Coinano




Nice! Thanks a lot, I hope we are able to get enought votes to trade on your exchange Smiley
full member
Activity: 126
Merit: 100
member
Activity: 98
Merit: 10
Code:
template
inline uint256 Hash4(const T1 p1begin, const T1 p1end,
                    const T2 p2begin, const T2 p2end)
{
    static unsigned char pblank[1];
    uint256 hash1;
    SHA256_CTX ctx;
    SHA256_Init(&ctx);
    SHA256_Update(&ctx, (p1begin == p1end ? pblank : (unsigned char*)&p1begin[0]), (p1end - p1begin) * sizeof(p1begin[0]));
    SHA256_Update(&ctx, (p2begin == p2end ? pblank : (unsigned char*)&p2begin[0]), (p2end - p2begin) * sizeof(p2begin[0]));
    SHA256_Final((unsigned char*)&hash1, &ctx);
    uint256 hash2;
    SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
    return hash2;
}

cant do it in python, maybe someone can help?)


Code:
anycoin code
template
inline uint256 Hash(const T1 pbegin, const T1 pend)
{
    static unsigned char pblank[1];
    uint256 hash1;
    SHA256((pbegin == pend ? pblank : (unsigned char*)&pbegin[0]), (pend - pbegin) * sizeof(pbegin[0]), (unsigned char*)&hash1);
    uint256 hash2;
    SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
    return hash2;
}

Python same code:
def double_sha256(s):
    return SHA256.new(SHA256.new(s).digest()).digest()

# Based on CBlock::BuildMerkleTree().
def merkle(hashes):
    while len(hashes) > 1:
        size = len(hashes)
        out = []
        for i in xrange(0, size, 2):
            i2 = min(i + 1, size - 1)
            out.append(double_sha256(hashes[i] + hashes[i2]))
        hashes = out
    return hashes and hashes[0]
full member
Activity: 196
Merit: 100
Coinano.com Digital Currency Exchange Platform

Hello FugueCoin Community.

We added FC to our voting poll.
You can vote for FC at coinano.com/vote

Our reward system will give a different and exciting experience.
Be online, trade safely&funny and always win !  
Happy trading !!



More Info  https://bitcointalksearch.org/topic/annnewexchangecoinanocom-cryptocurrency-exchange-market-launched-527950
Visit us   www.coinano.com
Follow us  https://twitter.com/Coinano


full member
Activity: 126
Merit: 100
im using the sgminer over at dwarfpool but im getting this error. Maybe an error at amd sdk. trying to use my friend unused 4870, quite old card but still working just fine.

Here is the error at line 39 of the fugue kernel



[14:30:58] Kernel fuguecoin is experimental.
[14:30:58] Building binary fuguecoinATI RV770glg2tc4032nf10w64l4.bin
[14:30:58] Error -11: Building Program (clBuildProgram)
[14:30:58] "./kernel/fugue.cl", line 33: error: storage-class specifiers
          extern/static/register not allowed for variables
  __constant static const sph_u32 IV224[] = {
             ^

"./kernel/fugue.cl", line 39: error: storage-class specifiers

[14:30:58] Failed to init GPU thread 0, disabling device 0
[14:30:58] Restarting the GPU from the menu will not fix this.
[14:30:58] Re-check your configuration and try restarting.
Press enter to continue:



maybe someone encounter this kind of error.

Upgrade your Catalyst driver maybe.
member
Activity: 83
Merit: 10
hero member
Activity: 910
Merit: 1000
Hey that's pretty cool but you don't see mined coins in the wallet, only received ?
For each new block creates a new address. If you want to see yourself in that list, then send all the coins at one address.
Pages:
Jump to: