Skip to content

Instantly share code, notes, and snippets.

@raspi0124
Created June 26, 2019 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raspi0124/b7e4137e4e917b26722394e075d1342d to your computer and use it in GitHub Desktop.
Save raspi0124/b7e4137e4e917b26722394e075d1342d to your computer and use it in GitHub Desktop.
<script>
async function showaddress() {
const address = await window.mpurse.getAddress();
console.log(address)
}
showaddress()
</script>
あとは
<script>
async function showaddress() {
const address = await window.mpurse.getAddress();
console.log(address)
}
window.onload = function () {
showaddress()
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment