-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-ethjs-network.html
41 lines (36 loc) · 1.54 KB
/
node-ethjs-network.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script type="text/javascript">
RED.nodes.registerType('ethjs-network',{
category: 'config',
defaults: {
name : { value: undefined },
url : { value: undefined },
description: { value: undefined },
},
label: function() {
return this.name || "Ethereum Network";
}
});
</script>
<script type="text/x-red" data-template-name="ethjs-network">
<div class="form-row">
<label for="node-config-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-config-input-name" placeholder="">
</div>
<div class="form-row">
<label for="node-config-input-url"><i class="icon-tag"></i> URL</label>
<input type="text" id="node-config-input-url" placeholder="http://url.of.network:8545">
</div>
<div class="form-row">
<label for="node-config-input-description"><i class="icon-tag"></i> Description</label>
<input type="text" id="node-config-input-description" placeholder="">
</div>
</script>
<script type="text/x-red" data-help-name="ethjs-network">
<p>[<i>under development</i>]</p>
<h3>References</h3>
<ul>
<li><a href="https://blog.encausse.net/2018/03/28/le-chatbot-comme-interface-de-la-blockchain/">Encausse.net</a> - blog article</li>
<li><a href="https://github.com/ethjs/ethjs">EthJS</a> - documentation</li>
<li><a href="https://github.com/NGRP/node-red-contrib-viseo/">VISEO BotMaker</a> - the nodes github repository</li>
</ul>
</script>