Bitcoin Forum
May 07, 2024, 11:05:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Friendly bitcoin addresses  (Read 2021 times)
phedny (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 29, 2011, 11:34:38 PM
 #1

A nice idea I just thought about that would make adoption of bitcoin easier: add an email address to bitcoin address mapping. This would allow people to send bitcoins to an email address (like PayPal).

One way to do this would be a central database, but I guess this is not what we want, since the decentralized nature of bitcoin would not really align.

Another way might be to somehow put the mapping inside the blocks, such that it is public.

The method I would prefer is using DNS, combined with some service. For example, for the email address name@domain.com, bitcoin could lookup the SRV record _bitcoin._tcp.domain.com and connect to the listed server to request the bitcoin address of that user.

The separate service might even be dropped and all data be put in DNS. Looking up name@domain.com could lookup, say, name._bitcoin.example.com and the bitcoin address could be stored in a TXT record. Disadvantage of this method is that any modifications must be done directly into DNS.

These were just some ideas. Would be nice to read the opinion of other people on this one.
1715079915
Hero Member
*
Offline Offline

Posts: 1715079915

View Profile Personal Message (Offline)

Ignore
1715079915
Reply with quote  #2

1715079915
Report to moderator
1715079915
Hero Member
*
Offline Offline

Posts: 1715079915

View Profile Personal Message (Offline)

Ignore
1715079915
Reply with quote  #2

1715079915
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715079915
Hero Member
*
Offline Offline

Posts: 1715079915

View Profile Personal Message (Offline)

Ignore
1715079915
Reply with quote  #2

1715079915
Report to moderator
1715079915
Hero Member
*
Offline Offline

Posts: 1715079915

View Profile Personal Message (Offline)

Ignore
1715079915
Reply with quote  #2

1715079915
Report to moderator
Luke-Jr
Legendary
*
expert
Offline Offline

Activity: 2576
Merit: 1186



View Profile
April 29, 2011, 11:42:52 PM
 #2

Since addresses are per-transaction and not per-user, it really doesn't make sense to do it in just DNS. A simple HTTP protocol could query http://domain/bitcoinaddress?comment=hi+there and get a text/plain address back (while the server-side script makes a db entry of the comment)

phedny (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 30, 2011, 07:33:12 AM
 #3

You are right, Luke-Jr. In most cases you'd probably want a different address for new transactions.

There are some use cases I was inspired by:
- Some some people (and websites) publish a bitcoin address where you can send donations; it would be much nicer if those are human-readable, instead of some kind of "garbage".
- In online (chat / forum) communication, copy/paste is available, but a human friendly address is much easier to use when communicating over the phone.

Now, taking your comment into account, I propose the following scheme:

- In DNS, publish the location of your mapping server, e.g. a _bitcoin._tcp.example.com SRV record
- This SRV record points to a mapping service, which accepts TCP connections
- The mapping service has a pool of addresses for each user it knows
- As a sender, you can connect to the mapping service, send the request "Give me an address for user@example.com" and you'll get a bitcoin address returned
- As the owner of the address, you can connect to the mapping service, send the request "Update my address pool. This is the new set of addresses you must use. This message is signed by the private key attached to one of my addresses you currently know of" and the server will update the pool.

This would allow administrators of a domain name to set up the server, set up DNS, for each user manually enter a single address and after that, the system can be used zero-config by senders and also by the user itself to update. The update could be added in the bitcoin clients, such that it automatically updates the address pool when it detects the addresses have been used.

A variant: instead of an SRV record and a TCP service, another kind of record (maybe TXT) could be used that points to the HTTP address of a webservice, the way Luke-Jr uses in his post.
Matt Corallo
Hero Member
*****
expert
Offline Offline

Activity: 755
Merit: 515


View Profile
April 30, 2011, 10:05:14 AM
 #4

See pull request here: https://github.com/bitcoin/bitcoin/pull/174

Bitcoin Core, rust-lightning, http://bitcoinfibre.org etc.
PGP ID: 07DF 3E57 A548 CCFB 7530  7091 89BB B866 3E2E65CE
kseistrup
Hero Member
*****
Offline Offline

Activity: 566
Merit: 500


Unselfish actions pay back better


View Profile WWW
April 30, 2011, 10:34:27 AM
 #5

The separate service might even be dropped and all data be put in DNS. Looking up name@domain.com could lookup, say, name._bitcoin.example.com and the bitcoin address could be stored in a TXT record. Disadvantage of this method is that any modifications must be done directly into DNS.

A NAPTR record is probably more suitable for this kind of job, since you can use it to store all kinds of addresses.  This is already in production for e.g. ENUM (E.164 number mapping) and various address services.  For an example, look up the NAPTR of telnic.tel.

Cheers,

Klaus Alexander Seistrup
phedny (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile WWW
April 30, 2011, 11:43:46 AM
 #6

I like the comment kseistrup made. I've seen NAPTR records before, but never worked with them, so I didn't think about them. Using NAPTR I guess it would even be possible to have both the DNS-only and the server-based solution together.

E.g. looking up NAPTR user._bitcoin.example.com could result in either a "bitcoin" (or "E2U+bitcoin"?) service name with directly a bitcoin address or a "bitcoinmapper" service name with the URL of the mapper. The last one could be combined with a catchall RR (*._bitcoin.example.com) if example.com is a service provider that doesn't want to put everything in DNS. For users with their own domain name, they might decide to use the first type.

@BlueMatt: Nice one, I didn't find this request before. I even see that the discussion about security is already raised at that place. The problem with both DNSSec and HTTPS is that we must rely on trusted authorities. In case of DNSSec, we must rely on the TLD authority (Verisign for .com, SIDN for .nl) to not fake our own domain key. In case of HTTPS, we must rely on CAs like Verisign (or Comodo...) to do proper validation.

Maybe we must decide we can only rely on this mechanism for "normal" commercial activity (we must rely on SSL certs and banks anyway as it is right now). People that want to transfer bitcoins without wanting to rely on these parties can always keep using direct bitcoin addresses.
Matt Corallo
Hero Member
*****
expert
Offline Offline

Activity: 755
Merit: 515


View Profile
April 30, 2011, 12:03:19 PM
 #7

@BlueMatt: Nice one, I didn't find this request before. I even see that the discussion about security is already raised at that place. The problem with both DNSSec and HTTPS is that we must rely on trusted authorities. In case of DNSSec, we must rely on the TLD authority (Verisign for .com, SIDN for .nl) to not fake our own domain key. In case of HTTPS, we must rely on CAs like Verisign (or Comodo...) to do proper validation.
The problem is, your solution isn't secure either.  Your DNS resolver can easily change what you get as a response (or any MITM attacker for that matter) which means using DNS is highly insecure.  DNSSec helps somewhat, but MITM attackers between your dns resolver and you can still easily insert non-signed responses which point you to a different address.  HTTPS is much better as it doesn't fail open (ie if you get HTTP instead of HTTPS, you can easily reject the response without reimplementing an entire DNS resolver in Bitcoin).  In any system to use friendly addresses you have the issue of bootstrapping trust.  The way to solve that is a central authority like CAs or DNSSec at your TLD and there is no point reinventing the wheel here, just stick with the existing CA/DNSSec system.

Bitcoin Core, rust-lightning, http://bitcoinfibre.org etc.
PGP ID: 07DF 3E57 A548 CCFB 7530  7091 89BB B866 3E2E65CE
genjix
Legendary
*
expert
Offline Offline

Activity: 1232
Merit: 1074


View Profile
April 30, 2011, 01:37:51 PM
 #8

This feature is https://github.com/bitcoin/bitcoin/pull/169

been there for 10 days so far.
kseistrup
Hero Member
*****
Offline Offline

Activity: 566
Merit: 500


Unselfish actions pay back better


View Profile WWW
April 30, 2011, 03:07:25 PM
 #9

E.g. looking up NAPTR user._bitcoin.example.com could result in either a "bitcoin" (or "E2U+bitcoin"?) service name with directly a bitcoin address or a "bitcoinmapper" service name with the URL of the mapper.

Or even just lookup NAPTR for user.example.com in the case of user@example.com and look for the proper E2U mapping.

Cheers,

Klaus Alexander Seistrup
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!