"use strict"; /* global document, history, send, window */ document.getElementById("get-started").onclick = event => { event.preventDefault(); send({ message: "auth me with github" }); }; if (window.location.search.includes("?code=")) { document.querySelector("developer-program").innerHTML = `
To receive your LBC, you'll need a wallet address. While graphical wallets are available, the recommended path for engineers is to:
./lbrynet start
)../lbrynet address list
and copy the id
field.Awaiting response from LBRY server...
"; }; }