Wallet Balance Watch

automation · by zorilla · came with Zorilla

Watches a wallet and says so when its balance drops below a figure you set. Needs no keys.

ScheduleEvery 1 hourETH balancevitalik.eth on ethereumIfNumber(eth) is under 100LogBalance is eth ETH — below th…

4 steps, drawn from the file

What this can do

Read out of the file, not written by the author.

contacts nothingreads ethereum

4 steps, started by Schedule.

Contents
{
  "name": "Wallet Balance Watch",
  "nodes": [
    {
      "id": "clock",
      "type": "core.schedule",
      "params": {
        "mode": "every",
        "every": 1,
        "unit": "hours"
      },
      "position": {
        "x": 40,
        "y": 170
      }
    },
    {
      "id": "bal",
      "type": "web3.balance",
      "params": {
        "chain": "ethereum",
        "address": "vitalik.eth"
      },
      "position": {
        "x": 300,
        "y": 170
      }
    },
    {
      "id": "low",
      "type": "logic.if",
      "params": {
        "value": "{{ Number($json.eth) }}",
        "operation": "less",
        "compare": "100"
      },
      "position": {
        "x": 560,
        "y": 170
      }
    },
    {
      "id": "note",
      "type": "output.log",
      "params": {
        "message": "Balance is {{ $json.eth }} ETH — below the line"
      },
      "position": {
        "x": 820,
        "y": 170
      }
    }
  ],
  "edges": [
    {
      "from": "clock",
      "fromPort": "main",
      "to": "bal",
      "toPort": "main"
    },
    {
      "from": "bal",
      "fromPort": "main",
      "to": "low",
      "toPort": "main"
    },
    {
      "from": "low",
      "fromPort": "true",
      "to": "note",
      "toPort": "main"
    }
  ]
}
Back

Download it, then in Zorilla press add one from a file. You get a screen listing what it contacts and which keys it asks for before anything is saved.