Skip to content

Commit

Permalink
Amend
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Dec 23, 2024
1 parent 7454269 commit 72b833b
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions docs/src/inscriptions/recursion.md
Original file line number Diff line number Diff line change
Expand Up @@ -3216,7 +3216,7 @@ returned types might be null.

### Examples

Inscriptions only index:
Genesis output with server running only inscriptions index:

```bash
curl -s -H "Accept: application/json" \
Expand All @@ -3225,22 +3225,41 @@ curl -s -H "Accept: application/json" \

```json
{
"address": "", // TODO
"address": null,
"inscriptions": [],
"runes": null,
"sat_ranges": null,
"script_pubkey": "", // TODO
"script_pubkey": "4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac",
"value": 5000000000
}
```

Multiple assets in output:
Server running with runes and inscriptions index:

```bash
curl -s -H "Accept: application/json" \
http://0.0.0.0:80/r/output/4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b:0
```

```json
{
"address": null,
"inscriptions": [],
"runes": {},
"sat_ranges": null,
"script_pubkey": "4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac",
"value": 5000000000
}
```

Multiple assets in output with server running with runes, inscriptions and sats
index:

```bash
curl -s -H "Accept: application/json" \
http://0.0.0.0:80/r/output/
```

```json
{
"address": "", // TODO
Expand Down

0 comments on commit 72b833b

Please sign in to comment.