Browse Source

docs: move subscription to tendermint-core (#5323)

## Description

- Move subscriptions to tendermint-core section. 

- Remove unused photot

Closes: #XXX
pull/5325/head
Marko 4 years ago
committed by GitHub
parent
commit
c2ce5e6f35
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 11 additions and 12 deletions
  1. +3
    -5
      docs/app-dev/indexing-transactions.md
  2. BIN
      docs/imgs/a_plus_t.png
  3. +1
    -0
      docs/tendermint-core/README.md
  4. +1
    -1
      docs/tendermint-core/block-structure.md
  5. +1
    -1
      docs/tendermint-core/fast-sync.md
  6. +1
    -1
      docs/tendermint-core/light-client.md
  7. +1
    -1
      docs/tendermint-core/mempool.md
  8. +1
    -1
      docs/tendermint-core/rpc.md
  9. +1
    -1
      docs/tendermint-core/state-sync.md
  10. +1
    -1
      docs/tendermint-core/subscription.md

+ 3
- 5
docs/app-dev/indexing-transactions.md View File

@ -4,8 +4,7 @@ order: 6
# Indexing Transactions
Tendermint allows you to index transactions and later query or subscribe
to their results.
Tendermint allows you to index transactions and later query or subscribe to their results.
Events can be used to index transactions and blocks according to what happened
during their execution. Note that the set of events returned for a block from
@ -78,9 +77,8 @@ func (app *KVStoreApplication) DeliverTx(req types.RequestDeliverTx) types.Resul
}
```
The transaction will be indexed (if the indexer is not `null`) with a certain
attribute if the attribute's `Index` field is set to `true`. In the above
example, all attributes will be indexed.
The transaction will be indexed (if the indexer is not `null`) with a certain attribute if the attribute's `Index` field is set to `true`.
In the above example, all attributes will be indexed.
## Querying Transactions


BIN
docs/imgs/a_plus_t.png View File

Before After
Width: 250  |  Height: 100  |  Size: 14 KiB

+ 1
- 0
docs/tendermint-core/README.md View File

@ -14,6 +14,7 @@ This section dives into the internals of Tendermint the implementation.
- [Running in Production](./running-in-production.md)
- [Metrics](./metrics.md)
- [Validators](./validators.md)
- [Subscribing to events](./subscription.md)
- [Block Structure](./block-structure.md)
- [RPC](./rpc.md)
- [Fast Sync](./fast-sync.md)


+ 1
- 1
docs/tendermint-core/block-structure.md View File

@ -1,5 +1,5 @@
---
order: 7
order: 8
---
# Block Structure


+ 1
- 1
docs/tendermint-core/fast-sync.md View File

@ -1,5 +1,5 @@
---
order: 9
order: 10
---
# Fast Sync


+ 1
- 1
docs/tendermint-core/light-client.md View File

@ -1,5 +1,5 @@
---
order: 12
order: 13
---
# Light Client


+ 1
- 1
docs/tendermint-core/mempool.md View File

@ -1,5 +1,5 @@
---
order: 11
order: 12
---
# Mempool


+ 1
- 1
docs/tendermint-core/rpc.md View File

@ -1,5 +1,5 @@
---
order: 8
order: 9
---
# RPC


+ 1
- 1
docs/tendermint-core/state-sync.md View File

@ -1,5 +1,5 @@
---
order: 10
order: 11
---
# State Sync


docs/app-dev/subscribing-to-events-via-websocket.md → docs/tendermint-core/subscription.md View File


Loading…
Cancel
Save