-
Notifications
You must be signed in to change notification settings - Fork 12
feat: send payment transaction with algokit core #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
At this point, the local AlgoKit Core this is using is from algorandfoundation/algokit-core#81 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some minor comments, would also be keen to see how it behaves in CI, would be interesting to compare execution time for tests on version with and without these changes. I think you need to patch merge conflict first to have workflows executed
import algosdk.transaction | ||
|
||
|
||
def payment_through_core( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the name makes it seem like the outcome is a submitted payment txn while it only assembles it.
def payment_through_core( | |
def make_payment_txn( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I still want to make it clear that it goes through core (at least for now). Would build_payment_with_core
be good?
(draft) PR to use AlgoKit Core when dealing with a
Payment
transaction in utils.Companion PR of algorandfoundation/algokit-utils-ts#393