Bitcoin Forum
October 01, 2025, 09:42:48 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »
1  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [FREE][APP][IOS] Bitwisdom - a Bitcoinwisdom like for IOS on: April 13, 2015, 08:52:36 AM
Thanks.

I'll see what can be done about poloniex and cryptsy. About bittrex, i remember that they don't provide a big history. Only 1 or 2 hours is maybe not enough, or just enough for the 1m timeframe.
2  Alternate cryptocurrencies / Marketplace (Altcoins) / [FREE][APP][IOS] Bitwisdom - a Bitcoinwisdom like for IOS on: April 10, 2015, 06:24:37 PM
Hi,

There is a new app called Bitwisdom on the Apple store.
You can find some nice japanese candletick charts and some indicators (MACD, RSI...).
All the datas are live from the exchanges.

A picture is better that any words, here are the screenshots:



Link: https://itunes.apple.com/us/app/bitwisdom/id978736047

You can pinch to zoom, select a candle, use two finger to scroll, touch the macd indicatore to display all the others.
More markets can be added, just ask.

I hope you enjoy it.
3  Alternate cryptocurrencies / Marketplace (Altcoins) / [FREE][IOS] Bitfinex trading app on the Apple Store on: March 03, 2015, 09:55:40 AM
Hi,

There is a Bitfinex app for your iDevices on the Apple store.
It's 100% free to use with some advertising.

Just enter your API keys and you can begin to trade.
There is only 2 type of trade for the moment, trade limit and trade market.

Link:
https://itunes.apple.com/us/app/bitfinex/id969062318?l=fr&ls=1&mt=8

It's in the same design as the Bittrex app (https://itunes.apple.com/us/app/bittrex/id932961087?l=fr&ls=1&mt=8).

4  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex trading app for Iphone - 100% free - Now on Apple store ! on: November 22, 2014, 08:59:46 AM
People who have device under IOS 8 should update to the latest IOS 8.1.1 that resolve some wifi bugs. This app run very well with 8.1.1 !
I suppose it works nice too on IOS 7, there is no wifi bug on it.
5  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex app for Iphone - Now on Apple store ! on: November 07, 2014, 09:17:28 PM
Bump to say it's available on the Apple store for everyone.

Link: https://itunes.apple.com/us/app/bittrex/id932961087

If some of you find bugs or have a request, just contact me by PM here or by mail with the app (setup tab).
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Myriad [1st Multi-PoW] | REQUIRED UPDATE 0.9.2.7 on: November 05, 2014, 08:20:25 PM
My 2 p2pool nodes are updated
7  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex app for Iphone on: November 05, 2014, 12:32:53 PM
There is still some place for poeple who want to test it. Everything is ready, just send me your mail and i send you an invitation to begin.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Myriad [1st Multi-PoW] | REQUIRED UPDATE 0.9.2.6 | Stealth addresses on: November 04, 2014, 02:19:56 PM
Why no just update code that need be updated? Can`t even easy check changes you have made...
Yes sorry, i have copy paste the whole folder from my server and a backup file that should not be on the git make it hard to read.

Changes are in bold:
p2pool/networks.py:
Quote
myriadcoinqubit=math.Object(
PARENT=networks.nets['myriadcoinqubit'],
SHARE_PERIOD=10, # seconds
NEW_SHARE_PERIOD=10, # seconds
CHAIN_LENGTH=24*60*60//10, # shares
REAL_CHAIN_LENGTH=24*60*60//10, # shares
TARGET_LOOKBEHIND=50, # shares //with that the pools share diff is adjusting faster, important if huge hashing power comes to the pool
SPREAD=30, # blocks
NEW_SPREAD=30, # blocks
IDENTIFIER='aa70135c700a00ee'.decode('hex'),
PREFIX='aa72ef181e88efcb'.decode('hex'),

P2P_PORT=5566,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=5567,
BOOTSTRAP_ADDRS='p2poolcoin.com'.split(' '),
#ANNOUNCE_CHANNEL='#p2pool',
VERSION_CHECK=lambda v: v >= 90206,
),

p2pool/bitcoin/networks.py:
Quote
myriadcoinqubit=math.Object(
P2P_PREFIX='af4576ee'.decode('hex'),
P2P_PORT=10888,
ADDRESS_VERSION=50,
RPC_PORT=10889,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'myriadcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 1000*2000000000000 >> (height + 1)//967680,
BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('qubit_hash').getPoWHash(data)),
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('qubit_hash').getPoWHash(data)),
BLOCK_PERIOD=30, # s
SYMBOL='MYR',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Myriadcoin') if platform.system() == 'Windows' else os.path.expanuser('~/Library/Application Support/Myriadcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.myriadcoin'), 'myriadcoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://explorerino.com/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://explorerino.com/address/',
TX_EXPLORER_URL_PREFIX='http://explorerino.com/tx/',
### Neisklar: normally 2**24 should be 2**20 BUT the quark enabled minerd is coded so that it only detects hashes below 0x000000xxxxxxx
### and 2*20 would be 0x00000FFFF, maybe changing that in the miner would be a good idea for slower ones...
### Update: the minerd is (at least in GitHub) updated so that it would also detect targets below 2**24 (0x000000xxxx..), (Quark$
### maybe for new standalone p2pools it's a good choice at the beginning, but ONLY when new hashing power is gradually a$
#SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**24 - 1),
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
DUMB_SCRYPT_DIFF=1,
DUST_THRESHOLD=0.001e8,
),


p2pool/bitcoin/p2p.py:
Quote
def connectionMade(self):
self.send_version(
version=70002,
services=1,


9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Myriad [1st Multi-PoW] | REQUIRED UPDATE 0.9.2.6 | Stealth addresses on: November 04, 2014, 11:15:10 AM
My nodes are updated to the hard fork with a brand new blockchain.

The p2pool code for qubit has been updated too and every p2pool owners should update because i use new identifiers and do a version check to make sure everyone is on the new fork.
New blocks are found and even if it display the wrong block number on the pool, i still get the MYR in my updated walet, so, no problem.

source: https://github.com/linked67/p2pool-myrq
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Exclusive Coin - 4 Exchange,Market/Outlet LIVE, Multipool, PRICE GOING UP! on: November 01, 2014, 06:58:18 PM
I'm very proud to have this coin on my p2pool server and have decided to share the p2pool code.
This way, we can all setup new p2pool nodes to make the network more secure.

P2pool source code: https://github.com/linked67/p2pool-exclusivecoin

It sould be in the OP post  Wink
11  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex app for Iphone on: October 30, 2014, 10:26:47 AM
The latest build include strong encryption of stored API keys.
12  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex app for Iphone on: October 30, 2014, 08:05:05 AM
That's exactly what i want to do, i'll use the new testflight system integrated by apple recently. That's why i need just a email to start from people who want to join the test.

Everything is ready to start sending invitation by mail.

For people who are paranoid about the security with their founds on bittrex, just create a new account on bittrex and send 0.002 BTC to this account in order to make some trades. My apple store account exist since 4 years now and it's my main job. I won't do anything malicious to steal some BTC and risk a ban from apple. In other words, i won't shoot a bullet in my feets with a malicious app.  You can trust me !

For absolute paranoid, you can sniff the communication my app send and receive with something like wireshark. I have nothing to hide and i wil be happy if someone make this test and post the result here to show everyone it's a clean app.
13  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Bittrex app for Iphone on: October 30, 2014, 12:29:16 AM
Maybe if i post some screenshots it will speed up a little the process:

      

I repeat that the testers will have the version without advertising. The version i'll send to the apple store will have ads enabled.
14  Alternate cryptocurrencies / Marketplace (Altcoins) / Bittrex trading app for Iphone - 100% free - Now on Apple store ! on: October 29, 2014, 01:15:22 PM
Hi,

I have make a nice app for trading on Bittrex with Iphone and i search some testers with at least IOS 7.
People who want to join have to send me the mail (Pm me) and optional a name/nickname to make things more easy.

This app is 100% working but maybe some of you can find some bugs or may have request to improve the app.

The test version will be without any advertising into.

Edit: Now on the Apple Store !

Link: https://itunes.apple.com/us/app/bittrex/id932961087

It's a full trading app, not just a price ticker.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Exclusive Coin - LAUNCHED, 3GHs+ Hashrate, Bittrex UP! on: October 21, 2014, 11:35:39 PM
we are the most raised in price coin on bittrex now





Nice! Great work so far KingsCrown. I would like to know one more thing....can you provide a guide for solo mining Exclusive Coin? Also is there any P2Pool for Exclusive coin? These two would greatly help people. I tried to use your ExclusiveCoin.conf and do solo mining and it did not work for some reason. I used bfgminer for that. Thank you.
There is a p2pool for this coin now, check my sign.
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ♔♕♔[ANN][LMR] LemurCoin|Rare & Unique. Just 100K supply|Games & Services|Bittrex on: October 21, 2014, 05:11:55 PM
And we have now a p2pool for this coin, check my sign.
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CannabisCoin [CANN][X11][Official][420] Developments & Discussions. on: October 17, 2014, 01:14:03 PM
More p2pool nodes would be great (or more people on the existing), here is the source code to make a node if someone have miss it in the OP:
https://github.com/linked67/p2pool-cannabiscoin
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: PHI born from its ashes. Φ PhiCoin Φ Phiwallet.com Φ PhiChain.info Φ EXCHANGED on: September 12, 2014, 08:18:22 AM
Hi, i have build the new wallet and can support this coin in some ways.

My p2pool server has many coin including this one. Unfortunately due to the recent blockchain stuck, i have make some wrong steps and deleted the blockchain on my server.

All the nodes are down and my server is searching for 24h without finding any nodes from where i can get some blockchain part.

Other coins have solved the blockchain stuck with a blockchain rolling back(2 or 3 block). But maybe with a new wallet and a good node always online, the problem can be resolved.

If someone has a node, it would be great.

A friend give me these:
192.99.3.15
37.187.74.123

The 2 IP are my 2 servers  Smiley
They are sync now ad someone found one more block, the n°87147 but no more since. Maybe there is just no one that mine it.
I have enabled my 2 nodes if someone want to put some powers on it.

Can someone give me nodes? Wallet can`t synchronizated
You can use my 2 ip
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.8.6] Hirocoin - X11 - NGW - Secured Blockchain - Time Warp Limitation on: September 08, 2014, 07:17:03 AM
Can i ask why it's not the official dev that post a new wallet ?
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CannabisCoin [CANN][X11][Official][420] Developments & Discussions. on: September 02, 2014, 08:25:05 AM
The price should be far more that 2k sat, only to pay the electricity i use to mine it.
I hold my mined coins and buy a lot more for holding a bit.

Good luck to the dev with this nice coin !
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!