Forum Home
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    UFO Coin Relaunched with some help from Bushstar

    Feathercoin Discussion
    10
    27
    30258
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ChekaZ
      ChekaZ last edited by

      Ive setup a pool for this coin:

      http://ufo.chekazpools.com

      Regards,

      ChekaZ

      BTC: 1Ges1taJ69W7eEMbQLcmNGnUZenBkCnn45
      FTC: 6sxjM96KMZ7t4AmDTUKDZdq82Nj931VQvY

      1 Reply Last reply Reply Quote 1
      • xonar
        xonar Regular Member last edited by

        Dowloaded the Bushstar ufo wallet, I’m syncing now… connected to only one other peer. :)
        Really pioneer. :)

        Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

        1 Reply Last reply Reply Quote 0
        • P
          prensel Regular Member last edited by

          can someone supply me the networks.py settings for setting up a p2pool server ?

          1 Reply Last reply Reply Quote 0
          • Bushstar
            Bushstar last edited by

            Not getting that much traction yet on BitcoinTalk.

            https://bitcointalk.org/index.php?topic=658117.0

            At least we will have another NeoScrypt buddy when the time comes and it has been a fun project to work on.

            can someone supply me the networks.py settings for setting up a p2pool server ?

            I’m not a pool person but what details do you need to make this work?

            Donate: 6hf9DF8H67ZEoW9KmPJez6BHh4XPNQSCZz

            1 Reply Last reply Reply Quote 0
            • Wellenreiter
              Wellenreiter Moderators last edited by

              Not getting that much traction yet on BitcoinTalk.

              https://bitcointalk.org/index.php?topic=658117.0

              At least we will have another NeoScrypt buddy when the time comes and it has been a fun project to work on.

              I’m not a pool person but what details do you need to make this work?

              Bushstar, I’ll send you a mail with the feathercoin sections of the p2pool networks.py

              I think, it should be no big problem for you to adapt it to Ufo

              Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
              Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

              1 Reply Last reply Reply Quote 0
              • Bushstar
                Bushstar last edited by

                Seems like someone set up a P2Pool before.

                    ufo=math.Object(
                        PARENT=networks.nets['ufo'],
                        SHARE_PERIOD=15, # seconds target spacing
                        CHAIN_LENGTH=12*60*60//15, # shares
                        REAL_CHAIN_LENGTH=12*60*60//15, # shares
                        TARGET_LOOKBEHIND=20, # shares coinbase maturity
                        SPREAD=50, # blocks
                        IDENTIFIER='fc656266636f696e'.decode('hex'),
                        PREFIX='fe636e696e6c656a'.decode('hex'),
                        P2P_PORT=18720,
                        MIN_TARGET=0,
                        MAX_TARGET=2**256//2**20 - 1,
                        PERSIST=False,
                        WORKER_PORT=19720,
                        BOOTSTRAP_ADDRS='dutchpool.org'.split(' '),
                        ANNOUNCE_CHANNEL='#p2pool-alt',
                        VERSION_CHECK=lambda v: True,
                    )
                

                https://github.com/Spekske/p2pool-rav/blob/master/p2pool/networks.py

                ufo=math.Object(
                	P2P_PREFIX='fcd9b7dd'.decode('hex'), #pchmessagestart
                	P2P_PORT=9887,
                	ADDRESS_VERSION=27, #pubkey_address
                	RPC_PORT=9888,
                	RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
                	'ufo address' in (yield bitcoind.rpc_help()) and
                	not (yield bitcoind.rpc_getinfo())['testnet']
                	)),
                	SUBSIDY_FUNC=lambda height: 5000*100000000,
                	POW_FUNC=lambda data: pack.IntType(256).unpack(import('ltc_scrypt').getPoWHash(data)),
                	BLOCK_PERIOD=90, # s
                	SYMBOL='UFO',
                	CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'ufo')
                	if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/ufo/')
                	if platform.system() == 'Darwin' else os.path.expanduser('~/.ufo'), 'ufo.conf'),
                	BLOCK_EXPLORER_URL_PREFIX='http://cryptexplorer.com/block/',
                	ADDRESS_EXPLORER_URL_PREFIX='http://cryptexplorer.com/address/',
                	TX_EXPLORER_URL_PREFIX='http://cryptexplorer.com/tx/',
                	SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
                	DUMB_SCRYPT_DIFF=2**16,
                	DUST_THRESHOLD=0.03e8,
                    )
                

                https://github.com/Spekske/p2pool-rav/blob/master/p2pool/bitcoin/networks.py

                The thing to note is that these values will change after the upcoming hard fork. I think you need to be ready to change them at the point when the fork goes live.

                Donate: 6hf9DF8H67ZEoW9KmPJez6BHh4XPNQSCZz

                1 Reply Last reply Reply Quote 0
                • C
                  ckfree5 last edited by

                  Having a second coin with Neoscrypt that much early makes it even more easier for multipools to add Neoscrypt coins

                  1 Reply Last reply Reply Quote 0
                  • wrapper
                    wrapper Moderators last edited by

                    Seems like someone set up a P2Pool before.

                        ufo=math.Object(
                            PARENT=networks.nets['ufo'],
                            SHARE_PERIOD=15, # seconds target spacing
                            CHAIN_LENGTH=12*60*60//15, # shares
                            REAL_CHAIN_LENGTH=12*60*60//15, # shares
                            TARGET_LOOKBEHIND=20, # shares coinbase maturity
                            SPREAD=50, # blocks
                            IDENTIFIER='fc656266636f696e'.decode('hex'),
                            PREFIX='fe636e696e6c656a'.decode('hex'),
                            P2P_PORT=18720,
                            MIN_TARGET=0,
                            MAX_TARGET=2**256//2**20 - 1,
                            PERSIST=False,
                            WORKER_PORT=19720,
                            BOOTSTRAP_ADDRS='dutchpool.org'.split(' '),
                            ANNOUNCE_CHANNEL='#p2pool-alt',
                            VERSION_CHECK=lambda v: True,
                        )
                    

                    https://github.com/Spekske/p2pool-rav/blob/master/p2pool/networks.py

                    ufo=math.Object(
                    	P2P_PREFIX='fcd9b7dd'.decode('hex'), #pchmessagestart
                    	P2P_PORT=9887,
                    	ADDRESS_VERSION=27, #pubkey_address
                    	RPC_PORT=9888,
                    	RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
                    	'ufo address' in (yield bitcoind.rpc_help()) and
                    	not (yield bitcoind.rpc_getinfo())['testnet']
                    	)),
                    	SUBSIDY_FUNC=lambda height: 5000*100000000,
                    	POW_FUNC=lambda data: pack.IntType(256).unpack(import('ltc_scrypt').getPoWHash(data)),
                    	BLOCK_PERIOD=90, # s
                    	SYMBOL='UFO',
                    	CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'ufo')
                    	if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/ufo/')
                    	if platform.system() == 'Darwin' else os.path.expanduser('~/.ufo'), 'ufo.conf'),
                    	BLOCK_EXPLORER_URL_PREFIX='http://cryptexplorer.com/block/',
                    	ADDRESS_EXPLORER_URL_PREFIX='http://cryptexplorer.com/address/',
                    	TX_EXPLORER_URL_PREFIX='http://cryptexplorer.com/tx/',
                    	SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
                    	DUMB_SCRYPT_DIFF=2**16,
                    	DUST_THRESHOLD=0.03e8,
                        )
                    

                    https://github.com/Spekske/p2pool-rav/blob/master/p2pool/bitcoin/networks.py

                    The thing to note is that these values will change after the upcoming hard fork. I think you need to be ready to change them at the point when the fork goes live.

                    There is a worse problems in “changing values” in P2pool settings than the hard fork. There is no easy way to get everyone to upgrade and leave forked p2pools. A lot of p2pool can be private.

                    I see in February, Dogecoin were proposing adding “meta layer” above p2pool with different pool payout settings (longer stratum times, due to compensate shortened block times) as a solution to the upgrade difficulty.

                    1 Reply Last reply Reply Quote 0
                    • lizhi
                      lizhi last edited by

                      Hi Bushstar, I think create a UFO address in FTC wallet. I can accept UFO in FTC wallet with a payment gateway.

                      Will be able to do it ?

                      %E6%80%9D%E8%80%83.jpg

                      1 Reply Last reply Reply Quote 0
                      • Wellenreiter
                        Wellenreiter Moderators last edited by

                        Hi Lizhi,

                        I think, the address headers for UFO are different, so a FTC wallet will not allow to import an UFO address.

                        Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                        Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                        1 Reply Last reply Reply Quote 0
                        • lizhi
                          lizhi last edited by

                          I ask other people in NXT forum. We can realize it.

                          First of all, we want to build a server network, They are gateway. They are responsible for processing deposits and withdrawals.You can send any coin,eg:BTC or NXT. We use gateway client for deposits and withdrawals.Everyone can set up gateway server. Thus, the evolution of the coin, The establishment of a coin applications and trading environment. ^-^

                          xonar 1 Reply Last reply Reply Quote 0
                          • xonar
                            xonar Regular Member last edited by xonar

                            Hi friends, after months waiting for a ufocoin site, I just revamp my ufocoin page as a little technical site. It’s Not an official site but you can find and download the firsts aids resourses and last wallets. Yes I’m a holder of a little amount of ufocoins. Have a nice use of this page. You are welcome.

                            Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

                            R M 2 Replies Last reply Reply Quote 4
                            • R
                              RIPPEDDRAGON Regular Member @xonar last edited by

                              @xonar said:

                              Hi friends, after months waiting for a ufocoin site, I just revamp my ufocoin page as a little technical site. It’s Not an official site but you can find and download the firsts aids resourses and last wallets. Yes I’m a holder of a little amount of ufocoins. Have a nice use of this page. You are welcome.

                              Nice work!

                              1 Reply Last reply Reply Quote 1
                              • M
                                mirrax @xonar last edited by

                                @xonar you made very nice site, what template are you using?

                                1 Reply Last reply Reply Quote 0
                                • xonar
                                  xonar Regular Member last edited by

                                  It’s a remake of a ‘templatemo’ template. See the page site below.

                                  Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

                                  1 Reply Last reply Reply Quote 1
                                  • xonar
                                    xonar Regular Member @lizhi last edited by

                                    @lizhi said:

                                    I ask other people in NXT forum. We can realize it.

                                    First of all, we want to build a server network, They are gateway. They are responsible for processing deposits and withdrawals.You can send any coin,eg:BTC or NXT. We use gateway client for deposits and withdrawals.Everyone can set up gateway server. Thus, the evolution of the coin, The establishment of a coin applications and trading environment. ^-^

                                    Hi Lizhi, I’m intrested to understand how to setup a gateway server and understand how it’s work. Can you please forward me a white paper link or some docs links about it ? Thank you Lizhi.

                                    Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

                                    1 Reply Last reply Reply Quote 1
                                    • xonar
                                      xonar Regular Member last edited by

                                      Toc Toc… good news…
                                      https://bitcointalk.org/index.php?topic=844754.msg14493261#msg14493261

                                      Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

                                      1 Reply Last reply Reply Quote 2
                                      • xonar
                                        xonar Regular Member last edited by

                                        Today we have reached another milestone, the old ufocoin.cc site has been revamped as a Security Center. Thank’s to the agreement with a United State provider and some help from others and our friends (verymetric), we’re now up&running to sell SSL Certificates between Ufocoins and Feathercoin (switch-exchange), and of course we can sell also via PayPal. The site is in continuous development, for now we have a limited types of certificates online but others comming soon. Happy UFOs Friends!
                                        Regards

                                        Newbies: http://forum.feathercoin.com/topic/8523/faq-newbie-most-asked-questions-try-here-first

                                        1 Reply Last reply Reply Quote 3
                                        • Wellenreiter
                                          Wellenreiter Moderators last edited by

                                          Congratulations for the revamp and also thanks for accepting feathercoin for the certificates.
                                          I’m glad to hear, that the Ufos fly again :)

                                          Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                                          Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                                          1 Reply Last reply Reply Quote 3
                                          • wrapper
                                            wrapper Moderators last edited by

                                            UFO site looks very good, well done

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post