-
Notifications
You must be signed in to change notification settings - Fork 18
/
sample.html
232 lines (231 loc) · 9.26 KB
/
sample.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<html>
<head>
<title>Sample Dapp</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div class="container">
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="/">
<span class="navbar-brand mb-0 h1">Sample Dapp</span>
</a>
<div class="my-2 my-sm-0">
<button class="btn btn-primary" id="login_button" type="button">Login web3</button>
<button class="btn btn-outline-danger" id="logout_button" type="button">Logout web3</button>
</div>
</nav>
<br />
<div class="card">
<div class="card-body">
<span>window.ethereum enable: </span>
<span id='ethereum_enable'></span>
</div>
</div>
<div class="card-group">
<div class="card">
<div class="card-body">
<h5 class="card-title">web3 defaultAccount</h5>
<span id='web3_defaultAccount'>---</span>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">web3 accounts</h5>
<span id='web3_accounts'>---</span>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">web3 coinbase</h5>
<span id='web3_coinbase'>---</span>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">netwrok Type / Id</h5>
<span id='web3_netType'>---</span>
<span>/</span>
<span id='web3_netId'>---</span>
</div>
</div>
</div>
<br />
<div class="card-deck">
<div class="card">
<div class="card-header">Sign Message</div>
<div class="card-body">
<div class="input-group mb-3">
<input
id="sign_input"
type="text"
class="form-control"
placeholder="message"
aria-label="message"
aria-describedby="web3_sign_button">
<div class="input-group-append">
<button class="btn btn-primary" type="button" id="web3_sign_button">Sign</button>
</div>
</div>
</div>
<div class="card-footer text-muted">
<span>Sign Result: </span>
<span id='web3_sign_result'></span>
</div>
</div>
<div class="card">
<div class="card-header">Personal Sign Message</div>
<div class="card-body">
<div class="input-group mb-3">
<input
id="personal_sign_input"
type="text"
class="form-control"
placeholder="message"
aria-label="message"
aria-describedby="web3_personal_sign_button">
<div class="input-group-append">
<button class="btn btn-primary" type="button" id="web3_personal_sign_button">Sign</button>
</div>
</div>
</div>
<div class="card-footer text-muted">
<span>Sign Result: </span>
<span id='web3_personal_sign_result'></span>
</div>
</div>
<div class="card">
<div class="card-header">Send Transaction</div>
<div class="card-body">
<h5 class="card-title">Recipient Address</h5>
<textarea class="form-control" aria-label="With textarea" id="web3_send_tx_address"></textarea>
<br />
<h5 class="card-title">ETH Amount</h5>
<div class="input-group mb-3">
<input
id="web3_send_tx_amount"
type="text"
class="form-control"
placeholder="ETH send amount"
aria-label="ETH send amount"
aria-describedby="web3_send_tx_button">
<div class="input-group-append">
<button
class="btn btn-primary"
type="button"
id="web3_send_tx_button">
Send
</button>
</div>
</div>
</div>
<div class="card-footer text-muted">
<span>Transaction Hash: </span>
<span id='web3_tx_hash'></span>
</div>
</div>
</div>
</div>
</body>
</html>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"
integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4"
crossorigin="anonymous">
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous">
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"
integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ"
crossorigin="anonymous">
</script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"
integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm"
crossorigin="anonymous">
</script>
<script src='./static/dist/dapp-sdk.bundle.js'></script>
<script>
// Web3 Login
$("#login_button").click(() => {
window.ethereum.enable().then(() => {
$("#login_button").hide();
$("#ethereum_enable").html('SUCCESSED').addClass('badge badge-success');
$("#web3_defaultAccount").html(web3.eth.defaultAccount);
web3.eth.getCoinbase((err, account) => {
$('#web3_coinbase').html(account);
})
web3.eth.getAccounts((err, accounts) => {
$('#web3_accounts').html(accounts);
})
web3.eth.net.getId().then(id => {
$("#web3_netId").html(id);
})
web3.eth.net.getNetworkType().then(type => {
$("#web3_netType").html(type);
});
}).catch((e) => {
$("#ethereum_enable").html('FAILED').addClass('badge badge-danger');
});
});
$("#logout_button").click(() => {
if(!(typeof window.ethereum.logout === 'function')) {
alert('Please use wallet connect.');
} else {
window.ethereum.logout().then((res) => {
}).catch((err) => {
alert(err);
});
}
});
// Web3 Sign
$("#web3_sign_button").click(() => {
const signMessage = $('#sign_input').val();
if(!(web3 && web3.eth && web3.eth.defaultAccount)) {
alert("No accounts exposed!");
} else {
web3.eth.sign(signMessage, web3.eth.defaultAccount, (err, result) => {
if(err) {
alert('You cancel the signature request.');
}
$('#web3_sign_result').html(result);
});
}
});
// Web3 Personal Sign
$("#web3_personal_sign_button").click(() => {
const personalSignMessage = $('#personal_sign_input').val();
if(!(web3 && web3.eth && web3.eth.defaultAccount)) {
alert("No accounts exposed!");
} else {
web3.eth.personal.sign(personalSignMessage, web3.eth.defaultAccount, '', (err, result) => {
if(err) {
alert('You cancel the signature request');
}
$('#web3_personal_sign_result').html(result);
});
}
});
// Web3 Send Transaction
$("#web3_send_tx_button").click(() => {
const recipient = $('#web3_send_tx_address').val();
const sendAmount = $('#web3_send_tx_amount').val();
const WEI = 1000000000000000000;
const transactionObject = {
from: web3.eth.defaultAccount,
to: recipient,
value: (sendAmount* WEI).toString(),
gas: 21000,
};
web3.eth.sendTransaction(transactionObject)
.on('transactionHash', (hash) => {
$('#web3_tx_hash').html(hash);
})
.on('error', (err) => {
alert(err);
});
});
</script>