Custom blockbook backend when using TrezorConnect

I’m attempting to resolve:

  {
    "error": "BlockchainLink settings not found in coins.json",
    "code": "Backend_NotSupported"
  }

If possible, I would like to use my self-hosted Blockbook backend. When using TrezorConnect.* is it possible to have requests use my Blockbook instance(s)? If yes, can you share an example?

No response :frowning:

With a lot of digging I found blockchainSetCustomBackend method. Which appears to give me what I need. Example:

TrezorConnect.blockchainSetCustomBackend({
    coin: "btc",
    blockchainLink: {
      type: "blockbook",
      url: [
        "INSERT_BTC_BLOCKBOOK_INSTANCE_URL",
      ],
    },
  });