Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Dec 13, 2021
1 parent 9497b9d commit 32cfccb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
19 changes: 5 additions & 14 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,19 @@
* [Templates and variables](getting-started/templates-and-variables.md)
* [Defining models](null)
* [Implementing handlers](null)

* [Advanced usage](advanced/README.md)
* [Datasources](advanced/datasources.md)
* [SQL hooks]()
* [TimescaleDB]()
* [TimescaleDB](undefined)
* [Improving performance](advanced/performance/README.md)
* [Tuning datasources](advanced/performance/datasources.md)
* [Optimizing database queries](advanced/performance/database.md)
* [Tuning datasources](advanced/performance/datasources.md)
* [Optimizing database queries](advanced/performance/database.md)
* [Handler context](advanced/handler-context.md)
* [Internal models](advanced/internal-models.md)
* [Spawning indexes at runtime](cookbook/index-factories.md)

* [Troubleshooting](troubleshooting/README.md)
* [Common issues](troubleshooting/common-issues.md)
* [Reporting bugs](troubleshooting/reporting-bugs.md)

* [Deployment and operations](deployment/README.md)
* [Database engines](deployment/database-engines.md)
* [Building Docker images](deployment/docker.md)
Expand All @@ -35,34 +32,29 @@
* [Logging](deployment/logging.md)
* [Monitoring](deployment/monitoring.md)
* [Backup and restore](deployment/backups.md)

* [Cookbook](cookbook/README.md)
* [Processing offchain data](cookbook/offchain-data.md)
* [Reusing typename for different contracts](cookbook/reusing-typenames.md)
* [Synchronizing multiple handlers/hooks](cookbook/sync-callbacks.md)
* [Caching models](cookbook/caching-models.md)

* [Client side](client-side/README.md)
* [Hasura integration]()
* [GenQL](client-side/genql.md)

* [Examples](examples/README.md)
* [Demo projects](examples.md)
* [Built with DipDup](built-with-dipdup.md)

* [Plugins](plugins/README.md)
* [Mempool plugin](plugins/mempool.md)
* [Metadata plugin](plugins/metadata.md)

* [Config file reference](config-reference/README.md)
* [contracts](config-reference/contracts.md)
* [database](config-reference/database.md)
* [datasources](config-reference/datasources.md)
* [hasura](config-reference/hasura.md)
* [hooks](config-reference/hooks.md)
* [indexes](config-reference/indexes/README.md)
* [operation](config-reference/indexes/operation.md)
* [big_map](config-reference/indexes/big_map.md)
* [operation](config-reference/indexes/operation.md)
* [big_map](config-reference/indexes/big_map.md)
* [jobs](config-reference/jobs.md)
* [mempool](config-reference/plugins/mempool.md)
* [metadata](config-reference/plugins/metadata.md)
Expand All @@ -73,7 +65,6 @@
* [spec_version](config-reference/spec_version.md)
* [template](config-reference/indexes/template.md)
* [templates](config-reference/templates.md)

* [Command-line reference](cli-reference/README.md)
* [init](cli-reference/init.md)
* [run](cli-reference/run.md)
Expand Down
6 changes: 3 additions & 3 deletions deployment/database-engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
DipDup officially supports the following databases: SQLite, PostgreSQL, TimescaleDB. This page will help you choose a database engine that mostly suits your needs.

| | SQLite | PostgreSQL | TimescaleDB |
|-| | | |
|-| | | |
| Supported versions | any | any | any |
| When to use | early development | general usage | working with timeseries
| Performance | good | better | great in some scenarios |
| SQL hooks ||||
| Immune tables\* ||||
| Hasura integration ||\*\*|\*\*|
| Hasura integration ||\*\*|\*\*|

\* — see reindexing

\*\* — schema name must be `public`
\*\* — schema name must be `public`
1 change: 0 additions & 1 deletion quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ async def on_balance_update(

That was pretty straightforward 👍🏻


Three methods of tzBTC contract can alter token balances — `transfer`, `mint` and `burn`. The last one is omitted in this tutorial for simplicity. Edit corresponding handlers to call `on_balance_update` method with data from matched operations:

`on_transfer.py`
Expand Down

0 comments on commit 32cfccb

Please sign in to comment.