Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/common/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,8 @@ are provided so frontends can submit via their own providers.
- `rain_error_decoding` — ABI error decoding to readable types/names.
- `rain_math_float` — Arbitrary‑precision floats with hex encoding for on‑chain
compatibility and pretty formatting.
- `alloy` & `alloy_ethers_typecast` — EVM primitives, providers, signers
(Ledger), and Read/Write contract helpers.
- `alloy` — EVM primitives, providers, signers (Ledger), and transaction
building/sending.
- `wasm_bindgen_utils`, `tsify` — WASM/JS interop helpers and type generation.

## Typical End‑to‑End Flows
Expand Down
5 changes: 2 additions & 3 deletions crates/quote/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,12 @@ call, collecting interpreter traces, and decoding any revert reason.
- `alloy` primitives and `sol_types`: ABI encode/decode, EVM types, and contract
call modeling.
- `raindex_bindings`: contract bindings (`IRaindexV6`, provider helpers like
`mk_read_provider`).
`mk_read_provider`, which builds an alloy provider with fallback across
multiple HTTP RPCs).
- `raindex_subgraph_client`: GraphQL client and types; provides `order_detail`
and `batch_order_detail`.
- `rain-error-decoding`: decodes revert selectors (known/unknown) into
structured errors.
- `alloy-ethers-typecast::ReadableClient`: convenience for fetching block number
across multiple HTTP RPCs.
- `rain_math_float::Float`: canonical numeric type used in quotes; serializes to
hex strings and provides safe equality/formatting.
- `wasm-bindgen-utils`: `Tsify` derives and helper macros (`impl_wasm_traits!`,
Expand Down
Loading