From 01201d6ce58d7df1d48034bb434a577cceb507fe Mon Sep 17 00:00:00 2001 From: MarcoPon Date: Sat, 19 Sep 2015 19:24:35 +0200 Subject: [PATCH 01/11] Created bip-MarcoPon-01.mediawiki URI scheme for Blockchain references / exploration --- README.mediawiki | 6 ++++ bip-MarcoPon-01.mediawiki | 67 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 bip-MarcoPon-01.mediawiki diff --git a/README.mediawiki b/README.mediawiki index 925910c2..4d90c239 100644 --- a/README.mediawiki +++ b/README.mediawiki @@ -373,6 +373,12 @@ Those proposing changes should consider that ultimately consent may rest with th | Suhas Daftuar | Standard | Draft +|- +| [[bip-MarcoPon-01.mediawiki| xx]] +| URI scheme for Blockchain references / exploration +| Marco Pontello +| Standard +| Draft |} diff --git a/bip-MarcoPon-01.mediawiki b/bip-MarcoPon-01.mediawiki new file mode 100644 index 00000000..9c0fe4a2 --- /dev/null +++ b/bip-MarcoPon-01.mediawiki @@ -0,0 +1,67 @@ +
+  BIP: MarcoPon-01
+  Title: URI scheme for Blockchain references / exploration
+  Author: Marco Pontello 
+  Status: Draft
+  Type: Standards Track
+  Created: 29 August 2015
+
+ +==Abstract== + +This BIP propose an URI scheme for looking up blocks, transactions, addresses on a Blockchain explorer, or in general to make proper Blockchain references + +==Motivation== + +The purpose of this URI scheme is to enable users to handle all the requests for details about blocks, transactions, etc. with their preferred tool (being that a web service or a local application). +Currently a Bitcoin client usually point to an arbitrary blockchain explorer when the user look for the details of a transaction (es. Bitcoin Wallet use BitEasy, Mycelium or Electrum use Blockchain.info, etc.). +Other times resorting to cut&paste is needed. +The same happens with posts and messages that reference some particular txs or blocks, if they provide links at all. + +==Specification== + +The URI follow this simple form: + + blockchain:[//chain] + +Where: + +;chain: +: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (see [http://https://github.com/jtimon/bitcoin/commit/3191d5e8e75687a27cf466b7a4c70bdc04809d39 Bitcoin src/chainparams.cpp]). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. + +;type: +: '''tx''': for transactions. +: '''block''': for blocks (supports both hash or height). +: '''address''': for addresses. + +;hash: +: the relevant hash (or height) to refer to. + +==Examples== + +A transaction on Bitcoin's mainnet: + blockchain:/tx/b462ae6eb8bdae2e060239a2a3ea5d9c3e0f9ef34d9717beb2dcf0ed42cee7da + +A block on Bitcoin's mainnet: + blockchain:/block/00000000000000000119af5bcae2926df54ae262e9071a94a99c913cc217cc72 +or + blockchain:/block/372338 + +An address on Bitcoin's mainnet: + blockchain:/address/16EW6Rv9P9AxFDBrZV816dD4sj1EAYUX3f + +A transaction on Bitcoin's testnet: + blockchain://000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943/tx/3b95a766d7a99b87188d6875c8484cb2b310b78459b7816d4dfc3f0f7e04281a + +==Rationale== + +From the point of view of a wallet developer (or other tool that need to show any kind of Blockchain references), using this scheme mean that he can simply make it a blockchain: link and be done with it, without having to worry about any specific Blockchain explorer or provide a means for the user to select one. + +Blockchain explorers in turn will simply offer to handle the blockchain: URI, the first time the user visit their website, or launch/install the application, or even set themselves if there isn't already one. + +Users get the convenience of using always their preferred explorer, which can be especially handy on mobile devices, where juggling with cut&paste is far from ideal. + +==Copyright== + +This document is placed in the public domain. + From e84e2d5c38910dce8cb5508eceee9a946b8b2bb6 Mon Sep 17 00:00:00 2001 From: Dionysis Zindros Date: Sun, 15 Nov 2015 13:50:43 +0200 Subject: [PATCH 02/11] Fix broken GitHub https URL --- bip-MarcoPon-01.mediawiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip-MarcoPon-01.mediawiki b/bip-MarcoPon-01.mediawiki index 9c0fe4a2..c919fe98 100644 --- a/bip-MarcoPon-01.mediawiki +++ b/bip-MarcoPon-01.mediawiki @@ -27,7 +27,7 @@ The URI follow this simple form: Where: ;chain: -: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (see [http://https://github.com/jtimon/bitcoin/commit/3191d5e8e75687a27cf466b7a4c70bdc04809d39 Bitcoin src/chainparams.cpp]). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. +: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (see [https://github.com/jtimon/bitcoin/commit/3191d5e8e75687a27cf466b7a4c70bdc04809d39 Bitcoin src/chainparams.cpp]). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. ;type: : '''tx''': for transactions. From 29b8eaef022d1e34d57f8cdcde08e72530f2082f Mon Sep 17 00:00:00 2001 From: MarcoPon Date: Mon, 16 Nov 2015 00:44:34 +0100 Subject: [PATCH 03/11] Some clarifications, typos --- bip-MarcoPon-01.mediawiki | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/bip-MarcoPon-01.mediawiki b/bip-MarcoPon-01.mediawiki index c919fe98..b8483c22 100644 --- a/bip-MarcoPon-01.mediawiki +++ b/bip-MarcoPon-01.mediawiki @@ -14,7 +14,7 @@ This BIP propose an URI scheme for looking up blocks, transactions, addresses on ==Motivation== The purpose of this URI scheme is to enable users to handle all the requests for details about blocks, transactions, etc. with their preferred tool (being that a web service or a local application). -Currently a Bitcoin client usually point to an arbitrary blockchain explorer when the user look for the details of a transaction (es. Bitcoin Wallet use BitEasy, Mycelium or Electrum use Blockchain.info, etc.). +Currently a Bitcoin client usually points to an arbitrary blockchain explorer when the user looks for the details of a transaction (es. Bitcoin Wallet uses BitEasy, Mycelium or Electrum uses Blockchain.info, etc.). Other times resorting to cut&paste is needed. The same happens with posts and messages that reference some particular txs or blocks, if they provide links at all. @@ -27,7 +27,15 @@ The URI follow this simple form: Where: ;chain: -: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (see [https://github.com/jtimon/bitcoin/commit/3191d5e8e75687a27cf466b7a4c70bdc04809d39 Bitcoin src/chainparams.cpp]). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. +: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (leading zeros included). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. If omitted (which would be the usual case), Bitcoin's mainnet is assumed. As a reference, see for example this code fragment from Bitcoin chainparams.cpp source: + const std::map CChainParams::supportedChains = + boost::assign::map_list_of + ( "main", uint256S("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f")) + ( "test", uint256S("0x000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943")) + ( "regtest", uint256S("0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")) + ; + + ;type: : '''tx''': for transactions. @@ -35,7 +43,7 @@ Where: : '''address''': for addresses. ;hash: -: the relevant hash (or height) to refer to. +: the relevant hash to refer to (leading zeros included), or block height. ==Examples== @@ -55,12 +63,17 @@ A transaction on Bitcoin's testnet: ==Rationale== -From the point of view of a wallet developer (or other tool that need to show any kind of Blockchain references), using this scheme mean that he can simply make it a blockchain: link and be done with it, without having to worry about any specific Blockchain explorer or provide a means for the user to select one. +From the point of view of a wallet (or other Blockchain related tool) developer that need to show any kind of Blockchain references, using this scheme mean that he can simply make it a blockchain: link and be done with it, without having to worry about any specific Blockchain explorer or provide a means for the user to select one. Blockchain explorers in turn will simply offer to handle the blockchain: URI, the first time the user visit their website, or launch/install the application, or even set themselves if there isn't already one. Users get the convenience of using always their preferred explorer, which can be especially handy on mobile devices, where juggling with cut&paste is far from ideal. +==Acknowledgements== +Thanks to Btc Drak for suggesting to provide support for different networks. +Thanks to Jorge Timon for the idea of using genesis blocks hashes to identify them. +Thanks to Richard Moore, Matt Whitlock, Andreas Schildbach for suggestions about the structure and hierarchy of the URI scheme. + ==Copyright== This document is placed in the public domain. From d1f008b8787f2d9151beeadeb749468400e6c2b2 Mon Sep 17 00:00:00 2001 From: Marco Pontello Date: Sat, 26 Dec 2015 16:46:02 +0100 Subject: [PATCH 04/11] Changed temporary name to bip-MarcoPon-BlockchainURI - Waiting for BIP number assignment --- README.mediawiki | 2 +- ...arcoPon-01.mediawiki => bip-MarcoPon-BlockchainURI.mediawiki | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename bip-MarcoPon-01.mediawiki => bip-MarcoPon-BlockchainURI.mediawiki (99%) diff --git a/README.mediawiki b/README.mediawiki index 4d90c239..9e68b022 100644 --- a/README.mediawiki +++ b/README.mediawiki @@ -374,7 +374,7 @@ Those proposing changes should consider that ultimately consent may rest with th | Standard | Draft |- -| [[bip-MarcoPon-01.mediawiki| xx]] +| [[bip-MarcoPon-BlockchainURI.mediawiki| xx]] | URI scheme for Blockchain references / exploration | Marco Pontello | Standard diff --git a/bip-MarcoPon-01.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki similarity index 99% rename from bip-MarcoPon-01.mediawiki rename to bip-MarcoPon-BlockchainURI.mediawiki index b8483c22..2380f80c 100644 --- a/bip-MarcoPon-01.mediawiki +++ b/bip-MarcoPon-BlockchainURI.mediawiki @@ -1,5 +1,5 @@
-  BIP: MarcoPon-01
+  BIP: bip-MarcoPon-BlockchainURI
   Title: URI scheme for Blockchain references / exploration
   Author: Marco Pontello 
   Status: Draft

From d01ba11ecc1c38fabbd3aa3ae307f6b46039a783 Mon Sep 17 00:00:00 2001
From: Marco Pontello 
Date: Fri, 1 Jan 2016 22:30:07 +0100
Subject: [PATCH 05/11] Added clarification for forked chains.

---
 bip-MarcoPon-BlockchainURI.mediawiki | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki
index 2380f80c..5c0881fa 100644
--- a/bip-MarcoPon-BlockchainURI.mediawiki
+++ b/bip-MarcoPon-BlockchainURI.mediawiki
@@ -27,7 +27,7 @@ The URI follow this simple form:
 Where:
 
 ;chain:
-: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (leading zeros included). In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. If omitted (which would be the usual case), Bitcoin's mainnet is assumed. As a reference, see for example this code fragment from Bitcoin chainparams.cpp source:
+: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (leading zeros included). For forked chains, the hash of the relevant first block after fork is used. In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. If omitted (which would be the usual case), Bitcoin's mainnet is assumed. As a reference, see for example this code fragment from Bitcoin chainparams.cpp source:
   const std::map CChainParams::supportedChains =
       boost::assign::map_list_of
       ( "main", uint256S("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"))

From 6a08c9c76affe5608326d9b7f0d06d18dea6a6c4 Mon Sep 17 00:00:00 2001
From: Marco Pontello 
Date: Sat, 2 Jan 2016 02:53:41 +0100
Subject: [PATCH 06/11] Removed specific wallet examples.

---
 bip-MarcoPon-BlockchainURI.mediawiki | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki
index 5c0881fa..a60d2f2a 100644
--- a/bip-MarcoPon-BlockchainURI.mediawiki
+++ b/bip-MarcoPon-BlockchainURI.mediawiki
@@ -14,7 +14,7 @@ This BIP propose an URI scheme for looking up blocks, transactions, addresses on
 ==Motivation==
 
 The purpose of this URI scheme is to enable users to handle all the requests for details about blocks, transactions, etc. with their preferred tool (being that a web service or a local application).
-Currently a Bitcoin client usually points to an arbitrary blockchain explorer when the user looks for the details of a transaction (es. Bitcoin Wallet uses BitEasy, Mycelium or Electrum uses Blockchain.info, etc.).
+Currently a Bitcoin client usually points to an arbitrary blockchain explorer when the user looks for the details of a transaction, or let him choose from a limited list of possible alternatives.
 Other times resorting to cut&paste is needed.
 The same happens with posts and messages that reference some particular txs or blocks, if they provide links at all.
 

From d4130aa650191ca7963dc94f6b59798ec356eeb9 Mon Sep 17 00:00:00 2001
From: Marco Pontello 
Date: Sat, 2 Jan 2016 13:59:32 +0100
Subject: [PATCH 07/11] Added Post-History.

---
 bip-MarcoPon-BlockchainURI.mediawiki | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki
index a60d2f2a..8da74dbc 100644
--- a/bip-MarcoPon-BlockchainURI.mediawiki
+++ b/bip-MarcoPon-BlockchainURI.mediawiki
@@ -5,6 +5,7 @@
   Status: Draft
   Type: Standards Track
   Created: 29 August 2015
+  Post-History: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2015-August/010712.html
 
==Abstract== From f03c7bb90ac854f711eaf03574cc210051164299 Mon Sep 17 00:00:00 2001 From: Marco Pontello Date: Tue, 5 Jan 2016 02:58:30 +0100 Subject: [PATCH 08/11] Reworked layout, clarified chain ID. --- bip-MarcoPon-BlockchainURI.mediawiki | 69 +++++++++++++++++-------- bip-MarcoPon-BlockchainURI/chainid.png | Bin 0 -> 2967 bytes 2 files changed, 48 insertions(+), 21 deletions(-) create mode 100644 bip-MarcoPon-BlockchainURI/chainid.png diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki index 8da74dbc..1897326b 100644 --- a/bip-MarcoPon-BlockchainURI.mediawiki +++ b/bip-MarcoPon-BlockchainURI.mediawiki @@ -21,45 +21,73 @@ The same happens with posts and messages that reference some particular txs or b ==Specification== -The URI follow this simple form: +The URI follow this form: blockchain:[//chain] Where: -;chain: -: (optional) to uniquely point to a specific chain, the hash of the corresponding genesis block is used (leading zeros included). For forked chains, the hash of the relevant first block after fork is used. In principle some kind of alias/mnemonic could also be used, but that is out of the scope of this BIP, and maybe could be developed in another subsequent one. If omitted (which would be the usual case), Bitcoin's mainnet is assumed. As a reference, see for example this code fragment from Bitcoin chainparams.cpp source: - const std::map CChainParams::supportedChains = - boost::assign::map_list_of - ( "main", uint256S("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f")) - ( "test", uint256S("0x000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943")) - ( "regtest", uint256S("0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")) - ; +{| class="wikitable" +! style="text-align: center;" | Element +! colspan="2" style="text-align: center;" | Description +! +|- +| chain +| colspan="2" | '''chain ID''' (see below) of the desired chain, leading 0s included. If omitted (which would be the usual case), Bitcoin main net is assumed. +| optional +|- +| rowspan="3" | type +| tx +| for transactions. +| rowspan="3" | +|- +| block +| for blocks (supports both hash or height). +|- +| address +| for addresses. +|- +| hash +| colspan="2" | the relevant hash to refer to (leading zeros included), or block height. +| +|} +---- +===Definition of chain ID=== +The '''chain ID''' of a chain is the block hash of the corresponding genesis block. For forked chains, it's the block hash of the first block after fork. -;type: -: '''tx''': for transactions. -: '''block''': for blocks (supports both hash or height). -: '''address''': for addresses. +So, for example: +
+Bitcoin main   : 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f 
+Bitcoin test   : 000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943
+Bitcoin regtest: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206 
+
+ +An example of forked chain (Feathercoin, that forked Litecoin): + + + +
+Litecoin   : 12a765e31ffd4059bada1e25190f6e98c99d9714d334efa41a195a7e7e04bfe2
+Feathercoin: fdbe99b90c90bae7505796461471d89ae8388ab953997aa06a355bbda8d915cb
+
-;hash: -: the relevant hash to refer to (leading zeros included), or block height. ==Examples== -A transaction on Bitcoin's mainnet: +A transaction on Bitcoin main net: blockchain:/tx/b462ae6eb8bdae2e060239a2a3ea5d9c3e0f9ef34d9717beb2dcf0ed42cee7da -A block on Bitcoin's mainnet: +A block on Bitcoin main net: blockchain:/block/00000000000000000119af5bcae2926df54ae262e9071a94a99c913cc217cc72 or blockchain:/block/372338 -An address on Bitcoin's mainnet: +An address on Bitcoin main net: blockchain:/address/16EW6Rv9P9AxFDBrZV816dD4sj1EAYUX3f -A transaction on Bitcoin's testnet: +A transaction on Bitcoin test net: blockchain://000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943/tx/3b95a766d7a99b87188d6875c8484cb2b310b78459b7816d4dfc3f0f7e04281a ==Rationale== @@ -77,5 +105,4 @@ Thanks to Richard Moore, Matt Whitlock, Andreas Schildbach for suggestions about ==Copyright== -This document is placed in the public domain. - +This document is placed in the public domain. \ No newline at end of file diff --git a/bip-MarcoPon-BlockchainURI/chainid.png b/bip-MarcoPon-BlockchainURI/chainid.png new file mode 100644 index 0000000000000000000000000000000000000000..ab6957ab2d059832433c70f106edaefa7aaf6ec1 GIT binary patch literal 2967 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 Date: Tue, 5 Jan 2016 02:59:59 +0100 Subject: [PATCH 09/11] Fixed img link. --- bip-MarcoPon-BlockchainURI.mediawiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki index 1897326b..372c0ef2 100644 --- a/bip-MarcoPon-BlockchainURI.mediawiki +++ b/bip-MarcoPon-BlockchainURI.mediawiki @@ -66,7 +66,7 @@ Bitcoin regtest: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e220 An example of forked chain (Feathercoin, that forked Litecoin): - +
 Litecoin   : 12a765e31ffd4059bada1e25190f6e98c99d9714d334efa41a195a7e7e04bfe2

From 2ea077022ef36859c38c3906a24558facc5091a7 Mon Sep 17 00:00:00 2001
From: Marco Pontello 
Date: Thu, 7 Jan 2016 23:11:32 +0100
Subject: [PATCH 10/11] Added Sample implementation section

---
 bip-MarcoPon-BlockchainURI.mediawiki | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-MarcoPon-BlockchainURI.mediawiki
index 372c0ef2..2a0a659c 100644
--- a/bip-MarcoPon-BlockchainURI.mediawiki
+++ b/bip-MarcoPon-BlockchainURI.mediawiki
@@ -98,6 +98,10 @@ Blockchain explorers in turn will simply offer to handle the blockchain: URI, th
 
 Users get the convenience of using always their preferred explorer, which can be especially handy on mobile devices, where juggling with cut&paste is far from ideal.
 
+== Sample implementation ==
+
+[https://github.com/MarcoPon/blockchain-exploration Demo Blockchain: URI handler on GitHub]
+
 ==Acknowledgements==
 Thanks to Btc Drak for suggesting to provide support for different networks.
 Thanks to Jorge Timon for the idea of using genesis blocks hashes to identify them.

From 8380abd7eb1177365a131254e0c373e09d2b5371 Mon Sep 17 00:00:00 2001
From: Luke Dashjr 
Date: Fri, 8 Jan 2016 17:45:00 +0000
Subject: [PATCH 11/11] Assign BIP 122

---
 README.mediawiki                                    |  12 ++++++------
 ...on-BlockchainURI.mediawiki => bip-0122.mediawiki |   4 ++--
 .../chainid.png                                     | Bin
 3 files changed, 8 insertions(+), 8 deletions(-)
 rename bip-MarcoPon-BlockchainURI.mediawiki => bip-0122.mediawiki (97%)
 rename {bip-MarcoPon-BlockchainURI => bip-0122}/chainid.png (100%)

diff --git a/README.mediawiki b/README.mediawiki
index 9e68b022..389a7276 100644
--- a/README.mediawiki
+++ b/README.mediawiki
@@ -362,6 +362,12 @@ Those proposing changes should consider that ultimately consent may rest with th
 | Standard
 | Draft
 |-
+| [[bip-0122.mediawiki|121]]
+| URI scheme for Blockchain references / exploration
+| Marco Pontello
+| Standard
+| Draft
+|-
 | [[bip-0123.mediawiki|123]]
 | BIP Classification
 | Eric Lombrozo
@@ -373,12 +379,6 @@ Those proposing changes should consider that ultimately consent may rest with th
 | Suhas Daftuar
 | Standard
 | Draft
-|-
-| [[bip-MarcoPon-BlockchainURI.mediawiki| xx]]
-| URI scheme for Blockchain references / exploration
-| Marco Pontello
-| Standard
-| Draft
 |}
 
 
diff --git a/bip-MarcoPon-BlockchainURI.mediawiki b/bip-0122.mediawiki
similarity index 97%
rename from bip-MarcoPon-BlockchainURI.mediawiki
rename to bip-0122.mediawiki
index 2a0a659c..902aa02a 100644
--- a/bip-MarcoPon-BlockchainURI.mediawiki
+++ b/bip-0122.mediawiki
@@ -1,5 +1,5 @@
 
-  BIP: bip-MarcoPon-BlockchainURI
+  BIP: 122
   Title: URI scheme for Blockchain references / exploration
   Author: Marco Pontello 
   Status: Draft
@@ -66,7 +66,7 @@ Bitcoin regtest: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e220
 
 An example of forked chain (Feathercoin, that forked Litecoin):
 
-
+
 
 
 Litecoin   : 12a765e31ffd4059bada1e25190f6e98c99d9714d334efa41a195a7e7e04bfe2
diff --git a/bip-MarcoPon-BlockchainURI/chainid.png b/bip-0122/chainid.png
similarity index 100%
rename from bip-MarcoPon-BlockchainURI/chainid.png
rename to bip-0122/chainid.png