From 3e9d0c39d23850b675b957911080d5d11ebd458c Mon Sep 17 00:00:00 2001 From: Jack Eadie Date: Thu, 28 Nov 2024 10:15:27 +1000 Subject: [PATCH] Update README.md (#235) --- postgres/accelerator/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/postgres/accelerator/README.md b/postgres/accelerator/README.md index 7f69bad..062af57 100644 --- a/postgres/accelerator/README.md +++ b/postgres/accelerator/README.md @@ -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 | +----------+------------+--------------------------------------------------------------------+-------------------+----------+ @@ -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