This repository was archived by the owner on May 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontract.py
More file actions
121 lines (102 loc) · 3.69 KB
/
contract.py
File metadata and controls
121 lines (102 loc) · 3.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2022-2023 Valory AG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ------------------------------------------------------------------------------
"""This module contains a class for the DepositManagerJob contract."""
import logging
from typing import Any
from aea.common import JSONLike
from aea.configurations.base import PublicId
from aea.contracts.base import Contract
from aea_ledger_ethereum import EthereumApi
PUBLIC_ID = PublicId.from_str("valory/deposit_manager_job:0.1.0")
_logger = logging.getLogger(
f"aea.packages.{PUBLIC_ID.author}.contracts.{PUBLIC_ID.name}.contract"
)
class DepositManagerJobContract(Contract):
"""Class for the DepositManagerJob contract."""
contract_id = PUBLIC_ID
def get_off_chain_data(
self, ledger_api: EthereumApi, contract_address: str, **kwargs: Any
) -> JSONLike:
"""
Get the off chain data from the contract.
This contract doesn't have any off-chain data.
:param ledger_api: the ledger API object
:param contract_address: the contract address
:param kwargs: other keyword arguments
:return: the off chain data
"""
return dict()
@classmethod
def workable(
cls,
ledger_api: EthereumApi,
contract_address: str,
**kwargs: Any,
) -> JSONLike:
"""Get the workable flag from the contract."""
contract = cls.get_instance(ledger_api, contract_address)
can_update_deposits = contract.functions.canUpdateDeposits().call()
return dict(data=can_update_deposits)
@classmethod
def build_work_tx( # pylint: disable=too-many-arguments,too-many-locals
cls,
ledger_api: EthereumApi,
contract_address: str,
**kwargs: Any,
) -> JSONLike:
"""
Get the raw work transaction
:param ledger_api: the ledger API object
:param contract_address: the contract address
:param kwargs: keyword arguments
:return: the raw transaction
"""
contract = cls.get_instance(ledger_api, contract_address)
data = contract.encodeABI(
fn_name="updateDeposits",
args=[],
)
return dict(
data=data,
)
@classmethod
def simulate_tx(
cls,
ledger_api: EthereumApi,
contract_address: str,
data: bytes,
**kwargs: Any,
) -> JSONLike:
"""Simulate the transaction."""
keep3r_address = kwargs.get("keep3r_address", None)
if keep3r_address is None:
raise ValueError("'keep3r_address' is required.")
try:
ledger_api.api.eth.call(
{
"from": ledger_api.api.toChecksumAddress(keep3r_address),
"to": ledger_api.api.toChecksumAddress(contract_address),
"data": data.hex(),
}
)
simulation_ok = True
except ValueError as e:
_logger.info(f"Simulation failed: {str(e)}")
simulation_ok = False
return dict(data=simulation_ok)