olas-operate-middleware 0.1.0rc59__py3-none-any.whl → 0.13.2__py3-none-any.whl

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 (98) hide show
  1. olas_operate_middleware-0.13.2.dist-info/METADATA +75 -0
  2. olas_operate_middleware-0.13.2.dist-info/RECORD +101 -0
  3. {olas_operate_middleware-0.1.0rc59.dist-info → olas_operate_middleware-0.13.2.dist-info}/WHEEL +1 -1
  4. operate/__init__.py +17 -0
  5. operate/account/user.py +35 -9
  6. operate/bridge/bridge_manager.py +470 -0
  7. operate/bridge/providers/lifi_provider.py +377 -0
  8. operate/bridge/providers/native_bridge_provider.py +677 -0
  9. operate/bridge/providers/provider.py +469 -0
  10. operate/bridge/providers/relay_provider.py +457 -0
  11. operate/cli.py +1565 -417
  12. operate/constants.py +60 -12
  13. operate/data/README.md +19 -0
  14. operate/data/contracts/{service_staking_token → dual_staking_token}/__init__.py +2 -2
  15. operate/data/contracts/dual_staking_token/build/DualStakingToken.json +443 -0
  16. operate/data/contracts/dual_staking_token/contract.py +132 -0
  17. operate/data/contracts/dual_staking_token/contract.yaml +23 -0
  18. operate/{ledger/base.py → data/contracts/foreign_omnibridge/__init__.py} +2 -19
  19. operate/data/contracts/foreign_omnibridge/build/ForeignOmnibridge.json +1372 -0
  20. operate/data/contracts/foreign_omnibridge/contract.py +130 -0
  21. operate/data/contracts/foreign_omnibridge/contract.yaml +23 -0
  22. operate/{ledger/solana.py → data/contracts/home_omnibridge/__init__.py} +2 -20
  23. operate/data/contracts/home_omnibridge/build/HomeOmnibridge.json +1421 -0
  24. operate/data/contracts/home_omnibridge/contract.py +80 -0
  25. operate/data/contracts/home_omnibridge/contract.yaml +23 -0
  26. operate/data/contracts/l1_standard_bridge/__init__.py +20 -0
  27. operate/data/contracts/l1_standard_bridge/build/L1StandardBridge.json +831 -0
  28. operate/data/contracts/l1_standard_bridge/contract.py +158 -0
  29. operate/data/contracts/l1_standard_bridge/contract.yaml +23 -0
  30. operate/data/contracts/l2_standard_bridge/__init__.py +20 -0
  31. operate/data/contracts/l2_standard_bridge/build/L2StandardBridge.json +626 -0
  32. operate/data/contracts/l2_standard_bridge/contract.py +130 -0
  33. operate/data/contracts/l2_standard_bridge/contract.yaml +23 -0
  34. operate/data/contracts/mech_activity/__init__.py +20 -0
  35. operate/data/contracts/mech_activity/build/MechActivity.json +111 -0
  36. operate/data/contracts/mech_activity/contract.py +44 -0
  37. operate/data/contracts/mech_activity/contract.yaml +23 -0
  38. operate/data/contracts/optimism_mintable_erc20/__init__.py +20 -0
  39. operate/data/contracts/optimism_mintable_erc20/build/OptimismMintableERC20.json +491 -0
  40. operate/data/contracts/optimism_mintable_erc20/contract.py +45 -0
  41. operate/data/contracts/optimism_mintable_erc20/contract.yaml +23 -0
  42. operate/data/contracts/recovery_module/__init__.py +20 -0
  43. operate/data/contracts/recovery_module/build/RecoveryModule.json +811 -0
  44. operate/data/contracts/recovery_module/contract.py +61 -0
  45. operate/data/contracts/recovery_module/contract.yaml +23 -0
  46. operate/data/contracts/requester_activity_checker/__init__.py +20 -0
  47. operate/data/contracts/requester_activity_checker/build/RequesterActivityChecker.json +111 -0
  48. operate/data/contracts/requester_activity_checker/contract.py +33 -0
  49. operate/data/contracts/requester_activity_checker/contract.yaml +23 -0
  50. operate/data/contracts/staking_token/__init__.py +20 -0
  51. operate/data/contracts/staking_token/build/StakingToken.json +1336 -0
  52. operate/data/contracts/{service_staking_token → staking_token}/contract.py +27 -13
  53. operate/data/contracts/staking_token/contract.yaml +23 -0
  54. operate/data/contracts/uniswap_v2_erc20/contract.yaml +3 -1
  55. operate/data/contracts/uniswap_v2_erc20/tests/__init__.py +20 -0
  56. operate/data/contracts/uniswap_v2_erc20/tests/test_contract.py +363 -0
  57. operate/keys.py +118 -33
  58. operate/ledger/__init__.py +159 -56
  59. operate/ledger/profiles.py +321 -18
  60. operate/migration.py +555 -0
  61. operate/{http → operate_http}/__init__.py +3 -2
  62. operate/{http → operate_http}/exceptions.py +6 -4
  63. operate/operate_types.py +544 -0
  64. operate/pearl.py +13 -1
  65. operate/quickstart/analyse_logs.py +118 -0
  66. operate/quickstart/claim_staking_rewards.py +104 -0
  67. operate/quickstart/reset_configs.py +106 -0
  68. operate/quickstart/reset_password.py +70 -0
  69. operate/quickstart/reset_staking.py +145 -0
  70. operate/quickstart/run_service.py +726 -0
  71. operate/quickstart/stop_service.py +72 -0
  72. operate/quickstart/terminate_on_chain_service.py +83 -0
  73. operate/quickstart/utils.py +298 -0
  74. operate/resource.py +62 -3
  75. operate/services/agent_runner.py +202 -0
  76. operate/services/deployment_runner.py +868 -0
  77. operate/services/funding_manager.py +929 -0
  78. operate/services/health_checker.py +280 -0
  79. operate/services/manage.py +2356 -620
  80. operate/services/protocol.py +1246 -340
  81. operate/services/service.py +756 -391
  82. operate/services/utils/mech.py +103 -0
  83. operate/services/utils/tendermint.py +86 -12
  84. operate/settings.py +70 -0
  85. operate/utils/__init__.py +135 -0
  86. operate/utils/gnosis.py +407 -80
  87. operate/utils/single_instance.py +226 -0
  88. operate/utils/ssl.py +133 -0
  89. operate/wallet/master.py +708 -123
  90. operate/wallet/wallet_recovery_manager.py +507 -0
  91. olas_operate_middleware-0.1.0rc59.dist-info/METADATA +0 -304
  92. olas_operate_middleware-0.1.0rc59.dist-info/RECORD +0 -41
  93. operate/data/contracts/service_staking_token/build/ServiceStakingToken.json +0 -1273
  94. operate/data/contracts/service_staking_token/contract.yaml +0 -23
  95. operate/ledger/ethereum.py +0 -48
  96. operate/types.py +0 -260
  97. {olas_operate_middleware-0.1.0rc59.dist-info → olas_operate_middleware-0.13.2.dist-info}/entry_points.txt +0 -0
  98. {olas_operate_middleware-0.1.0rc59.dist-info → olas_operate_middleware-0.13.2.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,61 @@
1
+ # -*- coding: utf-8 -*-
2
+ # ------------------------------------------------------------------------------
3
+ #
4
+ # Copyright 2025 Valory AG
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ # ------------------------------------------------------------------------------
19
+
20
+ """This module contains the class to connect to the `RecoveryModule` contract."""
21
+
22
+
23
+ from typing import Any, Dict
24
+
25
+ from aea.configurations.base import PublicId
26
+ from aea.contracts.base import Contract
27
+ from aea.crypto.base import LedgerApi
28
+
29
+
30
+ PUBLIC_ID = PublicId.from_str("valory/recovery_module:0.1.0")
31
+
32
+
33
+ class RecoveryModule(Contract):
34
+ """The RecoveryModule contract"""
35
+
36
+ contract_id = PUBLIC_ID
37
+
38
+ @classmethod
39
+ def get_recover_access_transaction(
40
+ cls,
41
+ ledger_api: LedgerApi,
42
+ contract_address: str,
43
+ owner: str,
44
+ service_id: int,
45
+ raise_on_try: bool = False,
46
+ ) -> Dict[str, Any]:
47
+ """Get the recover access transaction."""
48
+
49
+ tx_params = ledger_api.build_transaction(
50
+ contract_instance=cls.get_instance(
51
+ ledger_api=ledger_api, contract_address=contract_address
52
+ ),
53
+ method_name="recoverAccess",
54
+ method_args={
55
+ "serviceId": service_id,
56
+ },
57
+ tx_args={"sender_address": owner},
58
+ raise_on_try=raise_on_try,
59
+ )
60
+
61
+ return tx_params
@@ -0,0 +1,23 @@
1
+ name: recovery_module
2
+ author: valory
3
+ version: 0.1.0
4
+ type: contract
5
+ description: Recovery module
6
+ license: Apache-2.0
7
+ aea_version: '>=1.0.0, <2.0.0'
8
+ fingerprint:
9
+ __init__.py: bafybeicjlkmxs5ikpgdtgndifstpmmpaixwcbgouvmt6gowuhf5dy3dpgu
10
+ build/RecoveryModule.json: bafybeifsyjdbprcp4kxpijlpqfovxcf7cv2ujapt3d5zn34wby26ldv4ky
11
+ contract.py: bafybeifihpwb3etbrnn2hqdizsp5zolis3ur23slt3q5zctcykm5nlvv7q
12
+ fingerprint_ignore_patterns: []
13
+ contracts: []
14
+ class_name: RecoveryModule
15
+ contract_interface_paths:
16
+ ethereum: build/RecoveryModule.json
17
+ dependencies:
18
+ open-aea-ledger-ethereum:
19
+ version: ==1.60.0
20
+ open-aea-test-autonomy:
21
+ version: ==0.18.3
22
+ web3:
23
+ version: <7,>=6.0.0
@@ -0,0 +1,20 @@
1
+ # -*- coding: utf-8 -*-
2
+ # ------------------------------------------------------------------------------
3
+ #
4
+ # Copyright 2025 Valory AG
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ # ------------------------------------------------------------------------------
19
+
20
+ """This module contains the support resources for the requester activity checker contract."""
@@ -0,0 +1,111 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "RequesterActivityChecker",
4
+ "sourceName": "contracts/mech_usage/RequesterActivityChecker.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "_mechMarketplace",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "_livenessRatio",
16
+ "type": "uint256"
17
+ }
18
+ ],
19
+ "stateMutability": "nonpayable",
20
+ "type": "constructor"
21
+ },
22
+ {
23
+ "inputs": [],
24
+ "name": "ZeroAddress",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [],
29
+ "name": "ZeroValue",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "address",
36
+ "name": "multisig",
37
+ "type": "address"
38
+ }
39
+ ],
40
+ "name": "getMultisigNonces",
41
+ "outputs": [
42
+ {
43
+ "internalType": "uint256[]",
44
+ "name": "nonces",
45
+ "type": "uint256[]"
46
+ }
47
+ ],
48
+ "stateMutability": "view",
49
+ "type": "function"
50
+ },
51
+ {
52
+ "inputs": [
53
+ {
54
+ "internalType": "uint256[]",
55
+ "name": "curNonces",
56
+ "type": "uint256[]"
57
+ },
58
+ {
59
+ "internalType": "uint256[]",
60
+ "name": "lastNonces",
61
+ "type": "uint256[]"
62
+ },
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "ts",
66
+ "type": "uint256"
67
+ }
68
+ ],
69
+ "name": "isRatioPass",
70
+ "outputs": [
71
+ {
72
+ "internalType": "bool",
73
+ "name": "ratioPass",
74
+ "type": "bool"
75
+ }
76
+ ],
77
+ "stateMutability": "view",
78
+ "type": "function"
79
+ },
80
+ {
81
+ "inputs": [],
82
+ "name": "livenessRatio",
83
+ "outputs": [
84
+ {
85
+ "internalType": "uint256",
86
+ "name": "",
87
+ "type": "uint256"
88
+ }
89
+ ],
90
+ "stateMutability": "view",
91
+ "type": "function"
92
+ },
93
+ {
94
+ "inputs": [],
95
+ "name": "mechMarketplace",
96
+ "outputs": [
97
+ {
98
+ "internalType": "address",
99
+ "name": "",
100
+ "type": "address"
101
+ }
102
+ ],
103
+ "stateMutability": "view",
104
+ "type": "function"
105
+ }
106
+ ],
107
+ "bytecode": "0x60c060405234801561000f575f5ffd5b506040516107ba3803806107ba83398101604081905261002e9161008b565b80805f0361004f57604051637c946ed760e01b815260040160405180910390fd5b6080526001600160a01b0382166100795760405163d92e233d60e01b815260040160405180910390fd5b506001600160a01b031660a0526100c2565b5f5f6040838503121561009c575f5ffd5b82516001600160a01b03811681146100b2575f5ffd5b6020939093015192949293505050565b60805160a0516106cb6100ef5f395f818160b0015261036501525f8181607b015261024701526106cb5ff3fe608060405234801561000f575f5ffd5b506004361061004a575f3560e01c8063184023a51461004e578063592cf3fb146100765780639c5e9590146100ab578063d564c4bf146100f7575b5f5ffd5b61006161005c3660046104d9565b610117565b60405190151581526020015b60405180910390f35b61009d7f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161006d565b6100d27f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161006d565b61010a610105366004610547565b610276565b60405161006d919061057a565b5f5f821180156101585750825f81518110610134576101346105bc565b6020026020010151845f8151811061014e5761014e6105bc565b6020026020010151115b8015610197575082600181518110610172576101726105bc565b60200260200101518460018151811061018d5761018d6105bc565b6020026020010151115b1561026f575f835f815181106101af576101af6105bc565b6020026020010151855f815181106101c9576101c96105bc565b60200260200101516101db9190610616565b90505f846001815181106101f1576101f16105bc565b60200260200101518660018151811061020c5761020c6105bc565b602002602001015161021e9190610616565b905081811161026c575f8461023b83670de0b6b3a764000061062f565b6102459190610646565b7f000000000000000000000000000000000000000000000000000000000000000011159350505b50505b9392505050565b60408051600280825260608083018452926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102df573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610303919061067e565b815f81518110610315576103156105bc565b60209081029190910101526040517f1bbbeeb800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301527f00000000000000000000000000000000000000000000000000000000000000001690631bbbeeb890602401602060405180830381865afa1580156103aa573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ce919061067e565b816001815181106103e1576103e16105bc565b602002602001018181525050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f82601f83011261042e575f5ffd5b813567ffffffffffffffff811115610448576104486103f2565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811067ffffffffffffffff82111715610493576104936103f2565b6040529182526020818501810192908101868411156104b0575f5ffd5b6020860192505b838310156104cf5782358152602092830192016104b7565b5095945050505050565b5f5f5f606084860312156104eb575f5ffd5b833567ffffffffffffffff811115610501575f5ffd5b61050d8682870161041f565b935050602084013567ffffffffffffffff811115610529575f5ffd5b6105358682870161041f565b93969395505050506040919091013590565b5f60208284031215610557575f5ffd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461026f575f5ffd5b602080825282518282018190525f918401906040840190835b818110156105b1578351835260209384019390920191600101610593565b509095945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610629576106296105e9565b92915050565b8082028115828204841417610629576106296105e9565b5f82610679577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f6020828403121561068e575f5ffd5b505191905056fea264697066735822122023844da3d8b463761c485f902ffcf6202f362a91919fc98df7256a95cc20e09364736f6c634300081c0033",
108
+ "deployedBytecode": "0x608060405234801561000f575f5ffd5b506004361061004a575f3560e01c8063184023a51461004e578063592cf3fb146100765780639c5e9590146100ab578063d564c4bf146100f7575b5f5ffd5b61006161005c3660046104d9565b610117565b60405190151581526020015b60405180910390f35b61009d7f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161006d565b6100d27f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161006d565b61010a610105366004610547565b610276565b60405161006d919061057a565b5f5f821180156101585750825f81518110610134576101346105bc565b6020026020010151845f8151811061014e5761014e6105bc565b6020026020010151115b8015610197575082600181518110610172576101726105bc565b60200260200101518460018151811061018d5761018d6105bc565b6020026020010151115b1561026f575f835f815181106101af576101af6105bc565b6020026020010151855f815181106101c9576101c96105bc565b60200260200101516101db9190610616565b90505f846001815181106101f1576101f16105bc565b60200260200101518660018151811061020c5761020c6105bc565b602002602001015161021e9190610616565b905081811161026c575f8461023b83670de0b6b3a764000061062f565b6102459190610646565b7f000000000000000000000000000000000000000000000000000000000000000011159350505b50505b9392505050565b60408051600280825260608083018452926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102df573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610303919061067e565b815f81518110610315576103156105bc565b60209081029190910101526040517f1bbbeeb800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301527f00000000000000000000000000000000000000000000000000000000000000001690631bbbeeb890602401602060405180830381865afa1580156103aa573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ce919061067e565b816001815181106103e1576103e16105bc565b602002602001018181525050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f82601f83011261042e575f5ffd5b813567ffffffffffffffff811115610448576104486103f2565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811067ffffffffffffffff82111715610493576104936103f2565b6040529182526020818501810192908101868411156104b0575f5ffd5b6020860192505b838310156104cf5782358152602092830192016104b7565b5095945050505050565b5f5f5f606084860312156104eb575f5ffd5b833567ffffffffffffffff811115610501575f5ffd5b61050d8682870161041f565b935050602084013567ffffffffffffffff811115610529575f5ffd5b6105358682870161041f565b93969395505050506040919091013590565b5f60208284031215610557575f5ffd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461026f575f5ffd5b602080825282518282018190525f918401906040840190835b818110156105b1578351835260209384019390920191600101610593565b509095945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610629576106296105e9565b92915050565b8082028115828204841417610629576106296105e9565b5f82610679577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f6020828403121561068e575f5ffd5b505191905056fea264697066735822122023844da3d8b463761c485f902ffcf6202f362a91919fc98df7256a95cc20e09364736f6c634300081c0033",
109
+ "linkReferences": {},
110
+ "deployedLinkReferences": {}
111
+ }
@@ -0,0 +1,33 @@
1
+ # -*- coding: utf-8 -*-
2
+ # ------------------------------------------------------------------------------
3
+ #
4
+ # Copyright 2024 Valory AG
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ # ------------------------------------------------------------------------------
19
+
20
+ """This module contains the class to connect to the `RequesterActivityCheckerContract` contract."""
21
+
22
+ from enum import Enum
23
+
24
+ from aea.common import JSONLike
25
+ from aea.configurations.base import PublicId
26
+ from aea.contracts.base import Contract
27
+ from aea.crypto.base import LedgerApi
28
+
29
+
30
+ class RequesterActivityCheckerContract(Contract):
31
+ """The RequesterActivityCheckerContract contract."""
32
+
33
+ contract_id = PublicId.from_str("valory/requester_activity_checker:0.1.0")
@@ -0,0 +1,23 @@
1
+ name: requester_activity_checker
2
+ author: valory
3
+ version: 0.1.0
4
+ type: contract
5
+ description: Requester activity checker contract
6
+ license: Apache-2.0
7
+ aea_version: '>=1.0.0, <2.0.0'
8
+ fingerprint:
9
+ __init__.py: bafybeihibyzldqy5ecqvxdhnpejol5hkophsu53slyfmtpobts55zvyoba
10
+ build/RequesterActivityChecker.json: bafybeiaaklcnrqr3tmxq3vdf3hqqbodknqaa2xfx7ltnp22bcjcfaj2yku
11
+ contract.py: bafybeigfitqtrcoyicp5rjlkyvqxfcfqyms4sp6rgqr37kov4rqhx4lbim
12
+ fingerprint_ignore_patterns: []
13
+ contracts: []
14
+ class_name: RequesterActivityCheckerContract
15
+ contract_interface_paths:
16
+ ethereum: build/RequesterActivityChecker.json
17
+ dependencies:
18
+ open-aea-ledger-ethereum:
19
+ version: ==1.60.0
20
+ open-aea-test-autonomy:
21
+ version: ==0.18.3
22
+ web3:
23
+ version: <7,>=6.0.0
@@ -0,0 +1,20 @@
1
+ # -*- coding: utf-8 -*-
2
+ # ------------------------------------------------------------------------------
3
+ #
4
+ # Copyright 2024 Valory AG
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ # ------------------------------------------------------------------------------
19
+
20
+ """This module contains the support resources for the staking contract."""