You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- It allows creating commitment transaction by `prepare_commit_transaction` and tracking commitments by `parse_commit_transaction`.
10
+
* Added `calculate_price_impact` function to `tinyman.utils`.
11
+
* Improved `TransactionGroup` class.
12
+
- Added `+` operator support for composability, it allows creating a new transaction group (`txn_group_1 + txn_group_2`).
13
+
- Added `id` property, it returns the transactions group id.
14
+
- Added `TransactionGroup.sign_with_logicsig` function and deprecated `TransactionGroup.sign_with_logicisg` because of the typo.
15
+
16
+
### Changed
17
+
18
+
*`get_program` (V1) is moved from `tinyman.utils` to `tinyman.v1.contracts`.
19
+
*`get_state_from_account_info` (V1) is moved from `tinyman.utils` to `tinyman.v1.utils`.
20
+
21
+
### Removed
22
+
23
+
* Deprecated `wait_for_confirmation` function is removed. `wait_for_confirmation` is added to [Algorand SDK](https://github.com/algorand/py-algorand-sdk).
This example has exactly the same functionality as [swapping1.py](examples/swapping1.py) but is purposely more verbose, using less convenience functions.
This example has exactly the same functionality as [swapping1.py](examples/v1/swapping1.py) but is purposely more verbose, using less convenience functions.
63
203
64
204
65
205
### Basic Pooling
66
-
[pooling1.py](examples/pooling1.py)
206
+
[pooling1.py](examples/v1/pooling1.py)
67
207
This example demonstrates retrieving the current pool position/share for an address.
0 commit comments