> For the complete documentation index, see [llms.txt](https://docs.kryptokrona.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kryptokrona.org/guides/wallets/using-remote-nodes.md).

# Using Remote Nodes

In case you don't want to download the blockchain and verify it everytime, you can instead use a Remote Node to quickly sync the blockchain.

## Proton Wallet

**Note:** By default, Proton Wallet connects to a reliable remote node over SSL, so this step should be unnecessary unless you wish to connect to a particular remote node.

1. Open your wallet
2. Click on the settings icon in the top right
3. In the text box below, enter the URL and Port of the node you wish to connect to
4. Click "Connect"

* You may also click "Find node..." which will select a random node

![proton remote node](https://github.com/kryptokrona/kryptokrona-docs/blob/master/assets/kryptokrona-remote-nodes.png)

## kkrwallet

1. Open up a command prompt window and navigate to the folder that contains *kkrwallet*.
2. Use the following command to start kkrwallet

### Windows:

```
kkrwallet.exe --remote-daemon host:port
```

### Mac and Linux

```
./kkrwallet --remote-daemon host:port
```

Replace `host:port` with values from one of the public remote daemons available below.

You can now follow your normal process to access your wallet.

For example-

```
kkrwallet.exe --remote-daemon public.kryptokrona.online:11898
```

### Making a Script to Do it Automatically

*Note*: This only works on Windows, and for kkrwallet

1. Open NotePad/a text editor of your choice and type the following lines inside:

```
@echo off
kkrwallet-beta.exe --remote-daemon host:port
pause
```

1. Replace `host:port` with the values from a node in the given links below.
2. Save the filename as `start.bat` and save the file as `All files`.
3. Double click on the file to start the daemon.

## Known remote daemons

<https://explorer.kryptokrona.se/nodes> (not live atm)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kryptokrona.org/guides/wallets/using-remote-nodes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
