forked from SoulisTech/coinwidget.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-sample.html
More file actions
89 lines (84 loc) · 2.11 KB
/
code-sample.html
File metadata and controls
89 lines (84 loc) · 2.11 KB
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
<!doctype html>
<html lang="en">
<head>
<title>Sample buttons</title>
<script type="text/javascript" src="coin.js"></script>
<head>
<body>
<div id="btc"></div>
<div id="ltc"></div>
<div id="dash"></div>
<div id="doge"></div>
<div id="eth"></div>
<script type="text/javascript">
CoinWidgetCom.go({
wallet_address: "34tCGYAz3nhVHrR2mVghX1CmzCRn42Xjnd"
, currency: "bitcoin"
, counter: "count"
, alignment: "bl"
, qrcode: true
, auto_show: false
, lbl_button: "Donate"
, lbl_address: "Donate Bitcoin to this Address:"
, lbl_count: "donations"
, lbl_amount: "BTC"
, amount: "show"
, milli: true
}, "#btc");
CoinWidgetCom.go({
wallet_address: "XnWV8vEc1Hia6ZZZxARFb7hPfRfkK3Aj5t"
, currency: "dash"
, counter: "count"
, alignment: "bl"
, qrcode: true
, auto_show: false
, lbl_button: "buy me a beer"
, lbl_address: "Donate Dashcoin to this Address:"
, lbl_count: "donations"
, lbl_amount: "DASH"
, amount: "show"
, milli: true
}, "#ltc");
CoinWidgetCom.go({
wallet_address: "LiQx6gwLwXM8C1EHVAF7DqVdNFvgHgojmj"
, currency: "litecoin"
, counter: "count"
, alignment: "bl"
, qrcode: true
, auto_show: false
, lbl_button: "buy me a snack"
, lbl_address: "Donate Litecoin to this Address:"
, lbl_count: "donations"
, lbl_amount: "LTC"
, amount: "hide"
, milli: false
}, "#dash");
CoinWidgetCom.go({
wallet_address: "DTnt7VZqR5ofHhAxZuDy4m3PhSjKFXpw3e"
, currency: "dogecoin"
, counter: "count"
, alignment: "bl"
, qrcode: true
, auto_show: false
, lbl_button: "Donate your dog"
, lbl_address: "Donate Dogecoin to this Address:"
, lbl_count: "donations"
, lbl_amount: "DOGE"
, amount: "show"
}, "#doge");
CoinWidgetCom.go({
wallet_address: "0xeca54fa2a762048b88b17feb48756cd0bf64948d"
, currency: "ethereum"
, counter: "count"
, alignment: "bl"
, qrcode: true
, auto_show: false
, lbl_button: "Donate ether "
, lbl_address: "Donate Ethereum to this Address:"
, lbl_count: "donations"
, lbl_amount: "ETH"
, amount: "show"
}, "#eth");
</script>
</body>
</html>