Skip to content

Commit

Permalink
Update README.md (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeadie authored Nov 28, 2024
1 parent bed363b commit 3e9d0c3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion postgres/accelerator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ You can now now query `eth_recent_blocks` in the runtime.

```sql
select number, "timestamp", hash, transaction_count, gas_used from eth_recent_blocks order by number desc limit 10;
```
```shell
+----------+------------+--------------------------------------------------------------------+-------------------+----------+
| number | timestamp | hash | transaction_count | gas_used |
+----------+------------+--------------------------------------------------------------------+-------------------+----------+
Expand Down Expand Up @@ -156,7 +158,9 @@ psql spice_demo
```

```sql
spice_demo=# select number, "timestamp", hash, transaction_count, gas_used from eth_recent_blocks order by number desc limit 10;
select number, "timestamp", hash, transaction_count, gas_used from eth_recent_blocks order by number desc limit 10;
```
```shell
number | timestamp | hash | transaction_count | gas_used
----------+------------+--------------------------------------------------------------------+-------------------+----------
19823523 | 1715149295 | 0x6a4619e01fae477b9034981c74908a2cf5110c56828227971a46b798c5c11f1b | 238 | 15921279
Expand Down

0 comments on commit 3e9d0c3

Please sign in to comment.