-
Notifications
You must be signed in to change notification settings - Fork 2
/
dApp.html
31 lines (30 loc) · 1.18 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
<!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/bundle.min.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 dAppConnect = new CardanoPeerConnect.DAppPeerConnect();
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>