Bitcoin Forum
June 30, 2024, 04:21:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 207 208 209 210 211 212 213 214 215 216 [217] 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 ... 463 »
4321  Bitcoin / Bitcoin Technical Support / Re: Binance BTC Withdrawal getting stuck - what's the best thing to do? on: June 13, 2022, 05:17:47 PM
[...]
Wanna hear something tragic? Most people use Binance.
4322  Bitcoin / Bitcoin Technical Support / Re: Binance BTC Withdrawal getting stuck - what's the best thing to do? on: June 13, 2022, 03:33:46 PM
Binance, as always, misinforms everybody:
Quote
Withdrawals on Bitcoin (BTC) Network Temporarily Suspended
There isn't such thing as "withdrawal" on the Bitcoin network to be suspended. The only thing that's interrupted, beyond their users' privacy, is the withdrawal option in their platform.

More recently, they've reduced withdrawal fees, and it looks like they're now on the other end of the spectrum being cheap on fees.
I wouldn't say so. Charging 20k sats and broadcasting a 1 sat/byte transaction makes it even more ridiculous.

I'm happy to pay you now 0.0026 BTC in order to accelerate this transaction ($60 - $70), totally mean it.
You have to create another transaction wherein you pay yourself all of your money minus 0.0026 BTC, which will go to the miner.
4323  Bitcoin / Development & Technical Discussion / Re: How to import many priv keys in one query on: June 13, 2022, 12:43:24 PM
As I understood I should use `importmulti` request. But I do not know which kind of script, address etc should place if I just need to import bulk of keys
If your private keys start with "5", it means their public key is uncompressed. So, it's P2PKH. So make sure your wallet is not descriptor.

For example which request should I run to import such of keys?
Why don't you loop importprivkey?
Code:
bitcoin-cli importprivkey "private_key" "label" false

With RPC, it'd be:
Code:
curl -u USERNAME:PASSWORD --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "importprivkey", "params": ["PRIVATE_KEY", "label_x", false]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/wallet/WALLET_NAME

Create a txt file and insert your private keys there like:
Code: ("foo.txt")
5Jza3odChZ1vfzmRSSK6qJZCuGdXYR4RndFHXx1KEWq9AiDkwCj
5JebES9429R4HNFUcX5kFgR7FAoFWxpHZ3XrvAf4bSNNxijzxRB
5J4WYCjKqG7JxY3fjj2ukusd36mXMVas42bTh2nesd6HwaFtwh7

Now create this bash script. It reads every line of your text file and runs the curl command.
Code: ("test.sh")
#!/bin/bash

for i in `seq 1 3`;
do
    line="`head -$i foo.txt | tail +$i`"
    echo $line;
    curl -u USERNAME:PASSWORD --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "importprivkey", "params": ["'$line'", "any_label", false]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/wallet/WALLET_NAME;
done

Replace USERNAME, PASSWORD and WALLET_NAME accordingly. On linux you can run it with:
Code:
bash test.sh




I'd make sure I connect to my Bitcoin server via a secure transfer protocol, because there's sensitive info transferred.
4324  Bitcoin / Development & Technical Discussion / Re: Thoughts on burner addresses on: June 13, 2022, 10:39:56 AM
Running a bitcoin node is intensive. You not only have to have a very large 500GB or so download but you also have to sync up all the time.
No, you don't, that's required only if you want to run a non-pruned full node. You can just sync and verify everything without storing all the blocks and therefore, you can run a full node with only few gigabytes of space, which is pruning, that's told to you a page now.

Exactly. Useless to people because you can't look up transactions.
You can't look up transactions of other people, but you can look up your transactions, which is the only thing that matters if you make personal use.

What's your problem exactly? I don't understand.
4325  Bitcoin / Bitcoin Discussion / Re: Bitcoin privacy on: June 12, 2022, 04:59:44 PM
i have never needed to use mixers. and for years now i have mentioned having a large stash of bitcoin from the early days, and i have never been blackmailed or sent crap.. why. because there are many ways to hide.
Except that you're provably traced. Believing that you're not traced because you've never been blackmailed shows how little things you know about privacy. There aren't many ways to hide. Transactions are public. There are companies that try to de-anonymize everyone 24/7/365.

mixers are the worse kind because your using a criminal activity to hide in most cases a not so much bad activity..
There's nothing wrong with using a mixer, just as there's nothing wrong to CoinJoin, PayJoin, exchange BTC for XMR etc. Believing that mixing means breaking the law only reveals that you're an anti-privacy, anti-freedom meathead.

as you say your worried about people finding out about your value on social media.. well then stop posting your bitcoin address on it and they will never associate you to any given address.
Which discloses, for once more, how desperately foolish you are when it comes to chain analysis. You don't have to state what's your address to have your privacy invaded. Just make a purchase and the service can trace you from your change.

mixers are a waste of time anyway. imagine you are a innocent guy doing nothing criminal [followed by other nonsense]
You don't have to be a criminal to have something to hide. And you don't need to have something to hide to want privacy. People might want to preserve their privacy, because they have nothing to show as well.
4326  Other / Beginners & Help / Re: Newbies: Don't use centralized exchanges! on: June 12, 2022, 04:36:32 PM
I know this is cliche, but how are we going to achieve this when exchanges are hanging paltry sums of $5, $10 over users' heads for "learning crypto", "verifying your account" and so on?
With education. Sure, if a person doesn't care of having every right that's written in the first page infringed, wants to trade shitcoins, upload his documents, play with a x10 margin call, leave all of his coins to the exchange and so on, it's impossible to convince him do otherwise.

But, if he's interested into actually using bitcoin because of the fundamentals, he ought to opt himself out of this opaque, weak and corrupted exchanging system. Even if he's already left footprints. Better late than never.
4327  Other / Beginners & Help / Re: Newbies: Don't use centralized exchanges! on: June 12, 2022, 04:13:50 PM
Bump.

South Korean exchanges delist Litecoin, because consensus was found to implement the MimbleWimble upgrade. They're removing it, because they don't want your privacy, it can't become more clear than that. Same has happened with Monero. As it's already proved again, fungibility ≠ privacy.

It's time for the users to start delisting the exchanges.
4328  Bitcoin / Bitcoin Discussion / Re: Bitcoin and tools. Would you like to spend/live without extra data control? on: June 12, 2022, 03:45:57 PM
Remove the physical parts or reduce their use as much as possible (camera, GPS, ... etc.)
I wouldn't say that's necessary if you're working on an open-source environment. Even a closed-source software will require permission to gain access.

Use Tor, and trusted VPN.
Use Tor. Period.

If you use VPN alone, privacy isn't guaranteed. If you connect from Tor to the VPN, it's neither good, because your VPN provider knows what you're sending through Tor. If you connect from VPN to Tor, it's, again, worse than Tor alone, because whatever you do is known from your VPN.
4329  Bitcoin / Development & Technical Discussion / Re: Bitcoin’s unspent transaction outputs (UTXO) and its long-term implications on: June 11, 2022, 04:09:00 PM
[...]
Besides taint analysis and blockchain analysis, there's this "on-chain analysis" (not sure if it's part of the latter) wherein people try to figure out what's happening to the market based on what's happening to the chain, which is also pointless. If a whale wants to create panic, they only need to move their money across their own wallet.

You acknowledge it's a nonsense, with just a quick search.
How does on-chain analysis work?

The metrics for on-chain analysis can be broadly classified into three categories — crypto market capitalization, an asset’s HODL status, and future prospects of the cryptocurrency.

No. Sense.  Tongue
4330  Bitcoin / Bitcoin Discussion / Re: Bitcoin privacy on: June 11, 2022, 03:42:25 PM
While Bitcoin’s transparent ledger provides auditability, the lack of privacy is hurting its fungibility and introduces censorship attacks of different kinds. Increasing bitcoin privacy is one solution.
No, it's not, at least that's my opinion. You don't give a solution to such political problem by improving privacy. Bitcoin's privacy isn't hurting its fungibility, centralized exchanges do. Not using those who treat it as non-fungible is a solution. Don't comply with their rules, and "taint coins" becomes a matter of the past. It's a nonsense either; a direct surveillant attack to you, along with KYC.

As a quote goes,
When centralised oppression fails, we will decentralise.

And so we do.
4331  Other / Archival / Re: Announcing Wasabi Wallet 2.0 on: June 11, 2022, 03:28:17 PM
I still think that Adam just decided to look into the future, thereby taking care of an impeccable reputation now
I think Adam decided to look into his and the devs' pockets, solely, because what he did is completely against the concept of mixing coins, enhancing privacy - Wasabi in general. Cooperating with a chain analysis company and blacklisting "illegal" outputs arbitrarily contradicts with the "Reclaim your privacy now" sign and their beliefs that privacy is a fundamental human right.

Those who need Wasabi the most can't, because those who need Wasabi the most are blacklisted. As I've already said,
Therefore, if a person uses, say, Binance, and wants to have this "little privacy" we previously outlined, can't achieve it, because their outputs have to, now, get approved by those who wants to get hidden from.

And they haven't made it clear. They're really silent when it comes to this "new feature" they've added, for the sake of their... Well, pockets solely, again.

So, let's summarize. Private? I wouldn't say so; the coordinator works with the people who work day and night to de-anonymize you. Cheap? Well, now you're paying for your own surveillance, so no. Censorship resistant? Nope. Trustworthy developers? I wouldn't, personally, trust a person who officially sells my privacy out while, ironically, preserving it is the purpose of their project.

(after all, we live in the real world)
What is this supposed to mean? What happened to Wasabi's CoinJoin before this new update? Didn't it work properly? Do you admit there can't (or shouldn't?) be privacy in the real world, 'cause that's what it seems like?
4332  Other / Archival / Re: Announcing Wasabi Wallet 2.0 on: June 11, 2022, 10:05:38 AM
I'm almost definitely missing some background history here, but since when did they start doing these collaborations you're talking about? (and with whom?)
https://bitcointalk.org/index.php?topic=5389567.0
4333  Bitcoin / Bitcoin Discussion / Re: The average joe would never accept bitcoin as means of payment due to tx fees on: June 11, 2022, 08:40:09 AM
yep things do change dramatically in the crypto space in just a short time period but things like usdc and gusd become part of the underlying operating infrastructure for the crypto market so i dont expect them to go anywhere in the next 25 years. especially usdc. 25 years is something i wouldn't bet on though.
"Stable coins" are the scamming part of the crypto space, because there's nothing stable to begin with; let alone decentralized and censorship resistant. Hold a stable coin and you have to trust the company that's responsible for their issuance and the monetary policy of the government that issues the currency the stable coin is "pegged to". Completely opaque and pointless.

1. channel announce just tells you an ID..
The channel announcement message contains the funding transaction of the two nodes, a proof that the one node owns their key, another proof that the other node also owns their key, three of which are enough to verify they have coins in reserve.

hint: how did you get their "beforehand signature".. oh yea they authorised it..
The node, I deposit, constructed and gave me the signed closing-channel transaction that spends outputs that haven't yet been published. That's what I mean "beforehand"; before I even pay them, they've given me the right to take my money back.



If you want to continue this, use your thread and don't derail this.
4334  Bitcoin / Bitcoin Discussion / Re: What is the future of bitcoin? Commodity, currency or smth else? on: June 10, 2022, 02:41:38 PM
even in gold there is a variable bottom too..
Yes, but it doesn't change based on the demand, whereas in bitcoin if there's less demand, there's tendency to drop its cost of production too, and dozens of other factors similar to gold. The significant part is that gold's cost is not related with its demand; definitely not directly connected.

i know you want to cry blue murder about daily and fortnightly variables. but you are thinking short term and only wanting to see short term charts..
look beyond your short term vision...
Difficulty is rather a long-term parameter. Ten years ago, you could mine a block with a GPU. Currently that's definitely not feasible. That's because of the demand. On the other hand, gold, while not varying much from its 2012's market value, has still the same cost, regardless of its demand.

But, yeah, what does that idiot, alt-girl has to provide to this discussion anyways?  Roll Eyes
4335  Bitcoin / Development & Technical Discussion / Re: Why I Do [Not] Want Timestamps Inside Transactions, Reloaded (Part II) on: June 10, 2022, 02:08:34 PM
When you use the phrase "double spend" it makes it sound like I'm trying to do something dishonest though. I wouldn't approach them and ask to do a "double spend".
But, you do try to double-spend money. The fact the transaction isn't included in a block, yet, doesn't make that not true. If somebody had accepted your 0-conf transaction, and you paid a miner to reverse it, you will have essentially gained the chance to spend the money again.

And it is dishonest if you ask me. You've marked your transaction as "non-RBF". This means that, besides your word, a merchant can sleep easy that there won't be nodes that will relay a transaction that double-spends. Reversing that transaction is like cheating the network. If you wanted to have the option to double-spend, you should have opted-in RBF.

But if I told them that I was just trying to speed up the same exact transaction, that's not a double spend.
If you want to speed up a non-RBF transaction, utilize child-pays-for-parent.
4336  Bitcoin / Bitcoin Discussion / Re: What is the future of bitcoin? Commodity, currency or smth else? on: June 10, 2022, 01:42:31 PM
but the ultimate bottom is the important thing.
But, there's not a nearly invariable ultimate bottom in bitcoin, that's what I pointed out. Difficulty adjustments change that temporary bottom every 2 weeks, but difficulty adjustments are affected by demand. It is, therefore, clear that the demand does affect the minimum cost, which doesn't happen with any other commodity or asset.

As you rightly said, there's a bottom value for gold, houses etc., but not for bitcoin. And I think you agree with me here:
if there was no demand. its not an instant $0 of the coin.. its a process.. the $25k minimum slowly drops as people drop out. and like i explained this slow drop is not a certainty of being $0 short term because the drop itself slowly going down can infact re-energise some desire/demand and thus keep the price active longer or re-birth a new demand.
4337  Bitcoin / Bitcoin Discussion / Re: What is the future of bitcoin? Commodity, currency or smth else? on: June 10, 2022, 11:57:30 AM
this is the hidden value line.
EG it costs people atleast $900 to mine an ounce of gold. this is golds value line
Isn't it more proper to say that there's cost? There's no "hidden value line", it just costs $X to mine gold, it costs $Y to make a house, it costs a frequently variable amount of money to mine a bitcoin.

bitcoins value is backed by the mining and acquisition costs..
But, the mining and acquisition costs in bitcoin depend (although not solely) on the demand. Difficulty does change according to the demand. Mining bitcoin isn't the same as mining gold, and therefore not a good example of the "minimum price", which is, as said, the cost.
4338  Bitcoin / Bitcoin Discussion / Re: What is the future of bitcoin? Commodity, currency or smth else? on: June 10, 2022, 10:44:10 AM
What does back bitcoin? It is more or less a game to consider that it is backed by demand.
Everything, by the same reasoning, is backed by demand. Houses, stocks, bonds, metals, food, guns, vehicles, goods etc., everything.

If new demand is "0" then the value of bitcoin may be "0" and it will be difficult to consider it as an investment or currency.
Again, that's true for everything. If there's no demand for a thing, it has no value.

If we imagine that all bitcoins are sold then new demand could appear only if bitcoin has been already treated as a currency
It's already treated as currency.

Today fiat is used to buy bitcoin on the market, then bitcoin circularizes in buy/sell process, then it come out to be changed for fiat.
Bitcoin isn't always exchanged for fiat. As said, it's a currency.
4339  Economy / Services / Re: [Closed] BitLucy.com🎰Sig & Avatar Campaign ⚽🏏🥊🏀 UPTO $112.5/w payment �� on: June 10, 2022, 10:16:24 AM
I'm temporarily removing my avatar and personal text. At least until I see some activity.
4340  Bitcoin / Bitcoin Discussion / Re: Bitcoin and tools. Would you like to spend/live without extra data control? on: June 09, 2022, 06:10:23 PM
I believe privacy and anonymity are utopias. You can never achieve 100% of both in this modern world.
Just because you can't achieve 100% anonymity, which is natural since there isn't such thing as completely anonymous but levels of anonymity, it doesn't mean they're utopias. You can and should try to hide, protect yourself from surveillance, as much as possible, for your own good. If you've given up with this, you wouldn't mind sharing your real name, home address and phone number on an internet board.

But, you won't.

I didn't say that pseudo-anonymity and kyc are one and the same.
No, you didn't. I just cleared it up.
Pages: « 1 ... 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 207 208 209 210 211 212 213 214 215 216 [217] 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 ... 463 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!