Bitcoin Forum
May 09, 2024, 10:45:08 AM *
News: Latest Bitcoin Core release: 27.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 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 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ... 114 »
1001  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SPROUTS sha256 pos+pow 10% at 5 days 芽菜货币 on: May 13, 2017, 11:04:52 AM
You do realized your rudeness just cost sprouts all of their trading pairs on Cryptopia.

Welcome to Fantasy Island.

Cheers

Graham
1002  Alternate cryptocurrencies / Altcoin Discussion / Re: [HOWTO] Setup a p2pool for Feathercoin in VirtualBox on: May 12, 2017, 07:35:16 PM
im a rhel fella - and NO i dont want you to feel sorry me ... i actually like the os - whether ive submitted to it or not ...

Hm, it would be useful to cover an rpm-based solution as well as the apt-based one - meet halfway? CentOS?

Cheers

Graham
1003  Alternate cryptocurrencies / Altcoin Discussion / Re: [HOWTO] Setup a p2pool for Feathercoin in VirtualBox on: May 12, 2017, 01:02:48 PM
im also looking for a 'decent' way to compile ( or cross compile if that is a good way ) windows and osx binaries for the coins we have

im looking for a much more simplified way of doing this ... any hints or links or just outright step by step instructions

Herewith markdown-formatted destructions from the Slimcoin README:


## Ubuntu-hosted cross-compilation of Windows 32bit binary

### Installing the [MXE](http://pkg.mxe.cc/) cross-compilation tool.

Make the distribution ppa known to the APT package system:

    $ echo "deb http://pkg.mxe.cc/repos/apt/debian wheezy main" > \
       /etc/apt/sources.list.d/mxeapt.list

Add the GPG key to the APT package system:

    $ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB

Update the APT cache:

    $ apt-get update

Install some MXE package:

    $ apt-get install mxe-i686-w64-mingw32.static-qt

Names of packages are `mxe-<target>-<package>`.

Possible targets:

> - i686-w64-mingw32.static
> - x86-64-w64-mingw32.static (note that `_` replaced with `-`)
> - i686-w64-mingw32.shared
> - x86-64-w64-mingw32.shared (note that `_` replaced with `-`)

*(A complete list of packages can be found on the [MXE site](http://mxe.cc/#packages) and in [the build matrix](http://mxe.cc/build-matrix.html).)*

Packages are installed to `/usr/lib/mxe/<target>/`. The location acts as the root of the MXE source tree.

For example, cross-compile CMake project:

    $ target=i686-w64-mingw32.static
    $ mxedir=/usr/lib/mxe/
    $ $mxedir/usr/bin/$target-cmake project-source
    $ make


### Cross-compiling SLIMCoin

    #!/bin/bash

    # Working setup to cross-compile Windows binaries for Slimcoin hosted on a
    # Vagrant Ubuntu 16.04 VM using non-Canonical ppas for MXE and Qt5.7:
    # deb http://pkg.mxe.cc/repos/apt/debian wheezy main

    # Doesn't seem to pass the QT directives through, though. Tough.

    # Basic path bindings
    PATH=/usr/lib/mxe/usr/bin:$PATH
    MXE_PATH=/usr/lib/mxe
    MXE_INCLUDE_PATH=/usr/lib/mxe/usr/i686-w64-mingw32.static/include
    MXE_LIB_PATH=/usr/lib/mxe/usr/i686-w64-mingw32.static/lib
    # Belt and braces
    CXXFLAGS="-std=gnu++11 -march=i686"
    LDFLAGS="-march=i686"
    target="i686-w64-mingw32.static"

    # Particularise for cross-compiling
    export BOOST_LIB_SUFFIX=-mt
    export BOOST_THREAD_LIB_SUFFIX=_win32-mt
    export BOOST_INCLUDE_PATH=${MXE_INCLUDE_PATH}/boost
    export BOOST_LIB_PATH=${MXE_LIB_PATH}
    export OPENSSL_INCLUDE_PATH=${MXE_INCLUDE_PATH}/openssl
    export OPENSSL_LIB_PATH=${MXE_LIB_PATH}
    export BDB_INCLUDE_PATH=${MXE_INCLUDE_PATH}
    export BDB_LIB_PATH=${MXE_LIB_PATH}
    export MINIUPNPC_INCLUDE_PATH=${MXE_INCLUDE_PATH}
    export MINIUPNPC_LIB_PATH=${MXE_LIB_PATH}
    export QMAKE_LRELEASE=${MXE_PATH}/usr/${target}/qt5/bin/lrelease

    # Call qmake to create Makefile.[Release|Debug]
    ${target}-qmake-qt5 \
        MXE=1 \
        USE_O3=1 \
        USE_QRCODE=1 \
        FIRST_CLASS_MESSAGING=1 \
        RELEASE=1 \
        USE_UPNPC=1 \
        BOOST_LIB_SUFFIX=${BOOST_LIB_SUFFIX} \
        BOOST_THREAD_LIB_SUFFIX=${BOOST_THREAD_LIB_SUFFIX} \
        BOOST_INCLUDE_PATH=${BOOST_INCLUDE_PATH} \
        BOOST_LIB_PATH=${BOOST_LIB_PATH} \
        OPENSSL_INCLUDE_PATH=${OPENSSL_INCLUDE_PATH} \
        OPENSSL_LIB_PATH=${OPENSSL_LIB_PATH} \
        BDB_INCLUDE_PATH=${BDB_INCLUDE_PATH} \
        BDB_LIB_PATH=${BDB_LIB_PATH} \
        MINIUPNPC_INCLUDE_PATH=${MINIUPNPC_INCLUDE_PATH} \
        MINIUPNPC_LIB_PATH=${MINIUPNPC_LIB_PATH} \
        QMAKE_LRELEASE=${QMAKE_LRELEASE} slimcoin-qt.pro

    # Go for it. If successful, Windows binary will be written out to ./release/slimcoin-qt.exe
    make -f Makefile.Release CXXFLAGS="-DQT_GUI -DQT_NO_PRINTER -std=gnu++11 -march=i686" LDFLAGS="-march=i686"

The cross-compilation product is saved in the `release` directory under the name `slimcoin-qt.exe` and can be tested on Ubuntu with:

    $ wine release/slimcoin-qt.exe

*(be prepared for a long wait during the loading of the index, e.g. 15-20 mins on a low-end machine)*


Once the MXE distro is installed, copy the bash script into xcomp.sh and just run that whenever required. It has proved reasonably general in that I have been able to just edit the target in order to use the script to produce a Windows binary for a different coin.

BTW, the README also contains destructions for native compilation on OS X Sierra, it requires brew and XCode but otherwise fairly straightforward and works as expected on an Ubuntu 17.04-hosted VirtualBox OS X Sierra VM (which fortuitously happily upgraded itself from an El Capitan distro I managed to get my hands on).

And similarly, my intention to tackle gitian deterministic builds is awaiting a fresh supply of round tuits Smiley

Cheers

Graham
1004  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SPROUTS sha256 pos+pow 10% at 5 days 芽菜货币 on: May 12, 2017, 10:48:04 AM
Just a thought, ask them what value they have assigned to reservebalance.

Mmm. Looks like Cryptopia's wallet is staking: https://bitcointalk.org/index.php?topic=1798901.msg18471814#msg18471814

So yes, numpties.

I expect that if they set reservebalance=10000000 in the config or even set -reservebalance=10000000 on the command line, their client will remain stable.

But, given their unhelpful response to a legit customer enquiry, I don't hold out much hope that any of the Cryptopia staff are motivated to do anything helpful.

At present, this is an educated guess - if someone with SPRTS deposited on Cryptopia can confirm that the coins have recently staked at their Crytopia deposit address, that would dispel the uncertainty (there's an explorer URL quoted a couple of posts after the one I've referenced above).

My dear, this is my Sprouts deposit address of Cryptopia:
Sbh9JuBpuEBKMLbU5XCJwyx2iFrF1c4iEZ
https://chainz.cryptoid.info/sprts/address.dws?Sbh9JuBpuEBKMLbU5XCJwyx2iFrF1c4iEZ.htm

You will see at blockchain that the address is staking everyday.

We seem to have an answer. The problem that Cryptopia is experiencing with the Sprouts client is localised to them and is due to their own ineptitude in failing to configure the client's operation for use on an exchange.

Cheers

Graham
1005  Alternate cryptocurrencies / Altcoin Discussion / Re: [HOWTO] Setup a p2pool for Feathercoin in VirtualBox on: May 11, 2017, 08:59:49 AM
interesting ...

is this still viable? ...

#crysx

Seems to depend on which coin and from which version of Bitcoin it was cloned: https://github.com/p2pool/p2pool/issues/341

These days it would probably be more effective to cast the process into a “devops” solution. Personally, I quite like a combo of Vagrant and Ansible, f'rinstance this is an Ansible playbook for creating an Ubuntu 16.04 VM and cross-compiling a Windows binary for Slimcoin.

Cheers

Graham
1006  Alternate cryptocurrencies / Altcoin Discussion / Re: Buyouts and Mergers in Cryptocurrencies? on: May 11, 2017, 07:33:37 AM
isnt there a way to revive a coin even if devs are not involved? I am interested in knowing how that can happen.

Here you go: https://github.com/pnut-coin/pnut

Just clone the source and compile it. It's your choice whether to try and find a copy of the original blockchain (and potentially be in conflict with an existing consensus of which you are unaware) or to make a trivial change to the configuration and generate a new blockchain. Now copy the binary to a VM, point the natively-hosted client at the vm-hosted client and vice versa, turn on setgenerate and watch the engine run. Invite your friends to d/l a copy. (*)

Quote
even if devs are not involved

What's a “dev”? No, seriously - what qualifications are required?   (Hint: none)

Quote
Can't a community agree on a new dev and begin a new updated wallet that every node/network uses?

Neither dev nor agreement is needed. It's called a fork and it's not illegal, immoral or fattening.

HTH

Cheers

Graham

(*) Happy to co-operate in an open online workshop to do exactly that
1007  Alternate cryptocurrencies / Altcoin Discussion / Re: Buyouts and Mergers in Cryptocurrencies? on: May 11, 2017, 06:57:43 AM
Anyone heard of a Cryptocurrency an open source project buying out or merging with another?

That’ll be a “no” then.

More to think upon ... https://github.com/github/dmca/blob/master/2012/2012-01-09-bitcoin.markdown


Cheers

Graham




There is more to any specific crypto currency than its code.  Much more.

Such as?

See also: https://en.wikipedia.org/wiki/Contract

Quote
“Each party to a contract must have capacity to enter the agreement.”

Cheers

Graham

1008  Alternate cryptocurrencies / Altcoin Discussion / Re: List of Dash Forks / Coins with Masternodes on: May 11, 2017, 06:41:29 AM
What are some other forks of Dash?

https://github.com/search?q=CActiveMasternode&type=Code&utf8=%E2%9C%93

A more complete search set would include permutations such as BankNode (Bitcredits) or AdrenalineNode (Neutron), so perhaps ...

https://github.com/search?l=C%2B%2B&q=masternodeprivkey&type=Code&utf8=%E2%9C%93


Cheers

Graham

Edit: added example of more complete search
1009  Alternate cryptocurrencies / Altcoin Discussion / Re: Buyouts and Mergers in Cryptocurrencies? on: May 11, 2017, 06:31:33 AM
Anyone heard of a Cryptocurrency an open source project buying out or merging with another?

That’ll be a “no” then.

More to think upon ... https://github.com/github/dmca/blob/master/2012/2012-01-09-bitcoin.markdown


Cheers

Graham

1010  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SPROUTS sha256 pos+pow 10% at 5 days 芽菜货币 on: May 10, 2017, 10:07:07 AM
Someone needs to help cryptopia fix the sprouts wallet. They are most likely going to "delist" it after they fix the wallet issue. copy and paste below to my ticket there.

Quote
we only have an issue with sprts wallet constantly crashing (30-40 times a day)

Perhaps you might be able to persuade these apparent numpties that they are experiencing an issue unique to them and to include the output from the debug log? Client version and host platform architecture are also sort of vaguely useful for remote diagnosis of locality-specific issues.

Is anyone else's installation of the Sprouts client also crashing 30-40 times a day or is it just an issue for Cryptopia?

Just a thought, ask them what value they have assigned to reservebalance.

Cheers

Graham

Edit: added reservebalance suggestion
1011  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.5 on: May 09, 2017, 04:18:40 AM
I was a bit confused because you one page ago recommended to use the testnet to test the 0.5 code. But I assume with your latest changes you consider it ready for mainnet.

The code compiles, the tests pass, the app syncs and handles the protocol. Those are the only verifiable criteria in this specification-by-implementation context.

Quote
The only real consensus change with respect to 0.4 should be the addition of the OP_RETURN opcode, am I right?

Mostly. I have been reporting informally as I made progress. I will create a Changelist file, (based on the commit record).

Quote
I get an error here (using the qmake/make method):

Code:
In file included from src/qt/inscriptiondialog.cpp:2:0:
build/ui_inscriptiondialog.h: En la función miembro ‘void Ui_InscriptionDialog::setupUi(QDialog*)’:
build/ui_inscriptiondialog.h:78:22: error: ‘class QLineEdit’ no tiene un miembro llamado ‘setClearButtonEnabled’
         lineEditMsg->setClearButtonEnabled(false);
                      ^
Makefile:1917: recipe for target 'build/inscriptiondialog.o' failed
make: *** [build/inscriptiondialog.o] Error 1

The error indicates that you are using a version of Qt earlier than Qt 5.2 (http://qt.apidoc.info/5.2.0/qtwidgets/qlineedit.html#clearButtonEnabled-prop).

I doubt that C++ #ifs will work in XML so you cannot use #if QT_VERSION >= 0x050200 to isolate the code, so you need to delete lines 130-132 of src/qt/forms/inscriptiondialog.ui.

Quote
(Sorry for the "Spanglish", but it should be understandable - "función miembro" should be "member function" and "no tiene un miembro llamado XX" is "hasn't a member called XX")
No hay problema, yo hablo poquito castellano.

Quote
my long-term idea is to port PeerAssets (when it's ready) to Slimcoin, so we could have a crowdfunding platform Smiley It uses OP_RETURN and would need almost no porting effort.

That's one approach, I have to say I'm underwhelmed by the chosen analogy.

I'm intending to pick up on a nice little paper written by fellow Labbie, Jeremy Carroll (yeah, go on, accuse me of cronyism):

Quote
Assuming P<GI<NP, the creation and verification of a digital signature of an arbitrary RDF graph cannot be done in polynomial time. However, it is possible to define a large class of canonicalizable RDF graphs, such that digital signatures for graphs in this class can be created and verified in O (n log (n)). Without changing its meaning, an arbitrary RDF graph can be nondeterministically pre-canonicalized into a graph of this class, before signing. The techniques in this paper are key enablers for the use of digital signature technology in the Semantic Web.

This technique should work comfortably with RDF graphs which formally describe the state change and whose canonical digital signature can be inscribed in an OP_RETURN and for which existing inference engines such as FAST++ can do the heavy lifting.

Quote
- I think you know my identity.)

Sorry, I don't.

Cheers

Graham
1012  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.5 on: May 08, 2017, 12:05:04 PM
I have a slight doubt: Is 0.5 now enabled for mainnet or still testnet-only?

It has returned to normal behaviour, i.e. defaulting to main but configurable (via both command-line option and config file) to use test.

I mused on it for a bit, trying to get a better understanding of the purpose of testnet.

Bitcoin Core now has three networks, main, test and regtest.

The way testnet coins are now generated points to a difference - for Bitcoin Core, testnet coins are generated via RPC console command generate <n> <N> where <n> is the number of blocks and <N> is the number of guesses (too few = no blocks). Regtest network behaves the same as  main. I infer that test is for testing changes to the basic protocol and regtest is for running protocol usage experiments. Or vice versa.

In principle, the public ledger must be safe from J. Random User's dedicated-but-individual attempts hack their copy of the client to suborn the network to their personal advantage. I am no different from J. Random User except that my intentions are allegedly beneficial (says me) so by the same token, the network should be safe from any of my individual efforts whether deliberately or inadvertently mounted. Of course, if I can persuade > 50% of users to join my camp, then whatever I've done to the protocol/functioning will become the new norm. Testnet gives me some protection from any inadvertent ganging up on the currently-accepted consensus but then again, I hadn't introduced any significant changes to the functioning of the engine, merely adjusted the timing belt, to use a motoring analogy.

But I'm always acutely aware that the numbers represent far more than just public ledger accounting - humans are involved.

Cheers

Graham
1013  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.4.1 on: May 08, 2017, 12:03:58 AM
After I've posted this, I'll fire up the Sierra VM, update the OS X app, similarly update the release binary and advertise it here.

The OS X GUI client in the 0.5 release section has now been updated.

Cheers

Graham
1014  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.4.1 on: May 07, 2017, 03:23:10 PM
I have a trial Windows VM and a 4 year-old step-by-step guide.

Yuck, that's a very tangled mess. I'll have to leave that approach for another time.

Instead, I tracked through the commit history (tedious but effective) until I found the offending commit. I had omitted to follow-up on a crucial detail on removing the C99 “PRI64*” macros.

Issue has been resolved with the latest commit: https://github.com/slimcoin-project/Slimcoin/commit/43621ddb701b01e2df36e87113e034a10accaafc

and I have updated the Windows binary slimcoin-qt-v0.5.0-win32.zip listed on the 0.5 release download page

After I've posted this, I'll fire up the Sierra VM, update the OS X app, similarly update the release binary and advertise it here.

I've also discovered the issue with the snapshot - haven't checked the bootstrap yet - it needs be of a datadir for a client that was compiled to use BDB 4.8 - I'll configure my headless client on the server to use BDB 4.8, create a fresh snapshot on the server and also advertise it here.

Cheers

Graham
1015  Alternate cryptocurrencies / Altcoin Discussion / Re: *** Complete Guide on How to Create a New Alt Coin *** on: May 05, 2017, 12:40:57 PM
For i can see it seems a problem with the mgw47-mt thing

Indeed:


g++ -Wl,--large-address-aware -static -static-libgcc -static-libstdc++ -Wl,-s -mthreads -Wl,-subsystem,windows -o release\Coin-qt.exe object_script.Coin
-qt.Release  -L"c:\Qt\4.8.5\lib" -lmingwthrd -lmingw32 -lqtmain build\bitcoin-qt_res.o -LC:/deps/miniupnpc -lminiupnpc -liphlpapi  -lshlwapi -LC:/deps/boost_1_5
5_0
/stage/lib -LC:/deps/db-4.8.30.NC/build_unix -LC:/deps/openssl-1.0.1j -LC:/deps/qrencode-3.4.4/.libs -lssl -lcrypto -ldb_cxx -lws2_32 -lshlwapi -lmswsock -lo
le32 -loleaut32 -luuid -lgdi32 -lboost_system-mgw47-mt-sd-1_53 -lboost_filesystem-mgw47-mt-sd-1_53 -lboost_program_options-mgw47-mt-sd-1_53 -lboost_thread-mgw47
-mt-sd-1_53 -lboost_chrono-mgw47-mt-sd-1_53 -lQtGui4 -lQtCore4
C:/mingw32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -ldb_cxx
C:/mingw32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -lboost_system-mgw47-mt-sd-1_53


perhaps you'll have better luck with something like mgw49-mt-sd-1_55 or near offer.

The resolution lies in the <coinname>.pro file, look for where BOOST_LIB_SUFFIX is bound and ensure the numbers match the versions of the installed mingw and boost packages.

Cheers

Graham
1016  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.4.1 on: May 02, 2017, 08:45:17 AM
this is the debug last lines,

hope it,s enough

Thanks ... me too Smiley

I have a trial Windows VM and a 4 year-old step-by-step guide. I'll let y'all know how I get on.

Cheers

Graham
1017  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.4.1 on: May 01, 2017, 01:32:03 PM
I am using actually the last version (0.5 windows)
But it does crash all the time,

Details? I've noticed that the Windows 0.5 binary also crashes on the wine emulator in my Ubuntu 17.04-pre distro but that might be unrelated. I'm definitely not in a position to comment w.r.t. different Windows versions.

Quote
I would like to know if someone has the same problem or if it is just me.

Impossible to assess, atm: absence of evidence is not evidence of absence.

Cheers

Graham
1018  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Slimcoin thread | First Proof of Burn currency | Help to test v0.4.1 on: May 01, 2017, 01:26:50 PM
Could anybody post a list of live nodes?

Sure.

addnode=37.187.100.75:41682
addnode=212.243.7.37:57208
addnode=161.53.40.94:54692
addnode=217.175.119.125:35959
addnode=217.65.8.75:34987
addnode=217.65.8.75:27670
addnode=5.9.39.9:41682
addnode=212.74.203.97:21773
addnode=91.20.13.10:56064
addnode=92.193.110.121:48782
addnode=92.193.110.121:40066
addnode=92.193.110.121:51681
addnode=5.105.63.44:64536
addnode=94.25.179.179:53001
addnode=39.128.196.200:2410


You may wish to try a release binary: https://github.com/slimcoin-project/Slimcoin/releases

Or, if you can use (install) Vagrant and Ansible, you can use the vagrant+ansible deployment script on an Ubuntu 16.04 VM to cross-compile your own “untouched by human hands” Windows binary:

https://github.com/slimcoin-project/ansible-slimcoin-qt-win

Cheers

Graham

1019  Alternate cryptocurrencies / Altcoin Discussion / Re: Coin Graveyard or do you know what happenend to this coins? on: May 01, 2017, 12:44:23 PM
1. Does anyone know if any of the following coins got rebranded?
2. Or ist this just a trashlist?
3. Anyone know what happened to that coins? All dead? Cry

1. DYOR
2. Mostly
3. Yes, no.

As of March 2016 (when I abandoned the effort as unprofitable [1]) ...

666Coin666585912.0inactive
ActivecoinACTIVE517376.0extant
ActivecoinACT602982.0inactive
AlbocoinALB517066.0inactive
AmigacoinAGA539974.0inactive
AnonymouscoinXAC630528.0foundered
APEXcoinAPEX686403.0listed
ApollocoinAPOLLO744924.0extant
AscentcoinASCE611790.0extant
AvcoinAV613049.0extant
BankcoinBANK606388.0extant
BitcashBCSH737857.0extant
Bitcoinx11BTCXextant
BitMoneroBMR563821.0extant
BitnoteBNTextant
BitpopcoinBPC665896.0extant
BlitzCoinBLTZ509173.0listed
BonggerBGR634701.0extant
BonusCoinBNS524212.0extant
BoomcoinBMC434178.0stopped
BoomCoinBOOM716699.0foundered
BosscoinBOSextant
BosscoinBSS362387.0extant
BwincoinBWC624842.0extant
CantorcoinEICinactive
CarpediemcoinDIEM588310.0listed
ChatcoinCHAT675803.0extant
CivilisationcoinCIV796591.0inactive
CoffeecoinCFCinactive
CoffeecoinCOF684675.0inactive
CoffeeCoinCFC2596562.0extant
CoinCOINextant
Coin2C2483847.0listed
ColorcoinCC598420.0extant
CornerstoneCoinCCX584550.0extant
CrowncoinCROWN684122.0extant
CrowncoinCCextant
CrownCoinCRW815487.0listed
CryptoeagleCREAextant
CryptoEscudoCESC524124.0listed
CryptoPowersCPSextant
DeepcoinDCN667470.0extant
DevcoinDVC34586.0listed
DinosaurcoinDINO678073.0inactive
DoomcoinDOOM713003.0foundered
DreamcoinDRM599854.0extant
ECCoinECC728071.0listed
ECurrencyISOextant
EirecoinEIR656051.0inactive
EonCoinEON573459.0extant
FBcoinXFB641386.0inactive
FinercoinXFC661788.0extant
FlashcoinFLC222450.0defunct
FlashCoinFLASH635403.0extant
FourOhFourCoinFOFextant
FreebiesCoinFREEB597273.0extant
GodcoinGDC635654.0inactive
HappyCoinHPY616114.0extant
HelveticacoinCHC631899.0inactive
HonorcoinXHC639043.0extant
HonorCoinHC624040.0extant
HouseofcoinsHOC553599.0inactive
HyperHYPERlisted
JudgecoinJUDGE666335.0listed
KillerCoinKILRinactive
KimdotcoinDOT550851.0extant
LogosLGS618061.0inactive
LotuscoinLTS658104.0unlaunched
LovecoinLOVE367898.0extant
LOVEcoinLOVE550452.0extant
MACDcoinMACD683253.0extant
MacrocoinMCRinactive
MagicoinXMG735170.0listed
MagicoinMAGIC548368.0extant
MagneticoinMGC564667.0extant
MaiaCoinMAIA667250.0extant
MazacoinMZC508849.0listed
NanoliteNLinactive
NewYorkCoinNYC619708.0listed
OrangeCoinOC581894.0listed
PayprocoinPRO643028.0inactive
PurecoinPURE627749.0extant
RecyclingcoinREXextant
RightcoinRTC607076.0extant
RockcoinRCK690002.0extant
ROXcoinROXextant
RupayaCoinRUP521251.0extant
RussiacoinRC630009listed
SHAcoinSHAlisted
SharecoinSHARE587051.0extant
ShibeCoinSHIBE724624.0defunct
SlimcoinSLM613213.0extant
SocialCoinSOC412331.0extant
StealthcoinSTH624726.0extant
StealthcoinXST681725.0listed
SupercoinSPRextant
SupercoinSUPER875651.0listed
SuperCoinSPC206164.0extant
TechcoinTECH663990.0extant
TheballCoinTBC647129.0defunct
TrustcoinTRUST659848.0listed
TrustcoinTRS721590.0extant
UltimatecoinUTLE1045266.0extant
UltimateCoinULT519153.0inactive
UniversityCoinUVC590681.0extant
VanadiumCoinVAC788235.0inactive
WankcoinWKC625934.0extant
WatcoinWAT625238.0inactive
WifiCoinWIFIextant
WintercoinWINTER642917.0extant
WinterCoinWINT852432.0extant
X13CoinX13C635382.0extant
XtracoinCX596545.0extant
ZimstakeZS583591.0extant


a. Speak softly and carry a big dataset.
b. an invoice is on its way to you [1] (see what I mean?).


Crowncoin and Slimcoin are both listed on an altcoin cryptocurrency exchange, that's all the contemporary data I can contribute. [2]

Cheers

Graham

[2] Edit: Deepcoin is being currently being scoped for further development.
1020  Alternate cryptocurrencies / Altcoin Discussion / Re: Trusted Coin Creator on: April 25, 2017, 01:06:45 PM
you will fined it hard to get a good honest coin creator that will do a good job ( i have been looking for someone to fix an existing coins but no luck yet )

Which coin and what about it needs fixing?

Cheers

Graham
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 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ... 114 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!