From 33befa30b7a9bbac958522033b1b2e9d2cac9edf Mon Sep 17 00:00:00 2001 From: Joshua Oladele <jurshsmith@gmail.com> Date: Sat, 20 Apr 2024 11:54:09 +0100 Subject: [PATCH] Update README --- README.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index c140d66..48a8be5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ use crate::states::Nft; pub struct TransferHandler; -#[async_trait::async_trait] +#[chaindexing::augmenting_std::async_trait::async_trait] impl EventHandler for TransferHandler { fn abi(&self) -> &'static str { "event Transfer(address indexed from, address indexed to, uint256 indexed tokenId)" @@ -53,28 +53,28 @@ A quick and effective way to get started is by exploring the comprehensive examp ## Design Goals & Features -💸 Free forever<br/> -⚡ Real-time use-cases<br/> -🌐 Multi-chain<br/> -🧂 Granular, 🧩 Modular & 📈 Scalable<br/> -🌍 Environment-agnostic to allow inspecting 🔍 & replicating indexes anywhere!<br/> -🔓 ORM-agnostic, use any ORM to access indexed data<br/> -📤 Easy export to any data lake: S3, Snowflake, etc.<br/> -🚫 No complex YAML/JSON/CLI config<br/> -💪 Index contracts discovered at runtime<br/> -✨ Handles re-org with no UX impact<br/> -🔥 Side effect handling for notifications & bridging use cases<br/> -💸 Optimize RPC cost by indexing when certain activities happen in your DApp<br/> -💎 Language-agnostic, so no macros!<br/> +- 💸 Free forever<br/> +- ⚡ Real-time use-cases<br/> +- 🌐 Multi-chain<br/> +- 🧂 Granular, 🧩 Modular & 📈 Scalable<br/> +- 🌍 Environment-agnostic to allow inspecting 🔍 & replicating indexes anywhere!<br/> +- 🔓 ORM-agnostic, use any ORM to access indexed data<br/> +- 📤 Easy export to any data lake: S3, Snowflake, etc.<br/> +- 🚫 No complex YAML/JSON/CLI config<br/> +- 💪 Index contracts discovered at runtime<br/> +- ✨ Handles re-org with no UX impact<br/> +- 🔥 Side effect handling for notifications & bridging use cases<br/> +- 💸 Optimize RPC cost by indexing when certain activities happen in your DApp<br/> +- 💎 Language-agnostic, so no macros!<br/> ## RoadMap -⬜ Expose `is_at_block_tail` flag to improve op heuristics for applications<br/> -⬜ Support SQLite Database (Currently supports only Postgres)<br/> -⬜ Support indexing raw transactions & call traces.<br/> -⬜ Improved error handling/messages/reporting (Please feel free to open an issue when an opaque runtime error is encountered)<br/> -⬜ SSL Support<br/> -⬜ Minimal UI for inspecting events and indexed states<br/> +- ⬜ Expose `is_at_block_tail` flag to improve op heuristics for applications<br/> +- ⬜ Support SQLite Database (Currently supports only Postgres)<br/> +- ⬜ Support indexing raw transactions & call traces.<br/> +- ⬜ Improved error handling/messages/reporting (Please feel free to open an issue when an opaque runtime error is encountered)<br/> +- ⬜ SSL Support<br/> +- ⬜ Minimal UI for inspecting events and indexed states<br/> ## Contributing