1
- from algopy import *
1
+ from algopy import ARC4Contract , LocalState , UInt64 , Txn , Global , itxn , gtxn , arc4
2
2
3
3
4
4
class PersonalBank (ARC4Contract ):
@@ -9,9 +9,9 @@ def __init__(self) -> None:
9
9
10
10
@arc4 .abimethod (allow_actions = ["OptIn" ])
11
11
def opt_in_to_app (self ) -> None :
12
- result , exists = self .optedIn .maybe (Txn .sender )
12
+ result , exists = self .optedIn .maybe (Txn .sender )
13
13
assert not exists , "User already opted in"
14
-
14
+
15
15
self .balance [Txn .sender ] = UInt64 (0 )
16
16
self .optedIn [Txn .sender ] = True
17
17
self .depositors += 1
@@ -23,7 +23,9 @@ def deposit(self, ptxn: gtxn.PaymentTransaction) -> UInt64:
23
23
ptxn .receiver == Global .current_application_address
24
24
), "Deposit receiver must be the contract address"
25
25
assert ptxn .sender == Txn .sender , "Deposit sender must be the caller"
26
- assert Txn .sender .is_opted_in (Global .current_application_id ), "Deposit sender must opt-in to the app first."
26
+ assert Txn .sender .is_opted_in (
27
+ Global .current_application_id
28
+ ), "Deposit sender must opt-in to the app first."
27
29
28
30
self .balance [Txn .sender ] += ptxn .amount
29
31
user_balance = self .balance [Txn .sender ]
@@ -43,6 +45,6 @@ def withdraw(self) -> UInt64:
43
45
fee = 0 ,
44
46
).submit ()
45
47
46
- self .depositors -= 1
48
+ self .depositors -= 1
47
49
48
50
return userBalance
0 commit comments