Bitcoin Forum
May 24, 2024, 04:10:24 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 »
81  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 23, 2016, 07:22:50 AM
HOLY S**T, VIA NEW HIGH ON BITTREX!
82  Bitcoin / Project Development / Re: CRYPTOPROOF: PUBLIC AUDIT AVAILABLE 28/11/2015 on: April 20, 2016, 07:33:17 AM
Interesting. Can you explain what this solves that public key certificates don't solve ?
This is how ssl certificates work too ...you sign using your private key and then user can verify using publickey. Same thing can be done with bitcoin public/private keys pair. For products, the vendor can the sign something like a product code and user can verify the signature .
Hello and thank you for your question, I will add it to the FAQ Smiley
  • In essence we log the number or hits each subkey receives and so provide an indication to the consumer as to whether their particular item is unique or not.
  • The consumer is also able to see at a glance who the registered vendor is without having to understand what an SSL certificate is and how to verify it's signature, we take care of that for them by getting the vendor to verify their identity in advance using the SSL certificate provided at the https url they own.
  • An added advantage to this is that value may be sent to this key because it is a valid address on the BTC network which is a feature the vendor may make use of if they wish.
  • Vendors are also able to monitor the number of hits each subkey has received which can be used for analytical reasons.


**UPDATE

    Scanner app for Android now available for testing here.
(source)
    SHA256 Hash: a5db1ff1e601cb8cd2e80648b74e81ef60765e52e16382cb619548ecda4750e7  cryptoproof_scanner.apk

    Android app # COMPLETED 12/11/2015
    Multisig Support # ENABLED 26/11/2015
    Publicly auditable database # ENABLED 28/11/2015

    prlog press release 13112015

    Example cryptoproof id card (front and back)
    
83  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 20, 2016, 04:39:52 AM
So you admit this coin is only for daytrading and not a via-ble investment?
I have to say no because I bought in a few weeks ago and have put those coins away as a long term investment, however I did also buy in a few months after the ICO but as the price continued to decline I dumped them because staying in a losing trade is not sensible.

Viacoin is roughly 0.5 US cents at the moment. If the $ falls before the end of the decade (likely in my opinion) and VIA reaches $1 or if over the next four years sidechains tech gets better (also likely) and people continue to adopt crypto then hopefully there will be some profit to be made here.

Drak doesn't need to be the most vocal developer in the world, he just has to keep the tech up to date and reliable. The rest should inevitably take care of itself.
There is nothing pump and dump about this coin cuz Drak wont let us pump it Tongue

Are YOU paying YOUR fair share?
Here you go you poor misguided soul - https://youtu.be/iFDe5kUUyT0?t=1m21s, You're welcome Smiley
84  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 19, 2016, 04:55:47 AM
Haven't been able to log into clearwallet.io for past few days.
85  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 18, 2016, 11:28:26 PM
I'm bagholding some VIA from ICO Sad
Sir, if you have failed to take action during a 98% price decline that took over a year to unfold then you have no business trading anything.
86  Bitcoin / Development & Technical Discussion / Re: Spawn & distribute private blockchain networks with Docker, comments appreciated on: April 16, 2016, 08:50:17 PM
and this code should be trusted because.....?
It's opensource and it runs inside a docker container which is an isolated environment. No trust necessary Smiley
87  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 16, 2016, 12:58:20 PM
Wat does cloner exactly? Could you explain in laymans words what it means and does?
coinclone provides a tool named 'cloner' which when passed the name of any supported blockchain (currently only Bitcoin, Litecoin and Viacoin are supported) will download the source code of that blockchain, mine a new genesis block and wrap it inside of a docker container which can then be shipped to other individuals you wish to participate in your network or pushed to the cloud (docker hub) which anyone with internet access can then download and run.

Hope that helped Smiley
88  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 16, 2016, 12:46:58 AM
Derrend, you?
I'm not doing anything with Azure.

I've been working on cloner, a framework to spawn and distribute private blockchains on the fly using docker.
It now supports Bitcoin, Litecoin and Viacoin Grin


I'm looking for the algo that mines a Vaicoin genesis block, give a brother a hint??
Thanks for the help "community" Tongue
89  Bitcoin / Development & Technical Discussion / Re: Spawn & distribute blockchain networks easily with Docker (comments appreciated) on: April 16, 2016, 12:36:40 AM
`bitcoinclone` has become `cloner` and now supports Bitcoin, Litecoin and Viacoin!
90  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: April 09, 2016, 02:49:34 AM
I'm looking for the algo that mines a Vaicoin genesis block, give a brother a hint??
91  Bitcoin / Development & Technical Discussion / Spawn & distribute private blockchain networks with Docker, comments appreciated on: April 07, 2016, 12:52:59 AM
cloner
Spawn and distribute blockchain networks on the fly. Based on bitcoin 0.10.

Dependencies
git, docker

Instructions
Clone the `cloner` repo and run the setup script.
Code:
git clone https://github.com/coinclone/cloner.git && \
cd cloner && \
bash setup.sh <blockchain>

Once the genesis block is mined (the setup script takes care of this) you will find a new image inside your local repository named `coinclone/<blockchian>:node`.
Move into `cloner/deploy/`, edit the `coin.conf` file to your specifications and build any class of container you want (miner, relay).
Code:
cd deploy/

#vi coin.conf
bash setup.sh <blockchain> <node_class> <number_of_instances>

You do not need to configure the `rpcpassword` option in `coin.conf`. It will be automatically appended at runtime.

Run at least two instances to establish a network. You may deploy as many instances as you wish.
Code:
bash setup.sh bitcoin miner 1 && \
sed -i 's/gen=1/gen=0/g' config/coin.conf && \
bash setup.sh bitcoin relay 1



Important
IP addresses are deterministic in docker and so each new instance is set to connect to its own IP address - 1. If it fails to receive a response it will connect to its own IP address + 1.
You can add IP addresses manually in deploy/coin.conf

Donate
If you like the project and would like to donate some of your time and expertise by contributing to the code base, that would be fantastic and very much appreciated.
If you cannot produce code but would still like to contrubute, you can donate crypto to any of the addresses listed below which is also very much appreciated.

Bitcoin - 14qQtzyUayEj97JhizmCqwYfovqL6uLtW
Viacoin - VbWrkv8aE1zpNWDJsKVT2aGH3nBLrj7pwB
92  Alternate cryptocurrencies / Altcoin Discussion / Re: coin cloning guide on: April 02, 2016, 10:09:35 PM
You can create altcoins on the fly using git and docker:
https://github.com/derrend/bitcoinclone
93  Alternate cryptocurrencies / Announcements (Altcoins) / na on: April 02, 2016, 03:09:15 AM
RELOCATED
https://bitcointalk.org/index.php?topic=1428763.0
94  Bitcoin / Press / Re: [2016-03-23]Why Chronicled Believes Sneakers Could Be Blockchain’s Big Market on: March 24, 2016, 04:11:34 AM
I already solved this probelm:
https://bitcointalk.org/index.php?topic=1059474.msg11363510#msg11363510
95  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 20, 2016, 05:29:22 AM
I noticed clearwallet no longer throws an https error. Nice one Smiley
96  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 19, 2016, 01:51:39 AM
you just have to laugh at people selling here, at this point Grin


The pull back could be enormous! Shocked
97  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 18, 2016, 12:31:31 AM
Sorry to be blond, but what is EVM?
Ethereum Virtual Machine
98  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 17, 2016, 03:10:21 AM
When do we get the EVM on top of Viacoin?
Can the EVM be ported to a scrypt based coin?

Now that Viacoin is so close to it's maximum mint will proof of stake be considered as a power saving and/or security feature?
99  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 12, 2016, 03:05:17 AM
In "non tech" language, what is the relationship between Viacoin and XCH?
First came bitcoin and then someone came along and said 'I can create an application layer on top of this which uses tokens of its own called XCP, people can spend BTC for XCP and do cool stuff inside this application such as create shares etc, I juat hope that bitcoin doesn't change and breaks this application layer in some way.'
Viacoin came along and said 'That counterparty shiz was so good we will include an application layer like that with our coin by default and we will maintain 100% compatibility with it forever, it will use XCH instead of XCP.'

THE END Smiley
100  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VIA] ★ Viacoin ★ ~ the future of digital currency ~ ★ on: March 04, 2016, 02:10:38 AM
You are missing dependencies. You have to install slowaes (sudo pip install slowaes).
That fixed it, thank you Grin
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!