Bitcoin Forum
July 02, 2024, 11:33:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 ... 1160 »
3101  Bitcoin / Development & Technical Discussion / Re: address 14NWDXkQwcGN1Pd9fboL8npVynD5SfyJAE: not understanding weird transaction on: December 08, 2022, 12:34:13 PM
The only way to check it is to find out who sent these and ask them how or why they did it like that. Everything else is just guesswork.
3102  Bitcoin / Development & Technical Discussion / Re: address 14NWDXkQwcGN1Pd9fboL8npVynD5SfyJAE: not understanding weird transaction on: December 08, 2022, 10:32:01 AM
yes, but I'm asking about not private key, but nonce used in transaction.
this is weird.

that nonce k is the same as message hash in first 16 bytes
It could be a lot of things, as I said it could be someone just having fun trolling others watching this puzzle key or it could be a broken code that someone was testing using this key maybe someone watching the key to steal the coins sent to it.

When generating k deterministically using RFC6979 you use the message digest (z) too. A broken implementation could have messed up and after computing the final HMAC copied the result in the second half of an output that had the original digest in its first half.
3103  Bitcoin / Development & Technical Discussion / Re: address 14NWDXkQwcGN1Pd9fboL8npVynD5SfyJAE: not understanding weird transaction on: December 08, 2022, 08:35:56 AM
so : someone has cracked it :
Question 1: How and why it has been happen?
This is a very old puzzle where someone created a brainwallet using the phrase "bitcoin is awesome" and the private key of this address has been known for the past 10 years. If by "cracked it" you mean solved the brainwallet puzzle, then yes.
As for the Question, in later years others may have tried to have some fun with the existing puzzle by sending coins there and/or spend the coins in this known address with weird nonce values.
3104  Bitcoin / Development & Technical Discussion / Re: Question about the lock script on: December 08, 2022, 08:16:24 AM
usually I see that lock script: "OP_DUP OP_HASH160 <key> OP_EQUALVERIFY OP_CHECKSIG" and the type of the transaction is "pubkeyhash"
It is not a "key" in that script it is a hash or more specifically a 160-bit hash. It is also called pay to pubkey hash or P2PKH for short.

Quote
Now I have this lock script: "OP_HASH160 <key> OP_EQUAL" and the transaction type is "scripthash".
Same as above it is a hash not a key and it is called pay to script hash or P2SH for short.

Quote
How is it possible to spend this UTXO?
P2SH scripts are a special case that were added many years ago through a soft fork that is explained in BIP-16[1]. The way these scripts are evaluated is a two step process.
First step is what is normally done in any other script (run signature script then run pubkey script) but a copy of the top stack element before running the pubkey (or locking) script is stored for next step.
Second step is evaluating that item we duplicated before (the top stack element) as a script called Redeem Script. Then run that script too using the existing items in the stack the rest is the same (eg. push some data to the stack, pop data, run CheckSig ops, etc.).

Keep in mind that the Redeem Script can be anything from a simple OP_TRUE to complex nested conditionals with locktimes and the common multi-sig scripts with multiple public keys inside.

[1] https://github.com/bitcoin/bips/blob/master/bip-0016.mediawiki
3105  Bitcoin / Bitcoin Discussion / Re: Nigerian government set to tax bitcoin and crypto transactions on: December 08, 2022, 08:10:27 AM
We have to wait for the actual law to be passed and for more reliable news to come out but based on what every other country has done it always comes down to using centralization to tax people's finances. For example they could be taxing the profit people make from trading bitcoin (and shitcoins) they do on centralized exchanges whether domestic or foreign. In some cases we've seen governments attempting to create a domestic exchange just to be able to have more control and insight into what people do so that they can tax it easier.
And of course another way is to use merchants and payment processors (both are centralized) to take additional taxes.

In any case I don't think it is a big deal though since we are already paying taxes when we trade in other markets like stocks market or when we run a business and have to pay taxes on the income and more.
3106  Bitcoin / Bitcoin Discussion / Re: 4000BTC encrypted wallet.dat (HELP NEEDED) on: December 08, 2022, 06:33:16 AM
I know that the password is 9-10 characters long, contains "r", "u", "@" and "." and I know that the password is an email. Is this even worth decrypting? Or it is impossible to get the password just based on this information?
Assuming you haven't been scammed (which is unlikely!), it is not possible to brute force a passphrase that is 9-10 characters long since the permutation is just too huge (digit_length9 + digit_length10 = ~4e+18), your knowing 4 characters without knowing their position is not going to change anything.
Knowing the email domain (eg. gmail.com) would significantly reduce the size of the password although 9-10 chars total seems too short then.
3107  Other / Beginners & Help / Re: Blockchain can underatand , but BTC price where it comes on: December 08, 2022, 04:16:56 AM
I am confused about how BTC price comes from blockchain?
So you have been on this forum ever since 2017 and have made 1338 posts and you think bitcoin price comes from blockchain? May I ask what have you been doing all this time and what have you been reading on this forum?

Most importantly if you don't even understand the price and the market how do you claim that 2023 is going to be bearish?!!

I know the economics, demand and supply determines the price. But here how technically price comes from?
Your post is still unclear.
Price of bitcoin (like everything else) is determined based on supply and demand. It all happens in the market and the market consists of mostly of centralized exchanges, half a dozen of them are the main ones with more smaller exchanges and also altcoin exchanges that list bitcoin/fiat markets. There is also decentralized P2P markets (DEX, OTC trades, etc.) that don't have the same direct effects on the price but they indirectly affect the supply and demand equilibrium.
3108  Bitcoin / Development & Technical Discussion / Re: Format of the keys on: December 08, 2022, 04:01:41 AM
Actually every wallet or key took I've seen uses WIFs which is base58 encoding and they may show the hexadecimal format on top of that but not as the main encoding.

In the Bitcoin world, the private keys we see are usually encoded with Base58Check, but in other applications they are typically encoded as base-64 after being encrypted.
That's right, the storage encoding is usually different from the encoding used for representing the keys. But that too depends on the software. For example sometimes they just store the key (encrypted or unecrypted) as binary in a .dat file so there is no string encoding used there, or in case of Electrum if the key is not encrypted they would be stored in Base58 form.
3109  Bitcoin / Development & Technical Discussion / Re: Randomly picking 24 words from the BIP39 wordlist on: December 08, 2022, 03:53:25 AM
wait so it is useless as an error detection tool? any mistake you make in one of the words there's a 1 in 16/1 in 256 chance it will not raise any flag and be happy to let you use that set of words. if that's the case then i'm not sure what purpose it serves.
Checksum in mnemonic algorithms serve more purpose than just error detection. For example in BIP39 it also works as padding since each word is 11 bits and 12 words would be 132 bits while it is easier to generate entropy that is multiple of 8-bit. And in Electrum they act as the version to announce the child address type that has to be derived and their derivation path.
3110  Economy / Economics / Re: Somebody’s been on a gold-buying bender. It’s not clear who — or why. on: December 07, 2022, 08:08:46 AM
As far as I know, until recently, China did not own very many modern technologies in the field of microelectronics. 

Now the Chinese company Huawei is trying to make modern processors on its own.  Previously, technologies for the production of modern microelectronics were concentrated in the USA, Taiwan and Holland (equipment for photolithography).
You are focusing on one thing (technology) in a massive market with tens of thousands of different goods that are being traded between countries. For example I heard in early days of the Russian invasion that Europe has stopped exporting simple things like dairy products and detergents to Russia! That market could easily be replaced with China (and others) and has nothing to do with advanced technologies.

Quote
For example, the European Union and the United States have banned the import of many goods into Russia.  Including strategically important Finnish 3D printers.  And no gold reserves allow obtaining these technologies, which are very important for the technological development of the country.
There are a couple of problems with that logic. First of all the technology didn't come from outer space, same people who invented those can reinvent them elsewhere. Secondly almost everything I saw the West banned for exports to Russia can be acquired from elsewhere namely countries that don't give a crap about those sanctions.
I'm not very familiar with 3D printer tech but I know for a fact that there are at least a dozen Iranian companies that are manufacturing advanced 3D printers that could easily replace the European counterparts just like how the Iranian made gas turbines can (and probably did already) replace the German Siemens ones.
Gold is very useful in trades like this.
3111  Economy / Economics / Re: Manufacturing orders to China down 40% in unrelenting demand collapse on: December 07, 2022, 07:42:48 AM
This is part of the ongoing economic war that has been going on for a long time now.
The Big Shuffle part of it is actually interesting to watch. For example China reduces export to US while significantly increases it to elsewhere specially to Russia after they were sanctioned and the West stopped a lot of exports to Russia. On the other hand US is starting to import goods from elsewhere even though I wonder how much EU can replace China specially in this heavily competitive world where production cost (hence product prices) are heavily increasing in EU with expensive labor and energy.
3112  Bitcoin / Bitcoin Discussion / Re: Would Bitcoin no longer be Bitcoin if it were adopted by everyone in the world ? on: December 07, 2022, 07:26:48 AM
Bitcoin would actually become a combination of both fiat and investment asset.
You mean "money" not "fiat" because fiat is a currency as opposed to money that is a currency with fixed value. Which also means the two points you mentioned are contradictory concepts. Bitcoin can not be both money (fixed value) and an investment at the same time. It can be a store of value though which is what money is supposed to be.

Quote
If that happened, what's the point of making Bitcoin worldwide acceptable while losing its value and nature of Bitcoin ?
Your confusion is because you think bitcoin is an investment but that was never the case. Bitcoin was created to be a currency that you use as a medium of exchange. That's the nature of bitcoin not an investment.

Satoshi created bitcoin intending to replace the centralized fiat system
Not "replace" but only to offer an alternative solution.
3113  Other / Beginners & Help / Re: Blockchain can underatand , but BTC price where it comes on: December 07, 2022, 07:19:24 AM
I am confused about how BTC price comes from blockchain?
So you have been on this forum ever since 2017 and have made 1338 posts and you think bitcoin price comes from blockchain? May I ask what have you been doing all this time and what have you been reading on this forum?

Most importantly if you don't even understand the price and the market how do you claim that 2023 is going to be bearish?!!
3114  Bitcoin / Development & Technical Discussion / Re: Question about libsecp256k1 multiplication constant on: December 07, 2022, 06:06:23 AM
and never has to multiply private keys together.
If you want to multiply private keys you are looking in the wrong place. Field elements are the x and y coordinates of the points on the curve so the arithmetic used there are mod P. If you want to multiply private keys (ie. multiplication mod N) then you should look at scalar class which has a multiply method.
3115  Other / Politics & Society / Re: Is there a movement for change in Iran? on: December 07, 2022, 04:41:31 AM
im just gonna react to them without quotes.
You are not reacting to the facts I mentioned earlier which is why you didn't quote them. You are just venting out.

First of all hijab is not compulsory in islam
That's off topic since the recent riots had nothing to do with Hijab to begin with, specially with rioters in cities like Zahedan and Kurdistan who are the origin of the unrest and at the same time are quite radical when it comes to how women should dress!

That being said, there is absolutely no doubt that iran has many foreign and domestic enemies
That's funny because if you really believed that you would have never followed the Western media for news or worse the Saudi backed terrorist media.

You think BBC is telling you the truth? The same BBC that barely covers how British police over a year ago kidnapped, raped, murdered and finally burned the body of Sarah Everard before dumping it in a pond and at the same time has produced 170000 fake content involving an Iranian woman who died of natural causes because of a prior brain surgery about 60 days ago!
3116  Bitcoin / Development & Technical Discussion / Re: Format of the keys on: December 07, 2022, 04:19:16 AM
In my point of view, Bitcoin private key that is represented in many ways. These private keys 🗝️ are mostly in Hexadecimal numbers or they can be in 64 numbers long.
This key can be in 0-9 or A-F characters long.
Actually every wallet or key took I've seen uses WIFs which is base58 encoding and they may show the hexadecimal format on top of that but not as the main encoding.
3117  Economy / Economics / Re: Somebody’s been on a gold-buying bender. It’s not clear who — or why. on: December 06, 2022, 01:28:26 PM
In my opinion, gold is a rather useless tool for circumventing sanctions. 
Gold is not used to circumvent sanctions, it is used to replace US dollar as the global currency. There are other alternatives including bitcoin that countries are using, the best example of replacements is Europeans buying energy from Russia using Ruble as the replacement for USD not to circumvent sanctions.

Quote
Gold bars are all numbered and registered, and it is very easy to limit their turnover.  At the same time, gold is a very inconvenient means of payment.  With gold, there are a lot of questions about its storage, transportation and authentication.  Gold in the gold and foreign exchange reserves of the Central Bank is good, but adequacy, reliability and trust are much more valuable in the financial sector. 
We aren't talking about two dudes in trench coats in a dark alley doing a shady trade lol. We are talking about countries with their government and central banks making an official trade. The authenticity, purity, etc. of the gold bars is ensured by that country and is tested by the other country.
The transportation of it is also pretty simple, you just send a plane and fill it with gold bars and bring it back home Wink

Quote
Carry across the country to the border with China to exchange for Poco, Redmi and Xiaomi smartphones? 
Do you honestly think silly smartphones are the only thing that literary the biggest economy in the world has to offer?!!
3118  Other / Politics & Society / Re: Green energy falacy: Switzerland could ban electric vehicle during energy crisis on: December 06, 2022, 01:17:03 PM
Electric cars have always been mostly hype where they basically move the pollution from the consumer (car) to the producer (electric company) and so far it is damaging the environment more and it costs more too. In case of energy crisis like these days in EU there will be shortage of all kinds of energy sources from fossil fuel to electricity specially if a country itself does not have these resources already (have to import) and most of European countries are like this.
3119  Bitcoin / Bitcoin Discussion / Re: Bitcoin will not become the world currency. on: December 06, 2022, 01:06:53 PM
Bitcoin is a currency whether you accept it or not and it was never supposed to become the "world currency" it is supposed to be a global currency which it is.

Governments regulate the economy by issuing money,
Wrong. Governments regular the economy by setting rules and enforcing them not by printing money.

Quote
Bitcoin, on the other hand, cannot be controlled, which is why we like it, but also why governments don't like it.
It depends on the country and the government. This is not a global issue.
3120  Bitcoin / Bitcoin Discussion / Re: A Negative Relationship Between the Monetary System and Bitcoin on: December 06, 2022, 04:37:52 AM
as the monetary of fiat system of a country gets worse
It depends on what you mean by this. The monetary system everywhere has already failed and it is getting worse every day. Simply because it is centralized and has no cap on the amount of money they keep printing. For example US with the biggest national debt is the biggest money printer in the world.

But people only invest in bitcoin when they face inflation, which is the case in countries like El Salvador and "Central Africa Republic" that you mentioned. But if they face recession, they won't have any money to invest in bitcoin which is why we are seeing bitcoin price dropping since most of the world (namely US and EU) are facing both inflation and recession.

So in short if the monetary system fail leads to inflation alone we'll see more bitcoin investment but if it leads to recession we see less.
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 ... 1160 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!