Author

Topic: Can someone make a testnet BTC exe? (Read 216 times)

copper member
Activity: 70
Merit: 3
March 22, 2024, 06:05:26 AM
#13
I've got that wallet. I'm looking to separate the price of the testnet coins
Okay, so the actual use-case is to use a separate fiat-value which most wallets do is just stamp the value of mainnet to testnet.
(which is reasonable considering testnet has no "real" price)

Without questioning the rationale to that (I saw your other posts), it's quite doable by dirty-editing the price ticker APIs set by your favorite wallet.

For example, in Electrum's "exchange_rate.py" script; editing any USD price class to an API that supports testnet should show you the testnet price when that ticker is selected.
For example; from Bitpay's mainnet API to coinpaprika's testnet API:
Code:
class BitPay(ExchangeBase):

    async def get_rates(self, ccy):
        json = await self.get_json('api.coinpaprika.com', '/v1/tickers/tbtc-bitcoin-testnet')
        return {'USD': to_decimal(json['quotes']['USD']['price'])}

Then, by selecting Bitpay in the GUI's menu: "Tools->Preferences->Fiat", Fiat Currency: "USD" Source: "Bitpay"
It will show testnet price based from coinpaprika's API (link) instead (but will also apply to mainnet):


If you really want it, edit the mentioned code and compile it yourself: github.com/spesmilo/electrum/blob/master/README.md#creating-binaries
I run Electrum from source to test it as quickly as possible BTW, so I don't have a compiled binary.

This is genius i didnt know coinpaprika had tBTC price from altquick.com thats what tBTC community needs.
legendary
Activity: 2856
Merit: 7410
Crypto Swap Exchange
March 22, 2024, 05:08:31 AM
#12
If you don't mind Android wallet, check https://play.google.com/store/apps/details?id=de.schildbach.wallet_test. Other than that, i don't know anyone else who bother create testnet-only version of their Bitcoin wallet sofrware.
I've got that wallet. I'm looking to separate the price of the testnet coins

No wonder your question is unusual, you fall into XY Problem.
legendary
Activity: 2394
Merit: 5531
Self-proclaimed Genius
March 22, 2024, 12:49:54 AM
#11
I've got that wallet. I'm looking to separate the price of the testnet coins
Okay, so the actual use-case is to use a separate fiat-value which most wallets do is just stamp the value of mainnet to testnet.
(which is reasonable considering testnet has no "real" price)

Without questioning the rationale to that (I saw your other posts), it's quite doable by dirty-editing the price ticker APIs set by your favorite wallet.

For example, in Electrum's "exchange_rate.py" script; editing any USD price class to an API that supports testnet should show you the testnet price when that ticker is selected.
For example; from Bitpay's mainnet API to coinpaprika's testnet API:
Code:
class BitPay(ExchangeBase):

    async def get_rates(self, ccy):
        json = await self.get_json('api.coinpaprika.com', '/v1/tickers/tbtc-bitcoin-testnet')
        return {'USD': to_decimal(json['quotes']['USD']['price'])}

Then, by selecting Bitpay in the GUI's menu: "Tools->Preferences->Fiat", Fiat Currency: "USD" Source: "Bitpay"
It will show testnet price based from coinpaprika's API (link) instead (but will also apply to mainnet):


If you really want it, edit the mentioned code and compile it yourself: github.com/spesmilo/electrum/blob/master/README.md#creating-binaries
I run Electrum from source to test it as quickly as possible BTW, so I don't have a compiled binary.
copper member
Activity: 70
Merit: 3
March 21, 2024, 11:32:35 AM
#10
Why?
Without a valid reason, no one will think about creating a dedicated testnet wallet for you for free.
If you're willing to pay (in bitcoins, not testnet coins), you can post it in the services board: /index.php?board=52.0

What's the difference in using Bitcoin Core: bitcoin-qt --testnet? That should work if you need the whole testnet blockchain and a wallet.
Otherwise, any other wallet that supports testnet will do.

I saw the Bitcoin core has the testnet wallet option in it.



I don't  really  get your question...
If you mean an exe app that stores testnet btc, there are wallets that allow testnet  btc mode like Electrum and Bitcoin  core .
You can just swithch to testnet mode by launching the exe in a testnet mode,in bitcoin core current installation  using the GUI, the testnet  is also installed along with your standard  bitcoin core separately by default.
If this seem not to be what you meant then elaborate  more......


I know about those wallets i mean one that is dedicated to the testnet only the testnet.

If you don't mind Android wallet, check https://play.google.com/store/apps/details?id=de.schildbach.wallet_test. Other than that, i don't know anyone else who bother create testnet-only version of their Bitcoin wallet sofrware.

I've got that wallet. I'm looking to separate the price of the testnet coins
legendary
Activity: 2856
Merit: 7410
Crypto Swap Exchange
March 21, 2024, 05:43:40 AM
#9
I don't  really  get your question...
If you mean an exe app that stores testnet btc, there are wallets that allow testnet  btc mode like Electrum and Bitcoin  core .
You can just swithch to testnet mode by launching the exe in a testnet mode,in bitcoin core current installation  using the GUI, the testnet  is also installed along with your standard  bitcoin core separately by default.
If this seem not to be what you meant then elaborate  more......


I know about those wallets i mean one that is dedicated to the testnet only the testnet.

If you don't mind Android wallet, check https://play.google.com/store/apps/details?id=de.schildbach.wallet_test. Other than that, i don't know anyone else who bother create testnet-only version of their Bitcoin wallet sofrware.
full member
Activity: 266
Merit: 119
Keep Promises !
March 20, 2024, 10:59:06 AM
#8

I know about those wallets i mean one that is dedicated to the testnet only the testnet.
I don't  know your intentions  but running testnet mode is only dedicated  to testnet  there's  no interference  from your standard wallet, coins from testnet can't  be spend in real life but if you still insist  on the testnet only wallet you can get the source code and eradicate what you don't  need just as it  been  advised by  Loyce but you will need understanding on how the code works or you can also practice what as been listed above by members
sr. member
Activity: 192
Merit: 262
trustdice.win (The Top of Crypto Casinos)
March 20, 2024, 09:08:34 AM
#7
I know about those wallets i mean one that is dedicated to the testnet only the testnet.

Why would you make it complicated, if you can actually get it in an easy way. Suppose you get testnet.exe the way you want, I don't think it will have any better usability than bitcoin-qt/bitcoind -testnet can provide.
However, if you want to do a more complex experiment, which Bitcoin-qt might not be able to execute those commands, then I suggest you to use bitcoinjs-lib (in testnet network).
legendary
Activity: 3346
Merit: 4911
https://merel.mobi => buy facemasks with BTC/LTC
March 20, 2024, 06:09:15 AM
#6
if it's just a convenience type of thing, you could create a .bat (if you're running on windows) or an .sh (if you're running on linux/mac) to start core, electrum, sparrow, ... in testnet mode.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
March 20, 2024, 05:54:40 AM
#5
i mean one that is dedicated to the testnet only the testnet.
The whole point of testnet is to test things that you can use in the real wallet later. Since it's open source, you can strip out anything related to the real wallet, but it's kinda pointless to do.
legendary
Activity: 2394
Merit: 5531
Self-proclaimed Genius
March 20, 2024, 03:45:03 AM
#4
Why?
Without a valid reason, no one will think about creating a dedicated testnet wallet for you for free.
If you're willing to pay (in bitcoins, not testnet coins), you can post it in the services board: /index.php?board=52.0

What's the difference in using Bitcoin Core: bitcoin-qt --testnet? That should work if you need the whole testnet blockchain and a wallet.
Otherwise, any other wallet that supports testnet will do.
copper member
Activity: 70
Merit: 3
March 20, 2024, 02:36:30 AM
#3
I don't  really  get your question...
If you mean an exe app that stores testnet btc, there are wallets that allow testnet  btc mode like Electrum and Bitcoin  core .
You can just swithch to testnet mode by launching the exe in a testnet mode,in bitcoin core current installation  using the GUI, the testnet  is also installed along with your standard  bitcoin core separately by default.
If this seem not to be what you meant then elaborate  more......


I know about those wallets i mean one that is dedicated to the testnet only the testnet.
full member
Activity: 266
Merit: 119
Keep Promises !
March 18, 2024, 01:31:54 AM
#2
I don't  really  get your question...
If you mean an exe app that stores testnet btc, there are wallets that allow testnet  btc mode like Electrum and Bitcoin  core .
You can just swithch to testnet mode by launching the exe in a testnet mode,in bitcoin core current installation  using the GUI, the testnet  is also installed along with your standard  bitcoin core separately by default.
If this seem not to be what you meant then elaborate  more......
copper member
Activity: 70
Merit: 3
March 18, 2024, 12:40:26 AM
#1
I want a exe tBTC wallet testnet3. Can someone make one?
Jump to: