Import

Import existing contacts from Polkadot.js Apps into Spektr's Address Book using JSON files.

Import Steps

  1. Open Address Book Navigate to the Address Book page in Spektr

  2. Start Import Click the Import button

  3. Select File Choose the .json file containing your contacts

Supported File Format

Spektr accepts contact exports from Polkadot.js Apps in the following JSON format:

[
  {
    "address": "ss58-formatted-address",
    "name": "contact-display-name"
  }
]

Example:

[
  {
    "address": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
    "name": "Alice's Stash"
  },
  {
    "address": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty",
    "name": "Bob's Controller"
  }
]

How to Export from Polkadot.js Apps

  1. Click the Export button

  2. Save the generated .json file to your device

Last updated