Bitcoin Forum
December 10, 2025, 12:37:08 PM *
News: Latest Bitcoin Core release: 30.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Service Discussion (Altcoins) / Swap WBTC to BTC make BTC anonymous? on: June 02, 2021, 02:58:11 PM
Hi,
If I have WBTC on ETH network, then I use curve.fi to swap WBTC from Ethereum network to BTC network, is the swap info, btc destination address and/or other info stored in any database or even in the main ETH network?

Same question can be done in a BTCB to BTC swap info with binance bridge.

Thank you.
2  Alternate cryptocurrencies / Altcoin Discussion / WBTC to BTC create anonimous BTC? on: February 15, 2021, 07:32:19 AM
Hi,

for example, I have 1WBTC and go to Curve.fi to set it as input, then, a new BTC address as output.
If everything is ok I will have 0.99817926 BTC into a new BTC address.

Can any trace my ETH address where WBTC was stored from new BTC address?

Thank you.

3  Economy / Trading Discussion / Private transactions and/or private and anonymous exchange service? on: January 20, 2021, 06:29:42 AM
hi,
If I have coins in ETH1 address and I create ETH2 on same wallet, how can I transfer coins from ETH1 to ETH2 to ensure people who knows ETH1 lose trace and make coins private in ETH2 again?

For example I have 10 coins in ETH1, then I transfer 1 to Coinbase, then Coinbase knows that I have 9 coins in my wallet. How to make that 9 coins private again?

Option 1: use no KYC services like simpleswap or stealthex.

are there alternatives?
thank you.
4  Alternate cryptocurrencies / Altcoin Discussion / Relationship between addresses of same wallet on: January 19, 2021, 11:09:18 AM
Hi,
I wish to know the relationship between accounts created with same seed:

Create a wallet, save the 24 word seed, (electrum, ledger,...) and gives me, for example, an ETH address: ETH1
Wallets can create new addresses, then I create ETH2. I have ETH1 and ETH2 adresses on wallet.

If someone knows that ETH1 is property of John Smith, there is possibility to find relationship between ETH2 with ETH1?

Same question in different way:
If a thief know that ETH1 is property of John Smith, John Smith must create ETH2 or must create a new wallet to be "anonymous" again.

Thank you.
5  Alternate cryptocurrencies / Mining (Altcoins) / ATI 5700 vgpu lower than 750mV? on: November 02, 2020, 01:54:02 PM
Hi, I have a 5700 xt and non xt and I set 750mV in bios for all cards. Gpu clocks arround 1300-1400 is working fine.
Any of you have experience lowering voltage under 750mV on this cards?

Could you post vgpu and gpuclock?

Thank you.
6  Alternate cryptocurrencies / Mining (Altcoins) / 3080 eth mining hashrate on: September 15, 2020, 08:52:43 AM
Has anyone bought and tested a 3080 and put Claymore on it?
I only read rumors about 80 - 115 MH at 250 - 320 W
Thank you
7  Economy / Exchanges / is faa.st a scam? on: September 11, 2020, 02:18:46 PM
Hi to all,

https://faa.st/ is showing as "make transactions directly from your wallet", making a search "faa.st review" I can find https://bitcoinexchangeguide.com/faast/ and has two scam alert comments.

Any of you know anything about this application?
Thank you
8  Bitcoin / Bitcoin Discussion / Trade crypto from ledger hardware wallet on: September 07, 2020, 06:48:03 PM
Hi to all,
would be possible to trade (btc-usdt, eth-btc, ltc-btc,...) directly from ledger hardware wallet?

From ledger live app is available coinify partner but seems is only for buy crypto from fiat using your credit card and requires verification.

what about faa.st?
what are the any anonymous crypto trade alternative?

Thank you.
9  Bitcoin / Development & Technical Discussion / How to generate bitcoin hashing message to be signed with openssl on: October 10, 2019, 09:39:56 AM
Hi,

I have the private key 7a01628988d23fae697fa05fcdae5a82fe4f749aa9f24d35d23f81bee917dfc3 that I transform into privkey.pem and pubkey.pem with:

Code:
function pktopu($hash){
$hexadecimal_string="302e0201010420".$hash."a00706052b8104000a";
file_put_contents("$hash.pem","-----BEGIN EC PARAMETERS-----
BgUrgQQACg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
".chunk_split(base64_encode(pack('H*',$hexadecimal_string)),64,"\n")."-----END EC PRIVATE KEY-----\n");
$out = array();
exec("openssl ec -conv_form compressed -in $hash.pem -text -noout",$out);
exec("openssl ec -in privkey.pem -pubout > pubkey.pem");
return str_replace(':', '', str_replace(' ', '', $out[6].$out[7].$out[8]));
  }

Extracted public key is: 03359ac0aa241b1a40fcab68486f8a4b546ad3301d201c3645487093578592ec8f
Seems to work.

Now I wish to sign a message: iSignedThisDataThatIs256BitsLong
In order to recieve the signature.

How I have to process this message and signature?

   file_put_contents("tmp.msg",$msg);
   exec("openssl dgst -sha256 tmp.msg > msg.sha256");

   file_put_contents("tmp.msg",$msg."\n");
   exec("openssl dgst -sha256 tmp.msg > msg.sha256");

   file_put_contents("tmp.msg",$msg."\n");
   exec("openssl dgst -sha256 tmp.msg > msg.sha256");
   $shafile = file_get_contents("msg.sha256");
   $shafile=trim(str_replace("SHA256(tmp.msg)=","",$shafile));
   file_put_contents("msg.sha256",hex2bin($shafile));

ETC.

The question is how I create a file msg.sha256 from message to be signed in order to obtain the right signature?

Any combination don't give me the right signature with:

   exec("openssl dgst -sha256 -sign $hash.pem -out tmp.sig msg.sha256",$out);
   exec("openssl dgst -sha256 -hex -sign $hash.pem -out tmp.sig.hex msg.sha256",$out);   
   exec("openssl dgst -sha256 -verify pubkey.pem -signature tmp.sig msg.sha256",$out);

signature must be: 304402205587dfc87c3227ad37b021c08c873ca4b1faada1a83f666d483711edb2f4f743022004e e40d9fe8dd03e6d42bfc7d0e53f75286125a591ed14b39265978ebf3eea36
10  Bitcoin / Development & Technical Discussion / Public key from private key and sign in php without gmp on: October 09, 2019, 03:10:06 PM
Hi,

unfortunatelly my hosting isn't updated with gmp libraries (https://www.php.net/manual/es/book.gmp.php),
need it in order to find public key from private key and complete signing process.

There is any form to work with openssl via exec or similar to get public key from private key?

I'm working with block.io and everthing is fine.

Thank you
11  Bitcoin / Development & Technical Discussion / Online bitcoin wallet service API? on: August 14, 2019, 12:06:56 PM
Hi, I'm using jsecoin to reward user content creators in my web skatebtc.com and android app, they can be rewarded in jsecoin, all works fine.

I wish automatically convert this jsecoin to BTC, but I have some technical problems:

1) Requiere a online wallet btc service with api that allow me via private key and CURL transfer coins to a BTC address. Do you know services like this?
In this wallet only will be just a 10x the minimal transfers quantity of BTC (AutoBTCPayQuantity). High security not required.

2) Wich is mínimum transfer for BTC in order to transfer fees < 10% or less? (Which is a good AutoBTCPayQuantity value?)

Thank you in advance.
SkateBTC

PD:
- Install a local wallet on a linux server would be the last option.
- On main server can't install wallet.
12  Bitcoin / Bitcoin Technical Support / Transaction to wrong wallet 18btc (possible clipboard hack) on: November 12, 2017, 08:26:42 AM
Hi,
I don't know how this occurs, I try to send 18 btc to my jaxx wallet 15zZH9CGk1ygVitNq4RTvSDkZM3sqJjGKw from my electrum wallet 1GFj8brzMK2UqA5xd4tyQ4mXUSapaF5pnk and the result is this:

https://www.blocktrail.com/BTC/tx/9965e400ded39a03e5389a3de82145da0e1aeac111893c9ada65403dfa232e9f

This not seem my jaxx wallet: https://blockchain.info/address/1ESzuTV3cLcGg83ftWunucxppSrkH65Dem

Someone hack me and replace the address?

What's goin on?

Any help would be appreciated.
13  Alternate cryptocurrencies / Mining (Altcoins) / Nvidia overclock from crontab Xubuntu on: September 10, 2017, 10:54:40 AM
Hello,

My electricity price is variable, 23 to 13 h is cheap and 13 to 23 h is expensive. First try is oc on boot:

sudo crontab -e
@reboot /home/miguel/Desktop/0.3.4b/zeff

Script zeff:
sleep 60
export DISPLAY=:0
nvidia-smi -i 0 -pl 80
nvidia-smi -i 1 -pl 79
nvidia-smi -i 2 -pl 138
nvidia-settings -a [gpu:0]/GPUGraphicsClockOffset[3]=170
nvidia-settings -a [gpu:0]/GPUMemoryTransferRateOffset[3]=380
nvidia-settings -a [gpu:1]/GPUGraphicsClockOffset[3]=170
nvidia-settings -a [gpu:1]/GPUMemoryTransferRateOffset[3]=380
nvidia-settings -a [gpu:2]/GPUGraphicsClockOffset[3]=190
nvidia-settings -a [gpu:2]/GPUMemoryTransferRateOffset[3]=-200
/home/miguel/Desktop/0.3.4b/miner --config /home/miguel/Desktop/0.3.4b/miner.cfg

nvidia-smi WORKS!
nvidia-settings DON'T

If I run directly from ssh or in a terminal it works very nice.

Any idea how can I overclock from crontab?

I am really interested in run ./oc-cheap from 13 to 23 and ./oc-max from 23 to 13 h.

Thank you.
14  Alternate cryptocurrencies / Mining (Altcoins) / Nvidia gddr5 memory straps mod on: April 23, 2017, 06:11:48 PM
Hello, I am able to export 970 bios (gm204.rom) and modify max memory frequency with MaxwellBiosTweaker, flashed and it works.

I open it with HxD editor and I can not find the memory straps as I do with amd 280x, 480,...

Anyone of you have some information about how to find the memory straps for nvidia cards? (970, 1060, 1070,... width gddr5)

Thank you.
15  Alternate cryptocurrencies / Mining (Altcoins) / Mixed amd system 280x & 480 drivers compatibility. 480 4GB mem Strap on: March 12, 2017, 02:58:33 PM
Hello to everybody,
480 4G card are available for 200 euro (Sapphire Nitro Radeon RX 480 OC 4GB GDDR5), i wish to know a few things before buy...

Polaris 480 cards work with 15.12 drivers? If the answer is no, there is a drivers that works with both 280x and 480? Wich one?

Anyone have mixed system working with claymore ethminer?


For polaris bios, the mem strap trick is the same as 280x?, just copy mem timings straps to lower MHz set?

Any help or comment would be appreciated.
16  Other / Beginners & Help / I would to buy 16x to 1x adapter. on: May 31, 2013, 04:19:34 PM
I see homerper user that sells to spain, I wisth to contact to him with a private message.

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!