8

I am not super familiar with QR codes.

Is there a piece of open source software I can use o convert an address to a QR code?

SilverCookies
  • 557
  • 2
  • 9
  • 16

6 Answers6

6

Try this:

https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=0x8CCF9C4a7674D5784831b5E1237d9eC9Dddf9d7F&choe=UTF-8

Where:

  • chs=300x300 = size
  • cht=qr = type
  • chl=0x8CCF9C4a7674D5784831b5E1237d9eC9Dddf9d7F = eth address
  • choe=UTF-8 = encoding
DerekC
  • 176
  • 1
  • 3
4

I think the simplest way would be to copy your ETH address and paste it in the text field of this website.. http://www.qr-code-generator.com/

Zenos Pavlakou
  • 443
  • 3
  • 9
3

With the oficial Ethereum Wallet software you can do it, just need to go to the account and in the right side of the interfice view you have this option => "Show QR-code" click here and the program show you in the screen the QR code for this direccion account.

Here the example

Gawey
  • 814
  • 2
  • 8
  • 23
2

You can go to https://www.myetherwallet.com/#view-wallet-info and select 'View with Address Only', paste any address, and it'll spit out a QR code (along with some other info)

tayvano
  • 15,961
  • 4
  • 45
  • 74
2

If you are using Javascript you can use this module (in nodejs or in browser)

Example :

<script src="node_modules/qrcode/build/qrcode.min.js"></script>
<canvas id="qrcodec"></canvas>


<script>
 qrcodelib.toCanvas(document.getElementById('qrcodec'), "your eth address", function (error) {
    if (error) console.error(error)
    console.log('qrcode successfully created');
  });


</script>

alternatively you can use this related module dedicated to Ethereum : https://www.npmjs.com/package/ethereum-qr-code

Badr Bellaj
  • 18,780
  • 4
  • 58
  • 75
1

you can do it easily in tolls like ethereum qr code generator. For btc and eth for example here https://bitcoinqrcodegenerator.win/ethereum.html

samone
  • 11
  • 1