-
Notifications
You must be signed in to change notification settings - Fork 3
/
account.py
383 lines (333 loc) · 12.2 KB
/
account.py
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
import dataclasses
import base64
from typing import Any, Optional, Union, cast
import algosdk
from algosdk import encoding
from algosdk.future import transaction
from algosdk.v2client import algod
from algosdk.atomic_transaction_composer import (
ABIResult,
AtomicTransactionComposer,
TransactionSigner,
TransactionWithSigner,
)
from utils import (
assemble_program,
get_global_state,
get_local_state,
get_params,
)
@dataclasses.dataclass(frozen=True)
class Account(TransactionSigner):
address: str
private_key: Optional[str] = None
algod_client: Optional[algod.AlgodClient] = None
@classmethod
def create(cls, **kwargs) -> "Account":
private_key, address = algosdk.account.generate_account()
return cls(cast(str, address), private_key, **kwargs)
@property
def decoded_address(self):
return encoding.decode_address(self.address)
def sign(self, txn):
assert self.private_key
return txn.sign(self.private_key)
def sign_transactions(
self, txn_group: list[transaction.Transaction], indexes: list[int]
) -> list:
# Enables using `self` with `AtomicTransactionComposer`
stxns = []
for i in indexes:
stxn = self.sign(txn_group[i]) # type: ignore
stxns.append(stxn)
return stxns
def sign_send_wait(
self,
txn: transaction.Transaction,
save_txn: str = None,
):
"""Sign a transaction, submit it, and wait for its confirmation."""
assert self.algod_client
signed_txn = self.sign(txn)
tx_id = signed_txn.transaction.get_txid()
if save_txn:
transaction.write_to_file([signed_txn], save_txn, overwrite=True)
try:
self.algod_client.send_transactions([signed_txn])
transaction.wait_for_confirmation(self.algod_client, tx_id)
return self.algod_client.pending_transaction_info(tx_id)
except algosdk.error.AlgodHTTPError as err:
drr = transaction.create_dryrun(self.algod_client, [signed_txn])
filename = "dryrun.msgp"
with open(filename, "wb") as f:
f.write(base64.b64decode(encoding.msgpack_encode(drr)))
raise err
def _get_params(self, *args, **kwargs) -> transaction.SuggestedParams:
assert self.algod_client
return get_params(self.algod_client, *args, **kwargs)
def pay(self, receiver: Union["Account", "AppAccount"], amount: int):
txn = transaction.PaymentTxn(
self.address, self._get_params(), receiver.address, amount
)
return self.sign_send_wait(txn)
def abi_call(
self,
method,
*args,
app: Union[int, "AppAccount"],
group_extra_txns: Optional[list[TransactionWithSigner]] = None,
on_complete: transaction.OnComplete = transaction.OnComplete.NoOpOC,
fee: Optional[int] = None,
max_wait_rounds: int = 10,
save_abi_call: Optional[str] = None,
) -> ABIResult:
"""
ABI call from `sender` to `app` `method`, with `*args`. Txn-type args are supplied
as normal arguments.
Use `group_extra_txns` to append other (non argument) transactions to the ABI call in an
atomic group.
"""
assert self.algod_client
if isinstance(app, AppAccount):
app = app.app_id
encoded_args = []
for arg in args:
if isinstance(arg, Account):
encoded_args.append(arg.address)
else:
encoded_args.append(arg)
atc = AtomicTransactionComposer()
atc.add_method_call(
app_id=app,
method=method,
method_args=encoded_args,
sp=self._get_params(fee),
sender=self.address,
signer=self,
on_complete=on_complete,
)
if group_extra_txns is not None:
for transaction_with_signer in group_extra_txns:
atc.add_transaction(transaction_with_signer)
atc.build_group()
atc.gather_signatures()
if save_abi_call:
transaction.write_to_file(atc.signed_txns, save_abi_call, overwrite=True)
try:
atc_result = atc.execute(self.algod_client, max_wait_rounds)
logged_result = atc_result.abi_results[0] # type: ignore
if logged_result.decode_error:
print("ABI decode error:", logged_result.decode_error)
print("\tRaw value:", logged_result.raw_value)
if not logged_result or logged_result.return_value is None:
return None
return logged_result.return_value
except algosdk.error.AlgodHTTPError as err:
drr = transaction.create_dryrun(self.algod_client, atc.signed_txns)
filename = "dryrun.msgp"
with open(filename, "wb") as f:
f.write(base64.b64decode(encoding.msgpack_encode(drr)))
raise err
def create_asset(self, **kwargs) -> int:
"""Create an asset and return its ID."""
args = {
"sp": self._get_params(),
"total": 1,
"default_frozen": False,
"unit_name": "TMP",
"asset_name": "TMP",
"manager": self.address,
"reserve": self.address,
"freeze": self.address,
"clawback": self.address,
"decimals": 0,
}
args.update(**kwargs)
txn = transaction.AssetConfigTxn(sender=self.address, **args)
ptx = self.sign_send_wait(txn)
return ptx["asset-index"]
def optin_to_asset(self, asset_id: int) -> dict:
txn = transaction.AssetTransferTxn(
sender=self.address,
sp=self._get_params(),
receiver=self.address,
amt=0,
index=asset_id,
)
return self.sign_send_wait(txn)
def close_asset_to(
self,
asset_id: int,
close_to_account: "Account",
amount: int = 0,
receiver: Optional["Account"] = None,
) -> dict:
txn = transaction.AssetTransferTxn(
sender=self.address,
sp=self._get_params(),
receiver=self.address if not receiver else receiver.address,
amt=amount,
index=asset_id,
close_assets_to=close_to_account.address,
)
return self.sign_send_wait(txn)
def optin_to_application(
self,
asc_id: int,
app_args: Any = None,
accounts: Any = None,
foreign_apps: Any = None,
foreign_assets: Any = None,
) -> dict:
txn = transaction.ApplicationOptInTxn(
sender=self.address,
sp=self._get_params(),
index=asc_id,
app_args=app_args,
accounts=accounts,
foreign_apps=foreign_apps,
foreign_assets=foreign_assets,
)
return self.sign_send_wait(txn)
def transfer_asset(self, receiver: "Account", asset_id: int, amount: int) -> dict:
txn = transaction.AssetTransferTxn(
sender=self.address,
sp=self._get_params(),
receiver=receiver.address,
amt=amount,
index=asset_id,
)
return self.sign_send_wait(txn)
def close_out_application(self, app_id: int) -> dict:
txn = transaction.ApplicationCloseOutTxn(
self.address, self._get_params(), app_id
)
return self.sign_send_wait(txn)
def balance(self) -> dict[int, int]:
"""Returns a dict mappgin each asset id to the balance amount; the algo balance has key 0."""
assert self.algod_client
account_info = self.algod_client.account_info(self.address)
balances = {a["asset-id"]: int(a["amount"]) for a in account_info["assets"]}
balances[0] = int(account_info["amount"])
return balances
def asa_balance(self, asa_idx: int) -> int:
return self.balance().get(asa_idx, 0)
def app_local_state(
self, app: Union["AppAccount", int]
) -> dict[str, Union[bytes, int]]:
assert self.algod_client
if isinstance(app, AppAccount):
app = app.app_id
return get_local_state(self.algod_client, self.address, app)
def local_state(self) -> list[dict]:
assert self.algod_client
return self.algod_client.account_info(self.address)["apps-local-state"]
def create_asc(
self,
approval_program: str,
clear_program: str,
global_schema=transaction.StateSchema(0, 0),
local_schema=transaction.StateSchema(0, 0),
on_complete=transaction.OnComplete.NoOpOC,
) -> "AppAccount":
approval_program = assemble_program(self.algod_client, approval_program)
clear_program = assemble_program(self.algod_client, clear_program)
txn = transaction.ApplicationCreateTxn(
self.address,
self._get_params(),
on_complete,
approval_program,
clear_program,
global_schema,
local_schema,
extra_pages=(len(approval_program) + len(clear_program)) // 2048,
)
transaction_response = self.sign_send_wait(txn)
return AppAccount.from_app_id(
transaction_response["application-index"], algod_client=self.algod_client
)
def update_application(
self,
approval_program: str,
clear_program: str,
app_id: int,
app_args: Optional[list] = None,
accounts: Optional[list[str]] = None,
foreign_apps: Optional[list[int]] = None,
foreign_assets: Optional[list[int]] = None,
) -> dict:
approval_program = assemble_program(self.algod_client, approval_program)
clear_program = assemble_program(self.algod_client, clear_program)
txn = transaction.ApplicationUpdateTxn(
sender=self.address,
sp=self._get_params(),
index=app_id,
approval_program=approval_program,
clear_program=clear_program,
app_args=app_args,
accounts=accounts,
foreign_apps=foreign_apps,
foreign_assets=foreign_assets,
)
return self.sign_send_wait(txn)
def delete_application(
self,
app_id: int,
app_args: Optional[list] = None,
accounts: Optional[list[str]] = None,
foreign_apps: Optional[list[int]] = None,
foreign_assets: Optional[list[int]] = None,
) -> dict:
txn = transaction.ApplicationDeleteTxn(
sender=self.address,
sp=self._get_params(),
index=app_id,
app_args=app_args,
accounts=accounts,
foreign_apps=foreign_apps,
foreign_assets=foreign_assets,
)
return self.sign_send_wait(txn)
def clear_state(
self,
app_id: int,
app_args: Optional[list] = None,
accounts: Optional[list[str]] = None,
foreign_apps: Optional[list[int]] = None,
foreign_assets: Optional[list[int]] = None,
) -> dict:
txn = transaction.ApplicationClearStateTxn(
sender=self.address,
sp=self._get_params(),
index=app_id,
app_args=app_args,
accounts=accounts,
foreign_apps=foreign_apps,
foreign_assets=foreign_assets,
)
return self.sign_send_wait(txn)
@dataclasses.dataclass(frozen=True)
class AppAccount(Account):
app_id: int = None
@classmethod
def from_app_id(cls, app_id: int, **kwargs) -> "AppAccount":
return cls(
app_id=app_id,
address=cast(
str,
encoding.encode_address(
encoding.checksum(b"appID" + app_id.to_bytes(8, "big"))
),
),
**kwargs,
)
def global_state(self) -> dict[str, Union[bytes, int]]:
assert self.algod_client
return get_global_state(self.algod_client, self.app_id)
def app_local_state(
self, account: Union[Account, str]
) -> dict[str, Union[bytes, int]]:
assert self.algod_client
if isinstance(account, Account):
account = account.address
return get_local_state(self.algod_client, account, self.app_id)