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,130 @@
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 `ForeignOmnibridge` contract."""
21
+
22
+ from math import ceil
23
+ from typing import Optional
24
+
25
+ from aea.common import JSONLike
26
+ from aea.configurations.base import PublicId
27
+ from aea.contracts.base import Contract
28
+ from aea.crypto.base import LedgerApi
29
+
30
+
31
+ PLACEHOLDER_NATIVE_TOKEN_ADDRESS = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" # nosec
32
+
33
+ # DEFAULT_GAS_BRIDGE_ETH_TO = 800_000
34
+ DEFAULT_GAS_RELAY_TOKENS = 800_000
35
+
36
+ # By simulations, nonzero-ERC20-bridge gas ~ 1.05 zero-ERC20-bridge gas
37
+ NONZERO_ERC20_GAS_FACTOR = 1.15
38
+
39
+
40
+ class ForeignOmnibridge(Contract):
41
+ """ForeignOmnibridge."""
42
+
43
+ contract_id = PublicId.from_str("valory/foreign_omnibridge:0.1.0")
44
+
45
+ @classmethod
46
+ def build_relay_tokens_tx(
47
+ cls,
48
+ ledger_api: LedgerApi,
49
+ contract_address: str,
50
+ sender: str,
51
+ token: str,
52
+ receiver: str,
53
+ amount: int,
54
+ raise_on_try: bool = False,
55
+ ) -> JSONLike:
56
+ """Build bridgeERC20To tx."""
57
+ contract_instance = cls.get_instance(
58
+ ledger_api=ledger_api, contract_address=contract_address
59
+ )
60
+ tx = contract_instance.functions.relayTokens(
61
+ token, receiver, amount
62
+ ).build_transaction(
63
+ {
64
+ "from": sender,
65
+ "gas": 1,
66
+ "gasPrice": ledger_api.api.eth.gas_price,
67
+ "nonce": ledger_api.api.eth.get_transaction_count(sender),
68
+ }
69
+ )
70
+
71
+ ledger_api.update_with_gas_estimate(
72
+ transaction=tx,
73
+ raise_on_try=raise_on_try,
74
+ )
75
+
76
+ if tx["gas"] > 1:
77
+ return tx
78
+
79
+ tx_zero = contract_instance.functions.relayTokens(
80
+ token, receiver, 0
81
+ ).build_transaction(
82
+ {
83
+ "from": PLACEHOLDER_NATIVE_TOKEN_ADDRESS,
84
+ "gas": 1,
85
+ "gasPrice": ledger_api.api.eth.gas_price,
86
+ "nonce": ledger_api.api.eth.get_transaction_count(sender),
87
+ }
88
+ )
89
+
90
+ ledger_api.update_with_gas_estimate(
91
+ transaction=tx_zero,
92
+ raise_on_try=raise_on_try,
93
+ )
94
+
95
+ if tx_zero["gas"] > 1:
96
+ tx["gas"] = ceil(tx_zero["gas"] * NONZERO_ERC20_GAS_FACTOR)
97
+ return tx
98
+
99
+ tx["gas"] = DEFAULT_GAS_RELAY_TOKENS
100
+ return tx
101
+
102
+ @classmethod
103
+ def get_tokens_bridging_initiated_message_id(
104
+ cls,
105
+ ledger_api: LedgerApi,
106
+ contract_address: str,
107
+ tx_hash: str,
108
+ token: str,
109
+ sender: str,
110
+ value: int,
111
+ raise_on_try: bool = False,
112
+ ) -> Optional[str]:
113
+ """Get the 'messageId' for the matching 'TokensBridgingInitiated' within the transaction 'tx_hash'."""
114
+ contract_instance = cls.get_instance(
115
+ ledger_api=ledger_api, contract_address=contract_address
116
+ )
117
+ receipt = ledger_api.api.eth.get_transaction_receipt(tx_hash)
118
+ event = contract_instance.events.TokensBridgingInitiated()
119
+ events = event.process_receipt(receipt)
120
+
121
+ for e in events:
122
+ args = e["args"]
123
+ if (
124
+ args["token"].lower() == token.lower()
125
+ and args["sender"].lower() == sender.lower()
126
+ and int(args["value"]) == value
127
+ ):
128
+ return "0x" + args["messageId"].hex()
129
+
130
+ return None
@@ -0,0 +1,23 @@
1
+ name: foreign_omnibridge
2
+ author: valory
3
+ version: 0.1.0
4
+ type: contract
5
+ description: ForeignOmnibridge
6
+ license: Apache-2.0
7
+ aea_version: '>=1.0.0, <2.0.0'
8
+ fingerprint:
9
+ __init__.py: bafybeibsmumov3s36vfo24xp2niilcp3ywju2d4yqfadllyjncqtgtndly
10
+ build/ForeignOmnibridge.json: bafybeibmcflt7w5p5szgii7glbtrvjahweclowz2k7e6qjq7yfbvszy6em
11
+ contract.py: bafybeicyccimmstipoba3irqzpyfntxnpvfvgrxsnihygbs7xln5l6auma
12
+ fingerprint_ignore_patterns: []
13
+ contracts: []
14
+ class_name: ForeignOmnibridge
15
+ contract_interface_paths:
16
+ ethereum: build/ForeignOmnibridge.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
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # ------------------------------------------------------------------------------
3
3
  #
4
- # Copyright 2023 Valory AG
4
+ # Copyright 2024 Valory AG
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
7
7
  # you may not use this file except in compliance with the License.
@@ -17,22 +17,4 @@
17
17
  #
18
18
  # ------------------------------------------------------------------------------
19
19
 
20
- """Solana ledger helpers."""
21
-
22
- import typing as t
23
-
24
- from operate.ledger.base import LedgerHelper
25
- from operate.types import LedgerType
26
-
27
-
28
- class Solana(LedgerHelper):
29
- """Solana ledger helper."""
30
-
31
- def create_key(self) -> t.Dict:
32
- """Create key."""
33
- return {
34
- "address": "",
35
- "private_key": "",
36
- "encrypted": False,
37
- "ledger": LedgerType.SOLANA,
38
- }
20
+ """This module contains the support resources for the `HomeOmnibridge` contract."""