dkg 1.1.0__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. {dkg-1.1.0 → dkg-1.1.1}/PKG-INFO +1 -1
  2. {dkg-1.1.0 → dkg-1.1.1}/dkg/constants.py +5 -1
  3. {dkg-1.1.0 → dkg-1.1.1}/pyproject.toml +1 -1
  4. {dkg-1.1.0 → dkg-1.1.1}/LICENSE +0 -0
  5. {dkg-1.1.0 → dkg-1.1.1}/NOTICE +0 -0
  6. {dkg-1.1.0 → dkg-1.1.1}/README.md +0 -0
  7. {dkg-1.1.0 → dkg-1.1.1}/dkg/__init__.py +0 -0
  8. {dkg-1.1.0 → dkg-1.1.1}/dkg/assertion.py +0 -0
  9. {dkg-1.1.0 → dkg-1.1.1}/dkg/asset.py +0 -0
  10. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/AssertionStorage.json +0 -0
  11. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ContentAsset.json +0 -0
  12. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ContentAssetStorage.json +0 -0
  13. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/Hub.json +0 -0
  14. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/Paranet.json +0 -0
  15. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ParanetIncentivesPoolFactory.json +0 -0
  16. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ParanetKnowledgeMinersRegistry.json +0 -0
  17. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ParanetNeurowebIncentivesPool.json +0 -0
  18. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ParanetsRegistry.json +0 -0
  19. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/ServiceAgreementStorageProxy.json +0 -0
  20. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/Token.json +0 -0
  21. {dkg-1.1.0 → dkg-1.1.1}/dkg/data/interfaces/UnfinalizedStateStorage.json +0 -0
  22. {dkg-1.1.0 → dkg-1.1.1}/dkg/dataclasses.py +0 -0
  23. {dkg-1.1.0 → dkg-1.1.1}/dkg/exceptions.py +0 -0
  24. {dkg-1.1.0 → dkg-1.1.1}/dkg/graph.py +0 -0
  25. {dkg-1.1.0 → dkg-1.1.1}/dkg/main.py +0 -0
  26. {dkg-1.1.0 → dkg-1.1.1}/dkg/manager.py +0 -0
  27. {dkg-1.1.0 → dkg-1.1.1}/dkg/method.py +0 -0
  28. {dkg-1.1.0 → dkg-1.1.1}/dkg/module.py +0 -0
  29. {dkg-1.1.0 → dkg-1.1.1}/dkg/network.py +0 -0
  30. {dkg-1.1.0 → dkg-1.1.1}/dkg/node.py +0 -0
  31. {dkg-1.1.0 → dkg-1.1.1}/dkg/paranet.py +0 -0
  32. {dkg-1.1.0 → dkg-1.1.1}/dkg/providers/__init__.py +0 -0
  33. {dkg-1.1.0 → dkg-1.1.1}/dkg/providers/blockchain.py +0 -0
  34. {dkg-1.1.0 → dkg-1.1.1}/dkg/providers/node_http.py +0 -0
  35. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/__init__.py +0 -0
  36. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/blockchain.py +0 -0
  37. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/dkg_node.py +0 -0
  38. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/encoding.py +0 -0
  39. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/evm.py +0 -0
  40. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/general.py +0 -0
  41. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/generics.py +0 -0
  42. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/network.py +0 -0
  43. {dkg-1.1.0 → dkg-1.1.1}/dkg/types/rdf.py +0 -0
  44. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/__init__.py +0 -0
  45. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/blockchain_request.py +0 -0
  46. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/decorators.py +0 -0
  47. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/merkle.py +0 -0
  48. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/metadata.py +0 -0
  49. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/node_request.py +0 -0
  50. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/rdf.py +0 -0
  51. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/string_transformations.py +0 -0
  52. {dkg-1.1.0 → dkg-1.1.1}/dkg/utils/ual.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dkg
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Python library for interacting with the OriginTrail Decentralized Knowledge Graph
5
5
  License: Apache-2.0
6
6
  Author: Uladzislau Hubar
@@ -81,8 +81,9 @@ BLOCKCHAINS = {
81
81
  }
82
82
 
83
83
  DEFAULT_GAS_PRICE_GWEI = {
84
- "gnosis": 20,
85
84
  "otp": 1,
85
+ "gnosis": 20,
86
+ "base": 20,
86
87
  }
87
88
 
88
89
  DEFAULT_HASH_FUNCTION_ID = 1
@@ -95,14 +96,17 @@ DEFAULT_PROXIMITY_SCORE_FUNCTIONS_PAIR_IDS = {
95
96
  "devnet": {
96
97
  "otp:2160": 2,
97
98
  "gnosis:10200": 2,
99
+ "base:84532": 2,
98
100
  },
99
101
  "testnet": {
100
102
  "otp:20430": 2,
101
103
  "gnosis:10200": 2,
104
+ "base:84532": 2,
102
105
  },
103
106
  "mainnet": {
104
107
  "otp:2043": 2,
105
108
  "gnosis:100": 2,
109
+ "base:8453": 2,
106
110
  },
107
111
  }
108
112
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "dkg"
3
- version = "1.1.0"
3
+ version = "1.1.1"
4
4
  description = "Python library for interacting with the OriginTrail Decentralized Knowledge Graph"
5
5
  authors = ["Uladzislau Hubar <hubar.uladzislau@gmail.com>"]
6
6
  license = "Apache-2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes