2018-01-25 19:21:47 +01:00

1.4 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page IOTA Instructions on how to integrate IOTA wallets with Home Assistant. 2017-12-31 13:29 true false true true iota.png Finance 0.62 Cloud Polling

IOTA is a new blockless distributed ledger which is scalable, lightweight and makes it possible to transfer value without any fees.

The iota component displays various details (e.g., the balance, node attributes) of IOTA wallets.

# configuration.yaml example
iota:
  iri: https://testnet140.tangle.works:4434
  wallets:
    - name: Default Wallet
      seed: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

{% configuration %} iri: description: URL of the IRI node. required: true type: string testnet: description: Flag for indicating "testnet". required: false default: false type: bool wallets: description: List of IOTA wallets. required: true type: list keys: name: description: Name of the wallet. seed: description: Seed of the wallet. {% endconfiguration %}

A full configuration example could look the one below:

# Full example
iota:
  iri: https://testnet140.tangle.works:4434
  testnet: true
  wallets:
    - name: Default Wallet
      seed: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    - name: Exchange Wallet
      seed: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX