From cf4b4e44b066cfed2485c53a18002a252cdd7668 Mon Sep 17 00:00:00 2001 From: 0x009922 <43530070+0x009922@users.noreply.github.com> Date: Thu, 13 Mar 2025 13:49:33 +0900 Subject: [PATCH] docs(client): remove redundant note about selectors design Signed-off-by: 0x009922 <43530070+0x009922@users.noreply.github.com> --- packages/client/mod.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/packages/client/mod.ts b/packages/client/mod.ts index 668919cf..e4bbe9c8 100644 --- a/packages/client/mod.ts +++ b/packages/client/mod.ts @@ -157,10 +157,6 @@ * * This example finds all accounts whose domain name ends with `land`. * - * > [!IMPORTANT] - * > Current selectors and predicates implementation is not very intuitive and easy to use, and it most probably will change (see - * > [tracking issue](https://github.com/hyperledger-iroha/iroha-javascript/issues/213)). - * * @example Use query selectors * * ```ts @@ -176,14 +172,10 @@ * } * ``` * - * This example finds all transaction and retrieves them as tuples of their block hash and authority id. + * This example finds all transactions and retrieves them as tuples of their block hash and authority id. * * Note that resulting types are inferred automatically based on the selectors you pass. * - * > [!IMPORTANT] - * > Current selectors and predicates implementation is not very intuitive and easy to use, and it most probably will change (see - * > [tracking issue](https://github.com/hyperledger-iroha/iroha-javascript/issues/213)). - * * @example Make lower-level API calls * ```ts * import { MainAPI, HttpTransport } from '@iroha/client'