> For the complete documentation index, see [llms.txt](https://docs.liquidapps.io/liquidapps-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liquidapps.io/liquidapps-documentation/working-with-zeus-sdk/zeus-basics/import-export-keys.md).

# Import/Export Keys

Import keys to your Zeus wallet.&#x20;

{% tabs %}
{% tab title="Import" %}

```bash
# zeus key import thisisatest --owner-private-key 5J9VggJ5... --active-private-key 5K5Ghw... --network=kylin --encrypted
zeus key import <ACCOUNT_NAME> --owner-private-key <KEY> --active-private-key <KEY>
```

{% endtab %}

{% tab title="Options" %}

```bash
# optional flags:

--encrypted # encrypt the account keys with a password
# default: false
--storage # path to the wallet which will store the key
# default: ${home}/.zeus/networks
--network # network to work on (other options, kylin, jungle, mainnet)
# development (local)
--password # password to encrypt the keys with
--vaccount # bool whether account is a LiquidAccount
# default: false
```

{% endtab %}
{% endtabs %}

Export keys

{% tabs %}
{% tab title="Export" %}

```bash
# zeus key export thisisatest --network=kylin
zeus key export <ACCOUNT_NAME>
```

{% endtab %}

{% tab title="Options" %}

```bash
# optional flags:

--encrypted # exports encrypted key
# default: false
--storage # path to where the key is stored
# default: ${home}/.zeus/networks
--network # network to work on (other options, kylin, jungle, mainnet)
# default: development (local)
--password # password to decrypt the keypair
--vaccount # bool whether account is a LiquidAccount
# default: false
```

{% endtab %}
{% endtabs %}

{% hint style="warning" %}
By default keys are imported without encryption.
{% endhint %}
