dkg 1.0.0__tar.gz → 1.1.0__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.0.0 → dkg-1.1.0}/PKG-INFO +1 -1
  2. {dkg-1.0.0 → dkg-1.1.0}/dkg/constants.py +5 -1
  3. {dkg-1.0.0 → dkg-1.1.0}/dkg/exceptions.py +1 -1
  4. {dkg-1.0.0 → dkg-1.1.0}/dkg/paranet.py +0 -1
  5. {dkg-1.0.0 → dkg-1.1.0}/pyproject.toml +1 -1
  6. {dkg-1.0.0 → dkg-1.1.0}/LICENSE +0 -0
  7. {dkg-1.0.0 → dkg-1.1.0}/NOTICE +0 -0
  8. {dkg-1.0.0 → dkg-1.1.0}/README.md +0 -0
  9. {dkg-1.0.0 → dkg-1.1.0}/dkg/__init__.py +0 -0
  10. {dkg-1.0.0 → dkg-1.1.0}/dkg/assertion.py +0 -0
  11. {dkg-1.0.0 → dkg-1.1.0}/dkg/asset.py +0 -0
  12. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/AssertionStorage.json +0 -0
  13. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ContentAsset.json +0 -0
  14. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ContentAssetStorage.json +0 -0
  15. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/Hub.json +0 -0
  16. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/Paranet.json +0 -0
  17. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ParanetIncentivesPoolFactory.json +0 -0
  18. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ParanetKnowledgeMinersRegistry.json +0 -0
  19. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ParanetNeurowebIncentivesPool.json +0 -0
  20. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ParanetsRegistry.json +0 -0
  21. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/ServiceAgreementStorageProxy.json +0 -0
  22. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/Token.json +0 -0
  23. {dkg-1.0.0 → dkg-1.1.0}/dkg/data/interfaces/UnfinalizedStateStorage.json +0 -0
  24. {dkg-1.0.0 → dkg-1.1.0}/dkg/dataclasses.py +0 -0
  25. {dkg-1.0.0 → dkg-1.1.0}/dkg/graph.py +0 -0
  26. {dkg-1.0.0 → dkg-1.1.0}/dkg/main.py +0 -0
  27. {dkg-1.0.0 → dkg-1.1.0}/dkg/manager.py +0 -0
  28. {dkg-1.0.0 → dkg-1.1.0}/dkg/method.py +0 -0
  29. {dkg-1.0.0 → dkg-1.1.0}/dkg/module.py +0 -0
  30. {dkg-1.0.0 → dkg-1.1.0}/dkg/network.py +0 -0
  31. {dkg-1.0.0 → dkg-1.1.0}/dkg/node.py +0 -0
  32. {dkg-1.0.0 → dkg-1.1.0}/dkg/providers/__init__.py +0 -0
  33. {dkg-1.0.0 → dkg-1.1.0}/dkg/providers/blockchain.py +0 -0
  34. {dkg-1.0.0 → dkg-1.1.0}/dkg/providers/node_http.py +0 -0
  35. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/__init__.py +0 -0
  36. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/blockchain.py +0 -0
  37. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/dkg_node.py +0 -0
  38. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/encoding.py +0 -0
  39. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/evm.py +0 -0
  40. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/general.py +0 -0
  41. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/generics.py +0 -0
  42. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/network.py +0 -0
  43. {dkg-1.0.0 → dkg-1.1.0}/dkg/types/rdf.py +0 -0
  44. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/__init__.py +0 -0
  45. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/blockchain_request.py +0 -0
  46. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/decorators.py +0 -0
  47. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/merkle.py +0 -0
  48. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/metadata.py +0 -0
  49. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/node_request.py +0 -0
  50. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/rdf.py +0 -0
  51. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/string_transformations.py +0 -0
  52. {dkg-1.0.0 → dkg-1.1.0}/dkg/utils/ual.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dkg
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Python library for interacting with the OriginTrail Decentralized Knowledge Graph
5
5
  License: Apache-2.0
6
6
  Author: Uladzislau Hubar
@@ -72,7 +72,11 @@ BLOCKCHAINS = {
72
72
  "https://api.gnosisscan.io/api?module=proxy&action=eth_gasPrice",
73
73
  "https://blockscout.com/xdai/mainnet/api/v1/gas-price-oracle",
74
74
  ],
75
- }
75
+ },
76
+ "base:8453": {
77
+ "hub": "0xaBfcf2ad1718828E7D3ec20435b0d0b5EAfbDf2c",
78
+ "rpc": "https://mainnet.base.org",
79
+ },
76
80
  },
77
81
  }
78
82
 
@@ -95,7 +95,7 @@ class HTTPRequestMethodNotSupported(DKGException):
95
95
 
96
96
  class NodeRequestError(DKGException):
97
97
  """
98
- Raised by Node HTTP Provider if error occured during request.
98
+ Raised by Node HTTP Provider if error occurred during request.
99
99
  """
100
100
 
101
101
  pass
@@ -19,7 +19,6 @@ import json
19
19
 
20
20
  from dataclasses import dataclass
21
21
  from web3 import Web3
22
- from web3.contract import Contract
23
22
  from web3.types import TxReceipt
24
23
 
25
24
  from dkg.dataclasses import BaseIncentivesPoolParams, ParanetIncentivizationType
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "dkg"
3
- version = "1.0.0"
3
+ version = "1.1.0"
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