Pages:
Author

Topic: UFO Coin New Team, Client, Future Plans and NeoScrypt - page 4. (Read 55930 times)

member
Activity: 101
Merit: 10
is there any working neoscrypt miner for nvidia gpu users?
legendary
Activity: 910
Merit: 1000
it would be reasonable solution to have more active member updating the op.


yep. I will start a new thread in 3 days

this happened just like i expected, ftc profitality is now so high all the people are moving their miners on it
it will not last so long..
hero member
Activity: 521
Merit: 500
UFO
it would be reasonable solution to have more active member updating the op.


yep. I will start a new thread in 3 days
legendary
Activity: 910
Merit: 1000
it would be reasonable solution to have more active member updating the op.
hero member
Activity: 521
Merit: 500
UFO
Here are the links as compiled by cisahasa.

UFO Neoscrypt wallets
Windows
http://ufocoin.co/wp-content/uploads/qt_wallets/ufo-setup-0.8.8.1.exe

Mac
http://ufocoin.co/wp-content/uploads/qt_wallets/ufo-mac-0.8.8.1.dmg

Linux (64 Bit – beta)
http://http://ufocoin.co/wp-content/uploads/wallets/ufo-qt.gz

Miner Downloads
CPU Miner 2.4
https://www.feathercoin.com/dl/cpuminer-neoscrypt-win-2.4.zip

GPU Miner 3.7.7b
https://www.feathercoin.com/dl/cgminer-3.7.7b.neoscrypt.zip

NeoScrypt CPU miner (source)
https://github.com/ghostlander/cpuminer-neoscrypt

NeoScrypt GPU miner (source)
https://github.com/vehre/neo-gpuminer/

Pool modules
NOMP MultiHashing PR
https://github.com/zone117x/node-multi-hashing/pull/26

Stratum Algo Module
https://github.com/ahmedbodi/neoscrypt_python

Stratum Mining Repo
https://github.com/ahmedbodi/stratum-mining-multialgo

Resources
NeoScrypt, a Strong Memory Intensive Key Derivation Function (white paper)
https://www.feathercoin.com/dl/neoscrypt_v1.pdf

NeoScrypt - the latest proof of work algorithm (press release)
https://www.feathercoin.com/dl/neo-scrypt-press-release.pdf

NeoScrypt (source)
https://github.com/ghostlander/NeoScrypt

Mining Pools:

http://morehash.pw

http://dutchpool.org:19720/static/

---------------------------------------------------------------

I will start a new thread in a few days if the OP isnt updated. Just to let you know. At least its gonna be final this time...
hero member
Activity: 561
Merit: 500
kittehcoin.info
Please change wallet link on the OP it is the old one.
legendary
Activity: 1624
Merit: 1001
All cryptos are FIAT digital currency. Do not use.
My friend i can link you to tens and tens of far superior pieces of footage than that.

Such as ? lol

Since you're making me guess, here is one of my all time favs.

STS-75 Tether before the break (1 of 4)
http://youtu.be/QI0WaLa0joo

http://en.wikipedia.org/wiki/User:Cyberguru/etzh
Quote
If you observe their behavior and movement it is obvious that they act just like the microorganisms of our biological sphere. It's beautifuly portrayed in the first few minutes of Martyn Stubb's film "The Secret NASA Transmissions" as well as David Sereda's film "Evidence: The Case for NASA UFOs".

legendary
Activity: 910
Merit: 1000
hero member
Activity: 521
Merit: 500
UFO
Thank you all, folks, for your support!
legendary
Activity: 1064
Merit: 1000
Quick note to those trying to compile the Linux daemon from source:

Line 141 in makefile.unix needs the leading spaces replaced with a tab in order to compile.

Code:
obj/neoscrypt_asm.o: neoscrypt_asm.S
    gcc -c -o $@ $^

Replace the leading spaces in the second line with a tab.


legendary
Activity: 910
Merit: 1000
hero member
Activity: 521
Merit: 500
UFO
legendary
Activity: 910
Merit: 1000
Guys,
Could anybody share .bin file for 7970 made on 13.12 drivers please?
I'm running Linux and drivers changing is not a tipo))
Thanx in advance

is your bin named like(i have 280x)??

neoscrypt140909Tahitigmgc16384w48l4.bin

http://www.filedropper.com/neoscrypt140909tahitigmgc16384w48l4

this one?  -w 48 used when created
hero member
Activity: 521
Merit: 500
UFO
cisahasa,

I think I saw you posting some bins somewhere... can you please post some links to them again. Thanks

-----------------
Also, please make sure you are using your own UFO address as miners username when mining on a p2p pool!!!!

whoever is using CEHP3eFEJP5EtvzEuPv55xsLvuBQDbYcz4 with the dutchpool, please generate a new address! You are mining essentially for me;) which isnt so bad after all Wink
hero member
Activity: 673
Merit: 506
Hello all ! If anyone else is interested in setting up their own p2pool and link it up to existing p2pool nodes then please use these settings, I operate http://dutchpool.org
As a basis you should get Ghostlanders p2pool version at https://github.com/ghostlander/p2pool-neoscrypt
Next add 1 file under p2pool/networks/ with the below settings in it, call it ufo.py :

from p2pool.bitcoin import networks

PARENT = networks.nets['ufo']
SHARE_PERIOD = 15 # seconds
CHAIN_LENGTH = 60*60//15 # shares
REAL_CHAIN_LENGTH = 60*60//15 # shares
TARGET_LOOKBEHIND = 200 # shares
SPREAD = 40 # 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

Then add another file under p2pool/bitcoin/networks/, call it also ufo.py and put the below settings in it:

import os
import platform

from twisted.internet import defer

from .. import data, helper
from p2pool.util import pack


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(
            'ufoaddress' 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__('neoscrypt').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://ufo.cryptocoinexplorer.com/block/'
ADDRESS_EXPLORER_URL_PREFIX = 'http://ufo.cryptocoinexplorer.com/address/'
TX_EXPLORER_URL_PREFIX = 'http://ufo.cryptocoinexplorer.com/tx/'
SANE_TARGET_RANGE = (2**256//1000000000 - 1, 2**256//1000 - 1)
DUMB_SCRYPT_DIFF = 2**16
DUST_THRESHOLD = 0.03e8

As you can see this p2pool setup uses port 19720 as a worker port and 18720 as p2pool's p2p port, for p2pool nodes to successfully communicate and exchange data you have to open port 18720 on your firewall, you can open port 19720 if you wish to have other miners connecting to your node.

One important note to people that want to mine on any p2pool node, make sure you use a VALID receive address as your username, otherwise you will not receive any coins.
legendary
Activity: 910
Merit: 1000
which miner are you guys using, just pure hw errors here

what your os? drivers? miner version? gpu?

u should use 3.7.7B 13.12 drivers, and delete old bin files after updating anything
hero member
Activity: 561
Merit: 500
kittehcoin.info
heheh tnx Smiley
I was about to solo complaining today about the pools because it is hard to set cloud mining without copy-paste option Smiley
So now I m there with 7 280X hashing about 100 kh/s each.

thats nice! I got 4 7970 95khs each Smiley

Next stop, lets work our way to some exchanges.
Nice but our miners for neoscrypt are not optimized at all they could do much more. I will try to recompile something tomorrow if I found the time.
legendary
Activity: 910
Merit: 1000
full member
Activity: 194
Merit: 100
which miner are you guys using, just pure hw errors here
hero member
Activity: 521
Merit: 500
UFO
our blockexplorers are still not updated..

Spekske will update it tomorrow. No worries
Pages:
Jump to: