Search content
Sort by

Showing 15 of 15 results by R.I.U. iol
Post
Topic
Board Development & Technical Discussion
Re: Merging two encrypted wallet.dat files
by
R.I.U. iol
on 14/04/2020, 16:39:31 UTC
I don't know if this helps, but you can:
export the private keys from both wallets
then create a new wallet
import both private keys into the new wallet
your new wallet will have all the addresses of the two old wallets
Post
Topic
Board Project Development
Re: First beta release of Orange, a blockchain explorer for Bitcoin Core
by
R.I.U. iol
on 14/04/2020, 16:27:36 UTC
Nice release, does the use RPC calls or parse the blocks itself?
Post
Topic
Board Development & Technical Discussion
Re: What are the setup costs of developing your own bitcoin blockchain explorer
by
R.I.U. iol
on 02/01/2020, 17:36:30 UTC
This is quite a huge amount of money since the OP said he/she wanted to gain personal experience of developing blockchain explorer.
Do you have any idea if, for example, I'll do it first locally, just for fun or experience just what like OP wants, Do I still need those 500GB of space
or minimum/DELL R200 with 4GB of ram and an old Pentium CPU just what you told?

Yes, you will still need to store all those data locally
Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: What are the setup costs of developing your own bitcoin blockchain explorer
by
R.I.U. iol
on 02/01/2020, 09:57:39 UTC
⭐ Merited by vapourminer (1)
You need at least to run a full node.
You also need to index properties that the users might search (such as all addresses, transactions, block heights, which a full node does not do by default)
Accoring to blockchair (https://blockchair.com/dumps), it's entire database with indexes is 900 GB (compared to ~250 GB for the raw blockchain alone)
Post
Topic
Board Project Development
Merits 1 from 1 user
Re: Continuous Proof of Bitcoin Burn & Bitcon-peg w/o oracles nor trusted bridges
by
R.I.U. iol
on 28/12/2019, 00:08:41 UTC
⭐ Merited by OgNasty (1)
I didnt read the whole thing, but do you mean something like this: https://www.blockchain.com/btc/address/1CounterpartyXXXXXXXXXXXXXXXUWLpVr ?
Post
Topic
Board Development & Technical Discussion
Re: Crypto.BI Toolbox - Explore blocks, transactions and addresses locally
by
R.I.U. iol
on 21/12/2019, 09:50:21 UTC
This is really nice. Is there screenshots?
Post
Topic
Board Development & Technical Discussion
Re: BlockReduce: Scaling Blockchain to human commerce
by
R.I.U. iol
on 21/11/2019, 06:40:36 UTC
is there any update on this? Is this still in developement?
Post
Topic
Board Bitcoin Discussion
Re: Will BTC Ever Increase the Block Size Cap?
by
R.I.U. iol
on 20/11/2019, 21:49:36 UTC
Quote
yep LN will cause more users to end up using litewallets as thy would see less point in running a full node if they only touch the btc network once every 6 months.

Using the same logic, won't bigger blocks also reduce the incentive to run full nodes, since they would take up much more space on the HD and thus be more expensive for users.
Post
Topic
Board Development & Technical Discussion
Re: -importaddress takes >20min
by
R.I.U. iol
on 19/11/2019, 22:05:06 UTC
Because it scans the entire blockchain to see what transactions have an outout to to that address, so you can see it's balance and UTXO.
Post
Topic
Board Development & Technical Discussion
Re: Goxplorer, a Bitcoin blockchain parser package written in golang
by
R.I.U. iol
on 19/11/2019, 20:43:37 UTC
Very nice release, a lot of ppl here were looking for block parsers  Smiley
Post
Topic
Board Altcoin Discussion
Re: I want to build a new mail system
by
R.I.U. iol
on 19/11/2019, 02:16:51 UTC

When you send mail in this system, your mail will be encrypted by your public key, and you need private key to unlock the mail for reading.


FYI, this is wrong. It has to be encrypted by the reciever's public key, not your public key.

It has to be encrypted by your reciever's public key to ensure only they can decrypt it, and it has to be signed by your private key so they know it's coming from you.
Post
Topic
Board Bitcoin Technical Support
Re: Is there an easy way to track a connection between 2 bitcoin adresses?
by
R.I.U. iol
on 01/09/2019, 20:54:29 UTC
Finding a connection between two address is the same problem as finding if there is a path between two nodes in a cyclic directed graph. Unfortunately the runtime complexity is linear (see A* or Dikstra's algorithm), and given that there are about 500 million trx and another 1 billion unique addresses used means finding a path can last from minutes to hours.
So you are unlinkely to see a website offer this service, your best bet is to set this up locally on your machine if your hardware is good enough and run the algorithm yourself.
Post
Topic
Board Project Development
Re: [CLOUD] New Bitcoin and Altcoin cloud API platform - BloqCloud v1.0 released
by
R.I.U. iol
on 26/08/2019, 03:44:23 UTC
Looks like a cool project!
So we can easily run a full btc node using this?
Post
Topic
Board Altcoin Discussion
Re: why did you choose altcoin?
by
R.I.U. iol
on 03/08/2019, 17:34:04 UTC
Do you guys realize you can buy fractions of a bitcoin right???
Post
Topic
Board Altcoin Discussion
Topic OP
PSA: Any POW altcoin that you can mine on your phone is useless
by
R.I.U. iol
on 21/07/2019, 21:23:38 UTC
The whole point of POW is to secure the network with lots of hash calculations (hence the term 'work'). Phones have very little power (compared to asics, or even desktop cpu/gpu), so is it impossible for coins mined through phones to have any value and have a secure network at the same time.