forked from fabianbormann/cip-0045-demo-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dApp.html
41 lines (39 loc) · 1.35 KB
/
dApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://fabianbormann.github.io/cardano-peer-connect/latest/index.js"></script>
<title>Example dApp</title>
</head>
<body>
<h1>Example dApp</h1>
<p>
Please scan the QR code or share the address below with your wallet app.
</p>
<div id="qr-code"></div>
<p id="address"></p>
<button id="button" onclick="copyAddress()">Copy</button>
<script>
const dAppInfo = {
name: 'An awesome DApp',
url: 'http://an-awesome-dapp-url.tld/',
};
const dAppConnect = new CardanoPeerConnect.DAppPeerConnect({
dAppInfo,
});
dAppConnect.generateQRCode(document.getElementById('qr-code'));
document.getElementById('address').innerText = dAppConnect.getAddress();
function copyAddress(clickElement) {
const text = document.getElementById('address').innerText;
navigator.clipboard.writeText(text).then(() => {
document.getElementById('button').innerText = 'Successfully copied!';
setTimeout(() => {
document.getElementById('button').innerText = 'Copy';
}, 500);
});
}
</script>
</body>
</html>