-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathacp_token.py
More file actions
353 lines (296 loc) · 11.6 KB
/
acp_token.py
File metadata and controls
353 lines (296 loc) · 11.6 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
from datetime import datetime
from enum import IntEnum
import json
import time
import traceback
from typing import Optional, Tuple, TypedDict
from eth_account import Account
from eth_account.messages import encode_defunct
import requests
from web3 import Web3
from acp_plugin_gamesdk.acp_token_abi import ACP_TOKEN_ABI
from acp_plugin_gamesdk.configs import ACPContractConfig
class MemoType(IntEnum):
MESSAGE = 0
CONTEXT_URL = 1
IMAGE_URL = 2
VOICE_URL = 3
OBJECT_URL = 4
TXHASH = 5
class IMemo(TypedDict):
content: str
memoType: MemoType
isSecured: bool
nextPhase: int
jobId: int
numApprovals: int
sender: str
class IJob(TypedDict):
id: int
client: str
provider: str
budget: int
amountClaimed: int
phase: int
memoCount: int
expiredAt: int
evaluatorCount: int
JobResult = Tuple[int, str, str, str, str, str, str, str, int]
class AcpToken:
def __init__(
self,
wallet_private_key: str,
agent_wallet_address: str,
config: ACPContractConfig,
):
self.web3 = Web3(Web3.HTTPProvider(config.rpc_url))
self.account = Account.from_key(wallet_private_key)
self.agent_wallet_address = agent_wallet_address
self.contract_address = Web3.to_checksum_address(config.contract_address)
self.virtuals_token_address = Web3.to_checksum_address(config.virtuals_token_address)
self.contract = self.web3.eth.contract(
address=self.contract_address,
abi=ACP_TOKEN_ABI
)
self.virtuals_token_contract = self.web3.eth.contract(
address=self.virtuals_token_address,
abi=[{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}]
)
self.acp_base_url = config.acp_api_url
self.game_api_url = config.game_api_url
self.chain_id = config.chain_id
def get_agent_wallet_address(self) -> str:
return self.agent_wallet_address
def get_contract_address(self) -> str:
return self.contract_address
def validate_transaction(self, hash_value: str) -> object:
try:
response = requests.post(f"{self.acp_base_url}/acp-agent-wallets/trx-result",
json={"userOpHash": hash_value})
return response.json()
except Exception as error:
print(traceback.format_exc())
raise Exception(f"Failed to get job_id {error}")
def create_job(
self,
provider_address: str,
evaluator_address: str,
expire_at: datetime
) -> dict:
try:
provider_address = Web3.to_checksum_address(provider_address)
evaluator_address = Web3.to_checksum_address(evaluator_address)
expire_timestamp = int(expire_at.timestamp())
# Sign the transaction
trx_data, signature = self._sign_transaction(
"createJob",
[provider_address, evaluator_address, expire_timestamp]
)
# Prepare payload
payload = {
"agentWallet": self.get_agent_wallet_address(),
"trxData": trx_data,
"signature": signature
}
# Submit to custom API
api_url = f"{self.acp_base_url}/acp-agent-wallets/transactions"
response = requests.post(api_url, json=payload)
if response.json().get("error"):
raise Exception(
f"Failed to create job {response.json().get('error').get('status')}, Message: {response.json().get('error').get('message')}")
# Return transaction hash or response ID
return {"txHash": response.json().get("data", {}).get("userOpHash", "")}
except Exception as e:
raise
def approve_allowance(self, price_in_wei: int) -> str:
try:
trx_data, signature = self._sign_transaction(
"approve",
[self.contract_address, price_in_wei],
self.virtuals_token_address
)
payload = {
"agentWallet": self.get_agent_wallet_address(),
"trxData": trx_data,
"signature": signature
}
api_url = f"{self.acp_base_url}/acp-agent-wallets/transactions"
response = requests.post(api_url, json=payload)
if (response.json().get("error")):
raise Exception(
f"Failed to approve allowance {response.json().get('error').get('status')}, Message: {response.json().get('error').get('message')}")
return response.json()
except Exception as e:
print(f"An error occurred while approving allowance: {e}")
raise
def create_memo(
self,
job_id: int,
content: str,
memo_type: MemoType,
is_secured: bool,
next_phase: int
) -> dict:
retries = 3
error = None
while retries > 0:
try:
trx_data, signature = self._sign_transaction(
"createMemo",
[job_id, content, memo_type, is_secured, next_phase]
)
payload = {
"agentWallet": self.get_agent_wallet_address(),
"trxData": trx_data,
"signature": signature
}
api_url = f"{self.acp_base_url}/acp-agent-wallets/transactions"
response = requests.post(api_url, json=payload)
if (response.json().get("error")):
raise Exception(
f"Failed to create memo {response.json().get('error').get('status')}, Message: {response.json().get('error').get('message')}")
return {"txHash": response.json().get("txHash", response.json().get("id", "")),
"memoId": response.json().get("memoId", "")}
except Exception as e:
print(f"{e}")
print(traceback.format_exc())
error = e
retries -= 1
time.sleep(2 * (3 - retries))
if error:
raise Exception(f"{error}")
def _sign_transaction(self, method_name: str, args: list, contract_address: Optional[str] = None) -> Tuple[
dict, str]:
if contract_address:
encoded_data = self.virtuals_token_contract.encode_abi(method_name, args=args)
else:
encoded_data = self.contract.encode_abi(method_name, args=args)
trx_data = {
"target": contract_address if contract_address else self.get_contract_address(),
"value": "0",
"data": encoded_data
}
message_json = json.dumps(trx_data, separators=(",", ":"), sort_keys=False)
message_bytes = message_json.encode()
# Sign the transaction
message = encode_defunct(message_bytes)
signature = "0x" + self.account.sign_message(message).signature.hex()
return trx_data, signature
def sign_memo(
self,
memo_id: int,
is_approved: bool,
reason: Optional[str] = ""
) -> str:
retries = 3
error = None
while retries > 0:
try:
trx_data, signature = self._sign_transaction(
"signMemo",
[memo_id, is_approved, reason]
)
payload = {
"agentWallet": self.get_agent_wallet_address(),
"trxData": trx_data,
"signature": signature
}
api_url = f"{self.acp_base_url}/acp-agent-wallets/transactions"
response = requests.post(api_url, json=payload)
if (response.json().get("error")):
raise Exception(
f"Failed to sign memo {response.json().get('error').get('status')}, Message: {response.json().get('error').get('message')}")
return response.json()
except Exception as e:
error = e
print(f"{error}")
print(traceback.format_exc())
retries -= 1
time.sleep(2 * (3 - retries))
raise Exception(f"Failed to sign memo {error}")
def set_budget(self, job_id: int, budget: int) -> str:
try:
trx_data, signature = self._sign_transaction(
"setBudget",
[job_id, budget]
)
payload = {
"agentWallet": self.get_agent_wallet_address(),
"trxData": trx_data,
"signature": signature
}
api_url = f"{self.acp_base_url}/acp-agent-wallets/transactions"
response = requests.post(api_url, json=payload)
if (response.json().get("error")):
raise Exception(
f"Failed to set budget {response.json().get('error').get('status')}, Message: {response.json().get('error').get('message')}")
return response.json()
except Exception as error:
raise Exception(f"{error}")
def get_job(self, job_id: int) -> Optional[IJob]:
try:
job_data = self.contract.functions.jobs(job_id).call()
if not job_data:
return None
return {
'id': job_data[0],
'client': job_data[1],
'provider': job_data[2],
'budget': int(job_data[3]),
'amountClaimed': int(job_data[4]),
'phase': int(job_data[5]),
'memoCount': int(job_data[6]),
'expiredAt': int(job_data[7]),
'evaluatorCount': int(job_data[8])
}
except Exception as error:
raise Exception(f"{error}")
def get_memo_by_job(
self,
job_id: int,
memo_type: Optional[MemoType] = None
) -> Optional[IMemo]:
try:
memos = self.contract.functions.getAllMemos(job_id).call()
if memo_type is not None:
filtered_memos = [m for m in memos if m['memoType'] == memo_type]
return filtered_memos[-1] if filtered_memos else None
else:
return memos[-1] if memos else None
except Exception as error:
raise Exception(f"Failed to get memo by job {error}")
def get_memos_for_phase(
self,
job_id: int,
phase: int,
target_phase: int
) -> Optional[IMemo]:
try:
memos = self.contract.functions.getMemosForPhase(job_id, phase).call()
target_memos = [m for m in memos if m['nextPhase'] == target_phase]
return target_memos[-1] if target_memos else None
except Exception as error:
raise Exception(f"Failed to get memos for phase {error}")