Search content
Sort by

Showing 20 of 116 results by voileipa
Post
Topic
Board Development & Technical Discussion
Re: Travelling salesman problem as a PoW algorithm?
by
voileipa
on 11/04/2017, 10:28:33 UTC
Thank you for letting me know about the Cuckoo Cycle algorithm. I remember hearing it once, but never did a deeper digging on how it works. Will definitely now.

After some research I have concluded that the original TSP does not fit as PoW since verifying the solutions requires NP time.

However, in a modified version of TSP where we try to find a route < GIVEN_LENGTH the solution verification can be done in P time.
Post
Topic
Board Development & Technical Discussion
Topic OP
Travelling salesman problem as a PoW algorithm?
by
voileipa
on 05/04/2017, 12:20:22 UTC
Hi

I'm just wondering if the Travelling salesman problem could be used as a PoW algorithm?
Post
Topic
Board Project Development
Topic OP
Naivechain - a blockchain implementation in 200 lines of code
by
voileipa
on 09/10/2016, 19:58:41 UTC
Hi

Just wanted to share this project of mine: a super simple blockchain implementation in 200 lines of code

https://github.com/lhartikk/naivechain
Post
Topic
Board Service Announcements (Altcoins)
Re: CoinCreator - Create your own altcoin SHA/Scrypt/x11
by
voileipa
on 26/04/2015, 17:30:57 UTC
@voileipa

I've paid for a YourCoin, but the generation is currently at:
Code:
2015-04-22 19:04:16,419 : Coin request received
2015-04-22 19:04:16,782 : Confirmation email sent
2015-04-22 19:05:13,860 : Confirmation received
2015-04-22 19:44:02,333 : Payment received: 0.075 BTC
2015-04-22 19:44:02,338 : Payment confirmed
2015-04-22 19:44:02,344 : Waiting for unique genesis block...

This is the status since 2 days. I tried to contact you via email, twitter, again email... No answer.
Now I'm trying it here. I'll send you a PM in some minutes. Please solve this issue.

EDIT: This problem is solved, thanks.

We were having a brief shortage of SHA256 genesis blocks.

Hi, why is not possible to create a pos coin?
thanks
Well.. it would require some implementation and there is not too much demand for that...
Post
Topic
Board Service Announcements (Altcoins)
Re: CoinCreator - Create your own altcoin SHA/Scrypt/x11
by
voileipa
on 17/03/2015, 19:52:44 UTC
Support for x11 algorithm added.
Post
Topic
Board Project Development
Re: Howto: Creating a delayed bitcoin transaction
by
voileipa
on 15/03/2015, 11:05:39 UTC

Warning!!! You can lose bitcoins.
Too risky, the step is too much, "Send 0.1 BTC to address ADDRESS1" its so big amount Roll Eyes

~iki

I guess the "risk" lies more on the side of "creating a raw transaction in command line" rather than in the "delayed transaction" concept itself.
Post
Topic
Board Project Development
Re: Howto: Creating a delayed bitcoin transaction
by
voileipa
on 10/03/2015, 11:36:22 UTC
You can create a delayed bitcoin transaction quite simply.
Don´t pay trancastion fee.  Grin


Haha.

Broadcast and pray.
Post
Topic
Board Project Development
Re: Howto: Creating a delayed bitcoin transaction
by
voileipa
on 07/03/2015, 13:39:52 UTC

I see this is to "authorize" destination address to broadcast the transaction where the coins are sent to him.

There's no way to automate that, is it? I mean in the  bitcoin protocol itself. Of course such a service could be developed.


Yeah. The "owner" of the destination address must broadcast the transaction.
Post
Topic
Board Project Development
Topic OP
Howto: Creating a delayed bitcoin transaction
by
voileipa
on 07/03/2015, 11:09:08 UTC
Post
Topic
Board Altcoin Discussion
Re: A SHA256/Scrypt/X11/X13/X15 genesis block creation script
by
voileipa
on 07/03/2015, 09:26:58 UTC
Yeah.. I guess it can't solve the genesisblock of e.g. PeerCoin. There are some different "magic numbers" in the block, at least the CBigNum(4) -> CBigNum(9999)

https://github.com/bitcoin/bitcoin/blob/0.8/src/main.cpp#L2779
https://github.com/ppcoin/ppcoin/blob/master/src/main.cpp#L2272
Post
Topic
Board Altcoin Discussion
Re: A SHA256/Scrypt/X11/X13/X15 genesis block creation script
by
voileipa
on 06/03/2015, 23:30:48 UTC
Hi, do you know if it is possible to obtain genesis with pos coins without fixed block value?


thanks and your software is amazing

Can you be more specific?
The script accepts a value parameter:

Code:
-v VALUE, --value=VALUE
     the value in coins for the output, full value (exp. in bitcoin 5000000000 - To get other coins value: Block Value * 100000000)
Post
Topic
Board Service Announcements (Altcoins)
Re: CoinCreator - Create your own altcoin (also Blockchain explorers)
by
voileipa
on 25/02/2015, 18:17:35 UTC
Are anybody able to connect a JSON RPC to their coincreator wallets?
Remember to add the server=1 in your conf file so the qt wallet opens the rpc port.
Post
Topic
Board Service Announcements (Altcoins)
Re: CoinCreator - Create your own altcoin (also Blockchain explorers)
by
voileipa
on 01/12/2014, 18:47:14 UTC
>bitcoin derivative services
>accepting fiat

whatttt
Post
Topic
Board Development & Technical Discussion
Re: Correct steps for a delayed transaction?
by
voileipa
on 02/11/2014, 17:43:28 UTC
Hhhm.. the nLockTime is not working.

I created a transaction with locktime = 630000 but it is still included in the blockchain

https://blockchain.info/tx/18b598bd76110151d6bea797d3c10bcfdc44454303da6d74fbd3f15c5e851d0a



If all TxIn inputs have final (0xffffffff) sequence numbers then locktime is ignored.

Thanks for the response. I set the sequence number to 0 and after that my bitcoind didn't broadcast the transaction until the given block height was reached:

Code:
>./bitcoin-cli sendrawtransaction $SIGNED_RAW_TX                 
error: {"code":-26,"message":"64: non-final"}

After the block height was reached I finally got the transaction in the block chain as expected:
https://blockchain.info/tx/d61839fb690395ba638ba804c5af4bf0111ff269ca1e0b251cff737ca6189557


I hope all nodes will relay (now and in future) transactions with custom nLockTimes and sequences!
Post
Topic
Board Development & Technical Discussion
Re: Correct steps for a delayed transaction?
by
voileipa
on 02/11/2014, 14:20:08 UTC
Hhhm.. the nLockTime is not working.

I created a transaction with locktime = 630000 but it is still included in the blockchain

https://blockchain.info/tx/18b598bd76110151d6bea797d3c10bcfdc44454303da6d74fbd3f15c5e851d0a

Post
Topic
Board Development & Technical Discussion
Topic OP
Correct steps for a delayed transaction?
by
voileipa
on 09/09/2014, 12:59:09 UTC
I'm trying to create create a delayed transaction for myself. I'm using nLockTime and the following steps. The situation what I'm trying to reach is that there are 1 BTC that is not reachable until 10 000 blocks are found.

Are the following steps correct?

1. I create a new key-address pair. (KEY1 1Address1)
2. I send 1BTC to address 1Adddress1
3. I create new key-address pair. (KEY2 1Address2)
4. I create a transaction with nLockTime (currentblockheight + 10000). The input is 1Address1 and output 1Address2. I sign it with KEY1. HOWEVER, I do not broadcast the transaction.
5. I destroy KEY1.
6. Now I have a transaction, which is now valid until 10 000 blocks are found and I store it. After 10 000 blocks are found I broadcast the transaction and unlock the bitcoins with KEY2.

Does this work or can I just replace the nLockTime in the transaction with 0, so the transaction becomes instantly valid?
Post
Topic
Board Altcoin Discussion
Re: Altcoin where coins become unusable after some time?
by
voileipa
on 09/09/2014, 08:59:56 UTC
Unlike most altcoins, there would be no reward halving: e.g. every block will _always_ contain 1000 coins.

This way, there is really no "incentive" to mine and hold coins. But they can be spent e.g. for voting or injecting stuff to the blockchain.

Just popping some ideas here..
Post
Topic
Board Altcoin Discussion
Re: Altcoin where coins become unusable after some time?
by
voileipa
on 09/09/2014, 08:52:20 UTC
Altcoin where coins become unusable after some time? (so you have to use them)

Are there any?

i dont really see a point for this, as you can always send coins to different addresses you have control of.

The coins would be traced to the block they were created in. If that block is e.g. "1000 blocks old" the coins are invalid.
Post
Topic
Board Altcoin Discussion
Re: A SHA256/Scrypt/X11/X13/X15 genesis block creation script
by
voileipa
on 09/09/2014, 08:27:44 UTC
Added X11/X13/X15 support.
Post
Topic
Board Altcoin Discussion
Topic OP
Altcoin where coins become unusable after some time?
by
voileipa
on 09/09/2014, 08:23:54 UTC
Altcoin where coins become unusable after some time? (so you have to use them)

Are there any?