diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ff043f8..4aff390d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Releases prior to 7.0 has been removed from this file to declutter search result ### Fixed +- evm: Fixed sending JSONRPC requests via web3.py provider. - evm: Fixed parsing tuple types in ABI. - evm.subsquid: Fixed type of `timestamp` field of event/transaction models. - evm.subsquid: Fixed empty field base conversion on event deserialization. diff --git a/docs/16.thanks.md b/docs/16.thanks.md index 72293f571..ac7f5d040 100644 --- a/docs/16.thanks.md +++ b/docs/16.thanks.md @@ -31,7 +31,9 @@ We are grateful to all the people who helped us with the project. - [Florian PAUTOT](https://github.com/0x666c6f) - [gdsoumya](https://github.com/gdsoumya) - [Göran Sandström](https://github.com/veqtor) +- [hoka](https://github.com/hokaxbt) - [Igor Sereda](https://github.com/igorsereda) +- [Ilia Batii](https://github.com/baitcode) - [Javier Graciá Carpio](https://github.com/jagracar) - [JoE11-y](https://github.com/JoE11-y) - [Karan Dua](https://github.com/Karantezsure) @@ -49,4 +51,10 @@ We are grateful to all the people who helped us with the project. - [Soham Das](https://github.com/tosoham) - [tomsib2001](https://github.com/tomsib2001) +Also, these people helped heavily with [pysignalr](https://github.com/baking-bad/), a library we have developed to use in DipDup: + +- [Caio Barbieri](https://github.com/caiolombello) +- [MichaelMKKelly](https://github.com/MichaelMKKelly) +- [Ola Lidholm](https://github.com/olalid) + If we forgot to mention you, or you want to update your record, please, open an issue or pull request. diff --git a/docs/7.references/2.config.md b/docs/7.references/2.config.md index 0d7ba7876..b26fd9361 100644 --- a/docs/7.references/2.config.md +++ b/docs/7.references/2.config.md @@ -140,24 +140,6 @@ description: "Config file reference"
-## dipdup.config.DatasourceConfig - -class dipdup.config.DatasourceConfig(*args) -

Base class for datasource configs

-
-
Parameters:
-
    -
  • kind – Defined by child class

  • -
  • url – URL of the API

  • -
  • http – HTTP connection tunables

  • - -
-
-
-
- -
- ## dipdup.config.evm.EvmContractConfig class dipdup.config.evm.EvmContractConfig(*args) @@ -439,7 +421,7 @@ description: "Config file reference"
-## id0 +## dipdup.config.DatasourceConfig class dipdup.config.DatasourceConfig(*args)

Base class for datasource configs

diff --git a/docs/9.release-notes/_8.0_changelog.md b/docs/9.release-notes/_8.0_changelog.md index 0fe8b88d0..fdb63c08b 100644 --- a/docs/9.release-notes/_8.0_changelog.md +++ b/docs/9.release-notes/_8.0_changelog.md @@ -41,6 +41,7 @@ - evm.subsquid: Fixed typo in `iter_events` method name. - evm: Fixed crash when contract ABI contains overloaded methods. - evm: Fixed parsing tuple types in ABI. +- evm: Fixed sending JSONRPC requests via web3.py provider. - install: Fixed reinstalling package when `--force` flag is used. - models: Fixed `CachedModel` preloading. - models: Fixed setting default value for `Meta.maxsize`.