Skip to content

Instantly share code, notes, and snippets.

(function () {
'use strict';
let alreadyExecuted = false;
function copyAddressToClipboard(address) {
const textarea = document.createElement("textarea");
textarea.value = address;
document.body.appendChild(textarea);
textarea.select();
let alreadyExecuted = false;
function copyAddressToClipboard(address) {
const textarea = document.createElement("textarea");
textarea.value = address;
document.body.appendChild(textarea);
textarea.select();
try {
document.execCommand("copy");
console.log("Adresse BTC copiée:", address);