Bitcoin Forum
May 08, 2024, 12:09:22 PM *
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 »  All
  Print  
Author Topic: [ANN][X11][GOD] -- Godcoin the Divine Crypto-Currency used by the Gods.  (Read 41619 times)
gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
June 28, 2014, 05:34:52 PM
 #281

Vps Purchased.

4x intel E5 3.5GHZ+ core / 2GB RAM / 60GB SSD / 1GBPS Cogent upstream

1) Now need an official God p2pool name and Ill get the domain.

2) Need a working networks.py for p2pool dark x11

3) setup Extended P2pool Status page

4) Ddos protection goes live

5) First Official P2pool node for God coin goes live.
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715170162
Hero Member
*
Offline Offline

Posts: 1715170162

View Profile Personal Message (Offline)

Ignore
1715170162
Reply with quote  #2

1715170162
Report to moderator
1715170162
Hero Member
*
Offline Offline

Posts: 1715170162

View Profile Personal Message (Offline)

Ignore
1715170162
Reply with quote  #2

1715170162
Report to moderator
gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
June 28, 2014, 06:24:35 PM
 #282

Well there seems to be something wrong with the modified p2pool code. If anyone can help with P2Pool coding please reply here.

Im working on the modified x11 p2pool for god coin right now. Is a digital ocean droplet sufficient for a node ?

I'm not sure. If it isn't we could upgrade it to a more powerful droplet.



Is the copy of p2pool on your github working Dev ? Im almost done setting up the basic python packages and i am about to install the coin dameon.... only need p2pool assistance.
gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
June 28, 2014, 06:53:06 PM
 #283

bump
Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
June 28, 2014, 11:28:23 PM
 #284

Vps Purchased.

4x intel E5 3.5GHZ+ core / 2GB RAM / 60GB SSD / 1GBPS Cogent upstream

1) Now need an official God p2pool name and Ill get the domain.

2) Need a working networks.py for p2pool dark x11

3) setup Extended P2pool Status page

4) Ddos protection goes live

5) First Official P2pool node for God coin goes live.

Wow, thanks. Call it "Mount Olympus" (You know where the Greek Gods met and had their meetings).

Well there seems to be something wrong with the modified p2pool code. If anyone can help with P2Pool coding please reply here.

Im working on the modified x11 p2pool for god coin right now. Is a digital ocean droplet sufficient for a node ?

I'm not sure. If it isn't we could upgrade it to a more powerful droplet.



Is the copy of p2pool on your github working Dev ? Im almost done setting up the basic python packages and i am about to install the coin dameon.... only need p2pool assistance.

No, sorry the one on my github doesn't work.

Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
June 29, 2014, 02:34:47 AM
Last edit: June 29, 2014, 03:25:39 AM by Godcoin-Project
 #285

I'm not sure what I'm doing wrong but my P2Pool just gets stuck heres the error:

Code:
MyComputer@MyComputer:~/P2Pool$ python run_p2pool.py --net godcoin 
2014-06-29 11:28:55.042533 p2pool (version 34e81c2-dirty)
2014-06-29 11:28:55.042635
2014-06-29 11:28:55.042757 Testing bitcoind RPC connection to 'http://127.0.0.1:12700/' with username 'Hades'...
2014-06-29 11:28:55.057089     ...success!
2014-06-29 11:28:55.057188     Current block hash: 4a71bf43d9ae46388136af3c5e60c017184e25bab431b3bb867158b
2014-06-29 11:28:55.057274     Current block height: 681
2014-06-29 11:28:55.057337
2014-06-29 11:28:55.057421 Testing bitcoind P2P connection to '127.0.0.1:12701'...
2014-06-29 11:29:00.057807     ...taking a while. Common reasons for this include all of bitcoind's connection slots being used...

My p2pool/bitcoin/Networks.py:

Code:
    godcoin=math.Object(
        P2P_PREFIX='a3d5c2f9'.decode('hex'), #I think you get this from Main.cpp PchMessageStart[4] Remove the 0x
        P2P_PORT=12701, #These are the same ports as your coins
        ADDRESS_VERSION=38, #This should be the PUBKEY_ADDRESS:
        RPC_PORT=12700, #Same port as coins
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'godcoinaddress' in (yield bitcoind.rpc_help()) and #Just changed godcoinaddress
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),                          
        SUBSIDY_FUNC=lambda height: 7*100000000, #No. of coins rewareded per block * Satoshis (100,000,000)
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        BLOCK_PERIOD=600, #Seconds per block
        SYMBOL='GOD', #Coin Symbol in CAPS
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Godcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Godcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.godcoin'), 'godcoin.conf'), #.godcoin location in all operating systems
        BLOCK_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/block/', #Unofficial Block Explorer
        ADDRESS_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/address/',
        TX_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/tx/',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),

My /p2pool/networks.py

Code:
    godcoin=math.Object(
        PARENT=networks.nets['godcoin'],
        SHARE_PERIOD=60, # Seconds before you get rewarded shares. I was told that a good rule of thumb was 1/5 - 1/10 of block time.
        NEW_SHARE_PERIOD=60, # Same thing
        CHAIN_LENGTH=24*60*60//10, # How long the shares are held for
        REAL_CHAIN_LENGTH=24*60*60//10, # Same thing
        TARGET_LOOKBEHIND=200, # shares  //with that the pools share diff is adjusting faster, important if huge hashing power comes to the pool
        SPREAD=3, # How many blocks you can find in 10 mins * 3
        NEW_SPREAD=3, # blocks
        IDENTIFIER='7EAC63359BA9D8F9'.decode('hex'), # Confirmed, this is Random
        PREFIX='7F3E70CBFBCAF4AA'.decode('hex'), # Random as well
        P2P_PORT=12791, #Confirmed these are different to the Coin ports but it doesn't work
        MIN_TARGET=4,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False, # Most people say to set this to true
        WORKER_PORT=12790,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-god',
        VERSION_CHECK=lambda v: True,
    ),

My .godcoin/godcoin.conf

Code:
server=1
daemon=1
rpcport=12700
p2pport=12701
ipcallowip=127.0.0.1
rpcuser=Hades
rpcpassword=Hadespassword
addnode=162.243.151.67
addnode=192.241.184.85
addnode=188.226.248.45
addnode=128.199.165.180

Hope we can get this up and running soon.
gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
June 29, 2014, 03:15:26 AM
 #286

I'm not sure what I'm doing wrong but my P2Pool just gets stuck heres the error:

Code:
MyComputer@MyComputer:~/P2Pool$ python run_p2pool.py --net godcoin 
2014-06-29 11:28:55.042533 p2pool (version 34e81c2-dirty)
2014-06-29 11:28:55.042635
2014-06-29 11:28:55.042757 Testing bitcoind RPC connection to 'http://127.0.0.1:12700/' with username 'Hades'...
2014-06-29 11:28:55.057089     ...success!
2014-06-29 11:28:55.057188     Current block hash: 4a71bf43d9ae46388136af3c5e60c017184e25bab431b3bb867158b
2014-06-29 11:28:55.057274     Current block height: 681
2014-06-29 11:28:55.057337
2014-06-29 11:28:55.057421 Testing bitcoind P2P connection to '127.0.0.1:12701'...
2014-06-29 11:29:00.057807     ...taking a while. Common reasons for this include all of bitcoind's connection slots being used...

My p2pool/bitcoin/Networks.py:

Code:
    godcoin=math.Object(
        P2P_PREFIX='a3d5c2f9'.decode('hex'), #I think you get this from Main.cpp PchMessageStart[4] Remove the 0x
        P2P_PORT=12701, #These are the same ports as your coins
        ADDRESS_VERSION=38, #This should be the PUBKEY_ADDRESS:
        RPC_PORT=12700, #Same port as coins
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'godcoinaddress' in (yield bitcoind.rpc_help()) and #Just changed godcoinaddress
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),                           
        SUBSIDY_FUNC=lambda height: 7*100000000, #No. of coins rewareded per block * Satoshis (100,000,000)
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        BLOCK_PERIOD=600, #Seconds per block
        SYMBOL='GOD', #Coin Symbol in CAPS
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Godcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Godcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.godcoin'), 'godcoin.conf'), #.godcoin location in all operating systems
        BLOCK_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/block/', #Unofficial Block Explorer
        ADDRESS_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/address/',
        TX_EXPLORER_URL_PREFIX='http://www.coinexplorers.com/tx/',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),

My /p2pool/networks.py

Code:
    godcoin=math.Object(
        PARENT=networks.nets['godcoin'],
        SHARE_PERIOD=60, # Seconds before you get rewarded shares. I was told that a good rule of thumb was 1/5 - 1/10 of block time.
        NEW_SHARE_PERIOD=60, # Same thing
        CHAIN_LENGTH=24*60*60//10, # How long the shares are held for
        REAL_CHAIN_LENGTH=24*60*60//10, # Same thing
        TARGET_LOOKBEHIND=200, # shares  //with that the pools share diff is adjusting faster, important if huge hashing power comes to the pool
        SPREAD=3, # How many blocks you can find in 10 mins * 3
        NEW_SPREAD=3, # blocks
        IDENTIFIER='7EAC63359BA9D8F9'.decode('hex'), # Confirmed, this is Random
        PREFIX='7F3E70CBFBCAF4AA'.decode('hex'), # Random as well
        P2P_PORT=12791, #Confirmed these are different to the Coin ports but it doesn't work
        MIN_TARGET=4,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False, # Most people say to set this to true
        WORKER_PORT=12790,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-god',
        VERSION_CHECK=lambda v: True,
    ),

My .godcoin/godcoin.conf

Code:
server=1
daemon=1
rpcport=12700
p2pport=12701
ipcallowip=127.0.0.1
rpcuser=Hades
rpcpassword=Hadespassword
addnode=162.243.151.67
addnode=192.241.184.85
addnode=188.226.248.45
addnode=128.199.165.180

Hope we can get this up and running soon.

Okay im going to modify the current darkcoin x11 p2pool source from bitbucket.

https://bitbucket.org/dstorm/p2pool-drk

How are you generating the hex values required by p2pool ?
Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
June 29, 2014, 03:24:33 AM
 #287

Okay im going to modify the current darkcoin x11 p2pool source from bitbucket.

https://bitbucket.org/dstorm/p2pool-drk

How are you generating the hex values required by p2pool ?

The identifier and prefix are random. Just get a hex converter like this one. (Just type in 19 random characters)

The p2p_prefix is taken from "pchMessageStart[4]" from main.cpp
Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
June 30, 2014, 11:52:43 PM
 #288

Released Godcoin v1.0.1

Minor changes in the code
richpaner
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
July 01, 2014, 04:22:23 AM
 #289

Can't able to download windows walet..Guys could you tell me how can resolve it .?
Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
July 01, 2014, 04:32:02 AM
 #290

Can't able to download windows walet..Guys could you tell me how can resolve it .?


Sorry, we messed up the BBCode. It should work now. If it doesn't just go to the github and download it from the releases.
linked67
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
July 01, 2014, 06:46:18 AM
Last edit: July 01, 2014, 07:31:14 AM by linked67
 #291

P2PoolCoin.com
P2pool node for GodCoin

EU server: http://p2poolcoin.com:30255
Canada Server: http://ca.p2poolcoin.com:30255

Dedicated server
Xeon cpu
32Go ram
SSD
1Gbps


Fee: 1% ONLY !!!!
Next time, send me a PM on bitcointalk if you want a P2Pool  Wink

Edit:
Source code: https://github.com/linked67/p2pool-godcoin

P2Pool EU:http://p2poolcoin.com 1 % fees - Server dedicated Xeon, 32 Go Ram, Ssd, 1 Gbps - DarkCoin - HiroCoin - ExeCoin - GpuCoin - MyriadCoin Qubit - Muniti - RotoCoin - VertCoin - etc
Free Middlecoin Stats for Iphone on Apple Store:https://itunes.apple.com/us/app/middlecoin/id795238640?l=fr&ls=1&mt=8
Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
July 01, 2014, 06:59:36 AM
 #292

P2PoolCoin.com
P2pool node for GodCoin

EU server: http://p2poolcoin.com:30255
Canada Server: http://ca.p2poolcoin.com:30255

Dedicated server
Xeon cpu
32Go ram
SSD
1Gbps


Fee: 1% ONLY !!!!
Next time, send me a PM on bitcointalk if you want a P2Pool  Wink

Thanks!
altcoinherald
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile WWW
July 02, 2014, 02:45:57 PM
 #293

Godcoin (GOD) has been added to the Big List of Altcoin Trading Symbols - http://altcoinherald.com/altcoin-lists/list-alternative-cryptocurrency-trading-symbols/  Grin
followtheboss
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
July 02, 2014, 05:41:11 PM
 #294

Dev is still here ??

Thread seems dead since some days

No news ?


cheers

gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
July 02, 2014, 09:01:27 PM
 #295

P2PoolCoin.com
P2pool node for GodCoin

EU server: http://p2poolcoin.com:30255
Canada Server: http://ca.p2poolcoin.com:30255

Dedicated server
Xeon cpu
32Go ram
SSD
1Gbps


Fee: 1% ONLY !!!!
Next time, send me a PM on bitcointalk if you want a P2Pool  Wink

Thanks!

Adding second node now. Many thanks. No bounty for linked07?
becausePool
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile WWW
July 02, 2014, 09:03:55 PM
 #296



Wallet updated

https://becausepool.com/index.php?coin=god
stratum.becausepool.com:3382


Rent some x11 hash power at http://www.miningrigrentals.com/

https://becausepool.com 1% fee on all coins.
Custom MPOS with single account for all coins. NOMP stratum servers.
Follow us on twitter @becausePool for updates during launches
nikola384
Member
**
Offline Offline

Activity: 76
Merit: 10


View Profile
July 02, 2014, 09:13:48 PM
 #297

So,  God's coin is

X11 coin?

funny or said I do not know.

Godcoin-Project (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
July 02, 2014, 10:59:22 PM
 #298

P2PoolCoin.com
P2pool node for GodCoin

EU server: http://p2poolcoin.com:30255
Canada Server: http://ca.p2poolcoin.com:30255

Dedicated server
Xeon cpu
32Go ram
SSD
1Gbps


Fee: 1% ONLY !!!!
Next time, send me a PM on bitcointalk if you want a P2Pool  Wink

Thanks!

Adding second node now. Many thanks. No bounty for linked07?

Ill send him a bounty soon. Forgot about it  Wink


So,  God's coin is

X11 coin?

funny or said I do not know.

Yes Godcoin is a Proof of Work X11 Coin.
gitbknowsall
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
July 03, 2014, 12:21:50 AM
 #299

Dev just one issue im having with the


root@GOD-server:/home/godpool/godnode# ./godcoind getaccountaddress
terminate called after throwing an instance of 'std::runtime_error'
  what():  locale::facet::_S_create_c_locale name not valid
Aborted


the god node does not respond to any command... it does not have a wallet function ?
shimlbit
Legendary
*
Offline Offline

Activity: 1302
Merit: 1001



View Profile
July 03, 2014, 12:28:15 AM
 #300

godcoind getaccountaddress ""

without ./
try it
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 »  All
  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!