No description
Find a file
dependabot[bot] 42e0b999d0
build(deps): bump path-parse from 1.0.6 to 1.0.7
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-08-11 23:06:07 +00:00
src initial commit 2020-01-30 18:09:55 -05:00
.gitignore initial commit 2020-01-30 18:09:55 -05:00
LICENSE initial commit 2020-01-30 18:09:55 -05:00
package-lock.json build(deps): bump path-parse from 1.0.6 to 1.0.7 2021-08-11 23:06:07 +00:00
package.json initial commit 2020-01-30 18:09:55 -05:00
README.md doc: improve README 2020-01-30 18:23:59 -05:00

Summary

This is a web widget which will connect to the Dash Insight server and monitor for transactions to addresses specified in an HTML page.

Usage

In an HTML page, add this to the <head>:

<script src="https://seigler.github.io/monitor-dash-address/index.js"></script>
<link rel="stylesheet" href="https://seigler.github.io/monitor-dash-address/styles.css">

...and add this in the page where you want an address to be monitored:

<div data-dash-address-watch="XmGw5qrhtJcmp3qebCDg9aLZH4ugraeakx"></div>

You may prefer to save these JS and CSS files and host them locally instead, which should work fine. You can also omit the stylesheet and style the component yourself. The structure is:

<div data-dash-address-watch="XmGw5qrhtJcmp3qebCDg9aLZH4ugraeakx">
  <div class="dash-address-watch-label">XmGw5qrhtJcmp3qebCDg9aLZH4ugraeakx</div>
  <div class="dash-address-watch-status">Watching...</div>
  <div class="dash-address-watch-log"></div>
</div>

Demo