diff --git a/73.md b/73.md index d15c5b23..db3b14c6 100644 --- a/73.md +++ b/73.md @@ -13,29 +13,87 @@ There are certain established global content identifiers such as [Book ISBNs](ht ## Supported IDs -| Type | `i` tag | `k` tag | -| --- | --- | --- | -| URLs | "``" | "web" | -| Hashtags | "#``" | "#" | -| Geohashes | "geo:``" | "geo" | -| Books | "isbn:``" | "isbn" | -| Podcast Feeds | "podcast:guid:``" | "podcast:guid" | -| Podcast Episodes | "podcast:item:guid:``" | "podcast:item:guid" | -| Podcast Publishers | "podcast:publisher:guid:``" | "podcast:publisher:guid" | -| Movies | "isan:``" | "isan" | -| Papers | "doi:``" | "doi" | +| Type | `i` tag | `k` tag | +| --- | --- | --- | +| Blockchain Transaction | "``:[``:]tx:``" | "``:tx" | +| Blockchain Address | "``:[``:]address:`
`" | "``:address" | +| Books | "isbn:``" | "isbn" | +| Geohashes | "geo:``" | "geo" | +| Hashtags | "#``" | "#" | +| Movies | "isan:``" | "isan" | +| Papers | "doi:``" | "doi" | +| Podcast Feeds | "podcast:guid:``" | "podcast:guid" | +| Podcast Episodes | "podcast:item:guid:``" | "podcast:item:guid" | +| Podcast Publishers | "podcast:publisher:guid:``" | "podcast:publisher:guid" | +| URLs | "``" | "web" | --- ## Examples +### Blockchain + +`` can be any layer 1 chain (`bitcoin`, `ethereum`, `solana`, ...). If necessary (e.g. for ethereum), you can specify a ``. + +#### Bitcoin + +``` +bitcoin:address: +bitcoin:tx: +``` + +E.g. https://blockstream.info/tx/a1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d + +```jsonc +[ + ["i", "bitcoin:tx:a1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d"], + ["k", "bitcoin:tx"] +] +``` + +E.g. https://blockstream.info/address/1HQ3Go3ggs8pFnXuHVHRytPCq5fGG8Hbhx + +```jsonc +[ + ["i", "bitcoin:address:1HQ3Go3ggs8pFnXuHVHRytPCq5fGG8Hbhx"], + ["k", "bitcoin:address"] +] +``` + +#### Ethereum (and other EVM chains) + +``` +ethereum::tx: +ethereum::address: +``` + +E.g. https://etherscan.io/address/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 + +```jsonc +[ + ["i", "ethereum:1:address:0xd8da6bf26964af9d7eed9e03e53415d37aa96045"], + ["k", "ethereum:address"] +] +``` + +E.g. https://gnosisscan.io/tx/0x98f7812be496f97f80e2e98d66358d1fc733cf34176a8356d171ea7fbbe97ccd + +```jsonc +[ + ["i", "ethereum:100:tx:0x98f7812be496f97f80e2e98d66358d1fc733cf34176a8356d171ea7fbbe97ccd"], + ["k", "ethereum:tx"] +] +``` + + + ### Webpages For the webpage "https://myblog.example.com/post/2012-03-27/hello-world" the "i" and "k" tags are: ```jsonc [ - ["i","https://myblog.example.com/post/2012-03-27/hello-world"], + ["i", "https://myblog.example.com/post/2012-03-27/hello-world"], ["k", "web"] ] ```