Bitcoin Forum
June 17, 2024, 02:28:14 PM *
News: Voting for pizza day contest
 
   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 »
  Print  
Author Topic: [ANN] RealCoin REC – Coin closest to real money |Coin of the real life| Launched  (Read 58091 times)
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 09, 2013, 03:33:53 PM
 #101

Quote
0 addresses found from DNS seeds

Any suggestions?

It doesn't matter, you can connect and sync with the network.

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 09, 2013, 05:18:14 PM
 #102

Hello everyone,
we setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalk.org/index.php?action=profile;u=110964)

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 09, 2013, 05:18:30 PM
 #103

Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
MobGod
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile WWW
June 09, 2013, 06:46:56 PM
 #104

Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
RobRoy
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


View Profile
June 09, 2013, 08:23:37 PM
 #105

Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin

p2pool/networks.py

realcoin=math.Object(
        PARENT=networks.nets['realcoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=200,
        SPREAD=60,
        IDENTIFIER='e021a7b8c60244af'.decode('hex'),
        PREFIX='b6c0601991aa12a2'.decode('hex'),
        P2P_PORT=18889,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=18888,
        BOOTSTRAP_ADDRS='',
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

realcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=20002,
        ADDRESS_VERSION=60,
        RPC_PORT=20001,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'realcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 200*100000000 >> (height + 1)//4730400,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30,
        SYMBOL='REC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'realcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/realcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.realcoin'), 'realcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),
MobGod
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile WWW
June 09, 2013, 08:50:29 PM
 #106

Hello everyone,

We are glad to inform you that the fist p2pool for realcoin (also the second pool for realcoin) has been published at : http://coinminer.net:18888/.

Pool URL:   http://coinminer.net:18888
Username:   REC coin Address
Password:   Anything
Cgminer:   cgminer --scrypt -o coinminer.net:18888 -u yourRECaddress -p x --queue 0 -s 1


Just start to mining REC, you will love in it.
Want to share the code with me and I'll get another p2pool up asap? Robroy calling you out  Grin

p2pool/networks.py

realcoin=math.Object(
        PARENT=networks.nets['realcoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=200,
        SPREAD=60,
        IDENTIFIER='e021a7b8c60244af'.decode('hex'),
        PREFIX='b6c0601991aa12a2'.decode('hex'),
        P2P_PORT=18889,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=18888,
        BOOTSTRAP_ADDRS='',
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

realcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=20002,
        ADDRESS_VERSION=60,
        RPC_PORT=20001,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'realcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 200*100000000 >> (height + 1)//4730400,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30,
        SYMBOL='REC',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'realcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/realcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.realcoin'), 'realcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://coinminer.net:2750/chain/RealCoin/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

What fork are you using I'm having problems

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
MobGod
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile WWW
June 09, 2013, 09:01:05 PM
 #107

Hello everyone,
we setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalk.org/index.php?action=profile;u=110964)
Nice but my question for you is anything out there to figure out the next difficult and time until it changes?

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
torbank
Full Member
***
Offline Offline

Activity: 217
Merit: 100


View Profile
June 09, 2013, 09:35:02 PM
 #108

Quote
0 addresses found from DNS seeds

Any suggestions?

It doesn't matter, you can connect and sync with the network.

Well no, I can't, that's why I was looking at debug.log.
yugo23
Sr. Member
****
Offline Offline

Activity: 476
Merit: 252


View Profile
June 09, 2013, 10:03:09 PM
 #109

Looks promising. I'm switching to REC now.
yugo23
Sr. Member
****
Offline Offline

Activity: 476
Merit: 252


View Profile
June 09, 2013, 11:21:12 PM
 #110

Very satisfied so far. Switching all my miners to RealCoin.  Smiley
owsleybeatsbigcartel
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile WWW
June 09, 2013, 11:29:26 PM
 #111


Announcing RealCoin:

A new coin for your real life in the future world.
Still confused by so many alt coins? Don’t know which alt coin to mine or invest on? Want to have a real life coin which can be used directly in the future world? Want to find a coin which is closest to real life currency? Please come to REALCOIN-REC.

Our team are trying to develop a crypto virtual currency that can be used in the real life, not trying to replace current lawful currency, but trying to provide a supplementary coin for real money. You can also treat RealCoin as an important composition of your capital portfolio.

Come on join into RealCoin, you will be one of the first to own a piece of history.



official website:still under construction.

Specs:

- Algorithm: scrypt
- Block Time: 30 seconds- Enough time to minimize orphans but still provide almost instant transactions.
- 3 confirms per transaction
- Difficulty retargets every 6 hrs with accelerated diff adjustment in the beginning
- Total around 20 billion coins
- connection port is 20001, RPC-port 20002

Coin Generation:
From block 1 to 1079, 1000 coins per block. (First 1079 blocks had been premined for the purpose of activities on give away, promotion, encourage and reward, eg. for mining pools, block explorer, trading platform.);
From block 1080 to 2159, 1 coins per block;
From block 2160 to 3239, 2 coins per block;
From block 3240 to 4319, 4 coins per block;
From block 4320 to 5399, 8 coins per block;
From block 5400 to 6479, 16 coins per block
From block 6480 to 7559, 32 coins per block
From block 7560 to 8639, 64 coins per block
From block 7640 to 9719, 128 coins per block
Then 200 coins per block, and halves every 4730400 blocks (nearly 4.5 years).





Please donate here for giveaways, faucet, etc.
Donation RealCoin wallet address:
RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9


Download:

Windows Client Download:
http://sdrv.ms/19Mijxx
https://mega.co.nz/#!HQQ00IiJ!BvGYWSf8jsEaJ1DA2ZZuFARtuiUPxIRkOQeF68XRnC8


Github: https://github.com/realcoin/realcoin


Getting Started:

1. Start up realcoin-qt.exe, wait for it to load, then exit.
2. Put realcoin.conf in your c:/users/**yourcomputername**/appdata/roaming/realcoin, you can also use %appdata%/realcoin

realcoin.conf
listen=1
daemon=1
server=1
rpcuser=**Yourusername**
rpcpassword=**Yourpassword**
#addnode=199.119.207.66 #this addnode is not necessary as the network is quite stable now.

3. restart realcoin-qt.exe, and you should connect and sync.
4. prepare for solo mining: create a shortcut for realcoin-qt.exe, add -deamon -server parameters to the shortcut, then run realcoin-qt, or you can directly        run realcoind.exe
4. Launch cgminer or whatever mining program you like and begin mining.
      cgminer ex: cgminer.exe --scrypt -o localhost:20002 -u **yourusername** -p **password** (without **)

Pools
The first Pool: http://rec.ahmedbodiwala.tk/, fees is 1%, go to the getting start page to start mining in this pool. The ANN thread here: https://bitcointalk.org/index.php?topic=228293
so the winner of the 1st mining pool bounty is: ahmed_bodi https://bitcointalk.org/index.php?action=profile;u=85405, he will get 10k RECs.
The Second Pool: http://coinminer.net:18888/ is working now. Great thanks to RobRoy(https://bitcointalk.org/index.php?action=profile;u=110964), he will get 8k REC.

RealCoin Apps:
1. sealbomb: http://sealbomb.com/ now supports RECs, try your luck.

Block Explorer:
We setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalk.org/index.php?action=profile;u=110964)

We are very excited about this, and we hope all of you join us in making this a great success!

Sincerely,
RealCoin Team


Bounty Part:
1. REC giveaway for the first 1000 users who post their address in this thread: https://bitcointalk.org/index.php?topic=227185
2. 1st pool: 10k REC, 2nd pool: 8000 REC, 3nd pool: 6000 REC.
    1st pool winner: ahmed_bodi https://bitcointalk.org/index.php?action=profile;u=85405
3. block explorer for 10k REC.
4. bounty for developers:
    anyone who can give real good idea or advice to RealCoin and help to implement the functions will get some RECs, it depends on the importance of the function.
5. weekly lotto give away, started by ahmed_bodi: https://bitcointalk.org/index.php?topic=228293, REC dev team will provide some coins for the lotto.

thanls bud!~REC it worked >> here we are call us pioneers! Wink SUWUUU

anyway how can i promote for more REC ?>> hit the REC button!

RC6LRo5Cks1mq58nNuQEnFPF6DBrj35csx
torbank
Full Member
***
Offline Offline

Activity: 217
Merit: 100


View Profile
June 09, 2013, 11:49:50 PM
 #112

Anyone else having trouble connecting to the network?

I built from source, but neither the realcoind or the QT client are able to sync.
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 09, 2013, 11:53:22 PM
 #113

Anyone else having trouble connecting to the network?

I built from source, but neither the realcoind or the QT client are able to sync.

The network works fine, if you can't using the addnode part, I'll release a new node for you.

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 09, 2013, 11:56:27 PM
 #114

Anyone else having trouble connecting to the network?

I built from source, but neither the realcoind or the QT client are able to sync.

You can add node using this code:

addnode=198.211.17.160

in realcoin.conf

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
torbank
Full Member
***
Offline Offline

Activity: 217
Merit: 100


View Profile
June 09, 2013, 11:59:14 PM
 #115

Anyone else having trouble connecting to the network?

I built from source, but neither the realcoind or the QT client are able to sync.

You can add node using this code:

addnode=198.211.17.160

in realcoin.conf

That worked.

I was originally using the addnode from the first post.

Thanks!
MobGod
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile WWW
June 10, 2013, 12:09:25 AM
 #116

Dolfcao can you help me with my question about the difficulty?

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 10, 2013, 12:25:29 AM
 #117

Hello everyone,
we setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalk.org/index.php?action=profile;u=110964)
Nice but my question for you is anything out there to figure out the next difficult and time until it changes?

Er, this work should be done by RobRoy.

Have you setup your p2pool? If you set it up, you can add the function to show next diff and retarget time.

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
MobGod
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile WWW
June 10, 2013, 02:16:06 AM
 #118

Hello everyone,
we setup a block explorer for RealCoin(REC) at :
http://coinminer.net:2750/chain/RealCoin
Thanks to RobRoy (https://bitcointalk.org/index.php?action=profile;u=110964)
Nice but my question for you is anything out there to figure out the next difficult and time until it changes?

Er, this work should be done by RobRoy.

Have you setup your p2pool? If you set it up, you can add the function to show next diff and retarget time.
Was waiting on Rob to see what fork he's using to get it up and going

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
yugo23
Sr. Member
****
Offline Offline

Activity: 476
Merit: 252


View Profile
June 10, 2013, 04:49:59 AM
 #119

I hope we can have this soon.  Smiley Mining works like a charm, no problems at all compared to other coins.
dolfcao (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile WWW
June 10, 2013, 09:02:08 AM
 #120

I hope we can have this soon.  Smiley Mining works like a charm, no problems at all compared to other coins.

yeah, the mining pool is great.

RealCoin: RRUfzu9qeUU9qAeHJARpGVqDQsXEU7u4d9
RealCoin Mining Pool: www.realcoin.org:18888
My personal website: www.needdo.com
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 »
  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!