# Signet in BTC (for PC)

In this article, we’ll guide you through setting up a Signet BTC wallet to use with TON Teleport BTC.

Signet is a Bitcoin test network similar to Testnet, but specifically designed for controlled testing, making it ideal for experimenting without risking real BTC.

{% hint style="warning" %}
This tutorial is for PC users. For iOS and Android users, follow the [Mobile guide](https://tgbtc.gitbook.io/docs/getting-started/signet-in-btc-for-mobile) to get the address in BTC Signet.
{% endhint %}

## 📖 What you will learn

* set up Electrum BTC wallet in Signet mode
* get Signet BTC for testing transactions
* use Signet BTC with your Testnet TON wallet to mint tgBTC

## 📚 Before we begin

Make sure you have:

* Testnet wallet in TON (e.g., Tonkeeper from our [**previous guide**](https://tgbtc.gitbook.io/docs/getting-started/testnet-in-ton))
* [**test Toncoins**](https://tgbtc.gitbook.io/docs/getting-started/testnet-in-ton#how-to-get-test-toncoins) for use in the Testnet

## 🦄 Let's get started!

Before setting up Electrum, note that Signet mode is off by default. To use Signet instead of the default Mainnet, follow the steps below to enable it. Select your platform and complete the setup.

### 💻 **Signet on Windows**

Download the Electrum BTC wallet from the [official website](https://electrum.org/) and install it.

Copy the Electrum shortcut from your Start Menu or installation location to the Desktop.

Right-click and select `Copy`, then right-click on the Desktop and select `Paste`. Rename the new shortcut to Electrum Signet.

Right-click the Electrum Signet shortcut, select `Properties`, and add `--signet` at the end of the `Target` field. Click `OK` to save changes.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FyfuPvoA6cOJzPTVP4Oyj%2Fnew.jpg?alt=media&#x26;token=f9df099f-3d17-47f6-895c-c0326a5b9c5c" alt="" width="563"><figcaption></figcaption></figure>

Double-click the Electrum Signet shortcut to launch Electrum in Signet mode.

### 💻 Signet on Mac

Download the Electrum BTC wallet from the [official website](https://electrum.org/) and install it.

Open the Terminal by pressing Command (⌘) + Space, typing `Terminal`, and hitting `Enter`. In the Terminal, type `nano ~/Desktop/electrum` to create a launch script.&#x20;

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2Fnn7R1LjgJ4f5iszD2tTm%2F%C2%A6%D0%B1%C2%A6-%C2%A6%C2%AC%C2%A6-%C2%A6-%C2%A6%C2%A6%20T%D0%9D%C2%A6%C2%A6T%D0%90%C2%A6-%C2%A6-%C2%A6-%202024-11-14%20%C2%A6-%2016.32.55.png?alt=media&#x26;token=9dd12905-c03c-4281-93d7-2a8d0a26eae4" alt="" width="563"><figcaption></figcaption></figure>

**Then, enter the following script:**

```bash
#!/bin/bash
open -n /Applications/Electrum.app --args --signet
```

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2F2l5A5wRrLGn0RVQ0CP4C%2F%C2%A6%D0%B1%C2%A6-%C2%A6%C2%AC%C2%A6-%C2%A6-%C2%A6%C2%A6%20T%D0%9D%C2%A6%C2%A6T%D0%90%C2%A6-%C2%A6-%C2%A6-%202024-11-14%20%C2%A6-%2016.33.10.png?alt=media&#x26;token=d2899a49-bf87-4a0e-b29f-298eb0de9755" alt="" width="563"><figcaption></figcaption></figure>

Next, save and make the script executable by pressing Control + X, then Y to confirm, and `Enter`.&#x20;

After that, type `chmod +x ~/Desktop/electrum` in Terminal. This will create an executable file on your Desktop.&#x20;

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FJXQDBgoiPpbmP29rdkzS%2F%C2%A6%D0%B1%C2%A6-%C2%A6%C2%AC%C2%A6-%C2%A6-%C2%A6%C2%A6%20T%D0%9D%C2%A6%C2%A6T%D0%90%C2%A6-%C2%A6-%C2%A6-%202024-11-14%20%C2%A6-%2016.34.15.png?alt=media&#x26;token=dd33af5a-87d0-4bc4-b57b-9fb4a5a2daf3" alt="" width="563"><figcaption></figcaption></figure>

Finally, double-click the Electrum icon on your Desktop to start Electrum in Signet mode.

### 💻 Signet on Ubuntu

Download the Electrum BTC wallet from the [official website](https://electrum.org/) and install it.

Click the Ubuntu icon in the top left, type `Terminal`, and select it. In the Terminal, type `nano ~/Desktop/electrum.desktop` to create a new file.&#x20;

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FdnSP5w424JM40oMFKqbZ%2F2024-11-19%2012.58.37.jpg?alt=media&#x26;token=a8367769-e1db-47ec-a15d-53062dbb97a1" alt="" width="563"><figcaption></figcaption></figure>

**Then, add the following lines:**

```makefile
[Desktop Entry]  
Type=Application  
Name=Electrum Signet  
Exec=electrum --signet  
Icon=electrum
```

Press Control + X, then Y to confirm, and `Enter` to save.&#x20;

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FbNIVwZQI0mo1gMZLTMNl%2Fimage.png?alt=media&#x26;token=b0a36b66-c5a7-456a-a581-7d8261ce6d73" alt="" width="563"><figcaption></figcaption></figure>

In Terminal, type `chmod +x ~/Desktop/electrum.desktop` to make the file executable. This will create an executable icon on your Desktop.&#x20;

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FYW5TP4v7fiN9OPCVCEk5%2F2024-11-19%2012.58.54.jpg?alt=media&#x26;token=bee2a2ac-5946-43f5-8493-753aa7f38439" alt="" width="563"><figcaption></figcaption></figure>

To launch Signet mode, double-click the Electrum Signet icon on your Desktop.

## ⚡️ Creating a new Signet BTC wallet

Once Signet mode is enabled, launch Electrum by double-clicking the icon to start the setup wizard.&#x20;

Choose how to connect to a server; for beginners, it’s recommended to select `Auto-connect` then click Next.

Enter a name for your wallet file (the default is `default_wallet`) and click Next.

Select your wallet type (the default `Standard Wallet` is recommended) and click Next.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FxKlOuiOXPvr3fEz1xZlh%2FScreenshot%202024-11-17%20at%2015.22.16.png?alt=media&#x26;token=cd036f5e-39be-4773-851e-1f011f7d02b9" alt="" width="563"><figcaption></figcaption></figure>

When prompted, choose to create a new seed and click Next. Write down the displayed seed phrase on paper (do not print it), as it’s crucial for wallet recovery.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FLxYZkRpFBKDCFNUbzyiU%2FScreenshot%202024-11-17%20at%2015.22.26.png?alt=media&#x26;token=61b1580f-d90b-4af5-acdf-d137c887b698" alt="" width="563"><figcaption></figcaption></figure>

Re-enter your seed phrase to confirm it, then click Next. Next, set a password and click `Finish`.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FNZl4ujKEQmAOMcqfWTuH%2FScreenshot%202024-11-17%20at%2015.23.39.png?alt=media&#x26;token=4e6e27dd-809b-47f2-98c7-fa360d0cdee7" alt="" width="563"><figcaption></figcaption></figure>

Electrum will then display the main interface, and your wallet will be ready for use.

### ⚙️ Setting Electrum to display balance in BTC

At the top of the Electrum window, click on `View` and select `Coins` to enable the Coins tab, which lets you see individual coins in your wallet.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FS61yS0cJF2qmYU4tcrtN%2FScreenshot%202024-11-17%20at%2015.25.38.png?alt=media&#x26;token=4f18c9ca-4bde-405f-b3b9-b45c98221e25" alt="" width="563"><figcaption></figcaption></figure>

Then, go to the `Coins` tab and click on the `Settings icon` at the bottom of the window to open the coin settings.

In the settings window, go to the `Units` tab, select `Base unit` and choose `BTC` from the dropdown menu. Finally, click `Close` to save your changes.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FZhQ4MYEkPGVz6SuZS2rh%2FScreenshot%202024-11-17%20at%2015.27.32.png?alt=media&#x26;token=0c3b3d04-7007-4ebc-aef7-04ec86462474" alt="" width="563"><figcaption></figcaption></figure>

Your Electrum wallet will now display balances and transactions in BTC.

### ✅ Verify your Signet connection

To confirm you are in Signet, open the `Receive` tab in Electrum. If you are connected to Signet, the receiving address should start with `tb1q` which is the correct prefix for Signet addresses.

## 💸 How to get test BTC

Open Electrum, go to the Addresses tab, and choose a receiving address for Signet BTC. Right-click the address and select `Copy`.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FaUHZNc6e0XJyL7LYtjHq%2F2024-11-14%2015.47.27.jpg?alt=media&#x26;token=5e777986-0287-4c2f-84ba-7d25ca505d3e" alt="" width="563"><figcaption></figcaption></figure>

Use the TON Teleport faucet to get test BTC. Follow the instructions from our Telegram bot:

* [**https://t.me/testgiver\_btc\_bot**](https://t.me/testgiver_btc_bot)

The test BTC will be sent to your Electrum wallet, and the time it takes will depend on the current load on the BTC network.

<figure><img src="https://2322428612-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGDZHm4kD4WG4CcwPh2dZ%2Fuploads%2FAU3v62b5Q4wrLjREEADx%2F%C2%A6%D0%B1%C2%A6-%C2%A6%C2%AC%C2%A6-%C2%A6-%C2%A6%C2%A6%20T%D0%9D%C2%A6%C2%A6T%D0%90%C2%A6-%C2%A6-%C2%A6-%202025-01-17%20%C2%A6-%2012.35.38.png?alt=media&#x26;token=54bcc12c-c2fc-4a80-80e1-9aedaf2c453c" alt="" width="563"><figcaption></figcaption></figure>

To check if the BTC has arrived, open the `History` or `Addresses` tab in Electrum. You may experience a delay, so use a [**blockchain explorer**](https://mempool.space/signet) to check the transaction status if needed.

## 💎 What's next?

Now that you've set up both your Testnet TON wallet and Signet BTC wallet, and received Test Toncoins and Signet BTC, you’re ready to mint your first tgBTC.

Follow the [**next guide**](https://tgbtc.gitbook.io/docs/getting-started/mint-your-first-tgbtc) to start the minting process.

***
