Skip to content

Commit

Permalink
feat: add references to Reactive DOT, along with companion libraries …
Browse files Browse the repository at this point in the history
…& applications (#6126)
  • Loading branch information
tien authored Aug 5, 2024
1 parent 43e3a93 commit 901a3c7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 5 additions & 1 deletion docs/build/build-client-side.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For front-end applications, several options exist for interfacing with Substrate
Substrate node:

<!-- prettier-ignore -->
<Tabs groupId="clients" values={[ {label: 'Polkadot.js', value: 'pjs'}, { label: 'Polkadot-API', value: 'papi'}, {label: 'Subxt', value: 'subxt'}, {label: 'React Hooks for ink!', value: 'useink'}, {label: 'ink!athon Boilerplate', value: 'inkathon'}, { label: 'Polkadot Cloud', value: 'pcloud'} ]}>
<Tabs groupId="clients" values={[ {label: 'Polkadot.js', value: 'pjs'}, { label: 'Polkadot-API', value: 'papi'}, {label: 'Reactive DOT', value: 'reactive-dot'}, {label: 'Subxt', value: 'subxt'}, {label: 'React Hooks for ink!', value: 'useink'}, {label: 'ink!athon Boilerplate', value: 'inkathon'}, { label: 'Polkadot Cloud', value: 'pcloud'} ]}>

<TabItem value="pjs"> Promise and RxJS APIs around Polkadot, Kusama, and other Substrate-based
chains via RPC calls. It is dynamically generated based on what the Substrate runtime provides
Expand All @@ -49,6 +49,10 @@ available&nbsp;<a href="https://polkadot.js.org/docs" target="_blank">here</a>.
<TabItem value="papi"> Polkadot-API will serve as a replacement for Polkadot JS. Full documentation
& examples available&nbsp;<a href="https://papi.how/" target="_blank">here</a>. </TabItem>

<TabItem value="reactive-dot"> A reactive library for building Substrate front-ends. Full
documentation & examples available&nbsp;<a href="https://reactivedot.dev/" target="_blank">here</a>.
</TabItem>

<TabItem value="subxt"> Query and submit extrinsics (transactions) to a Substrate node via RPC using
Rust. Also referred to as Rust Parity. Full documentation & examples
available&nbsp;<a href="https://github.com/paritytech/subxt" target="_blank">here</a>. </TabItem>
Expand Down
6 changes: 5 additions & 1 deletion docs/build/build-dapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For front-end applications, several options exist for interfacing with Substrate
Substrate node:

<!-- prettier-ignore -->
<Tabs groupId="clients" values={[ {label: 'Polkadot.js', value: 'pjs'}, { label: 'Polkadot-API', value: 'papi'}, {label: 'Subxt', value: 'subxt'}, {label: 'React Hooks for ink!', value: 'useink'}, {label: 'ink!athon Boilerplate', value: 'inkathon'}, { label: 'Polkadot Cloud', value: 'pcloud'} ]}>
<Tabs groupId="clients" values={[ {label: 'Polkadot.js', value: 'pjs'}, { label: 'Polkadot-API', value: 'papi'}, {label: 'Reactive DOT', value: 'reactive-dot'}, {label: 'Subxt', value: 'subxt'}, {label: 'React Hooks for ink!', value: 'useink'}, {label: 'ink!athon Boilerplate', value: 'inkathon'}, { label: 'Polkadot Cloud', value: 'pcloud'} ]}>

<TabItem value="pjs"> Promise and RxJS APIs around Polkadot and Substrate-based chains via RPC
calls. It is dynamically generated based on what the Substrate runtime provides regarding metadata.
Expand All @@ -47,6 +47,10 @@ available&nbsp;<a href="https://polkadot.js.org/docs" target="_blank">here</a>.
<TabItem value="papi"> Polkadot-API will serve as a replacement for Polkadot JS. Full documentation
& examples available&nbsp;<a href="https://papi.how/" target="_blank">here</a>. </TabItem>

<TabItem value="reactive-dot"> A reactive library for building Substrate front-ends. Full
documentation & examples available&nbsp;<a href="https://reactivedot.dev/" target="_blank">here</a>.
</TabItem>

<TabItem value="subxt"> Query and submit extrinsics (transactions) to a Substrate node via RPC using
Rust. Also referred to as Rust Parity. Full documentation & examples
available&nbsp;<a href="https://github.com/paritytech/subxt" target="_blank">here</a>. </TabItem>
Expand Down
3 changes: 3 additions & 0 deletions docs/build/build-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ flowchart TB
subgraph CS ["Client/User Land (dApps/uApps)"]
LC["Light Clients (Smoldot)"]
UA[uApp]
ReDot[Reactive DOT]
UA --> PAPI[Polkadot-API]
UA --> ReDot
ReDot --> PAPI[Polkadot API]
UA --> PJS[Polkadot JS]
UA --> SubXT
PAPI --> LC
Expand Down
Loading

0 comments on commit 901a3c7

Please sign in to comment.