-
Notifications
You must be signed in to change notification settings - Fork 36
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
/sign endpoint #159
Comments
I'm currently working on this task, but would like to get clarification to couple details on this. As I currently understand this, the endpoint should receive transaction details, accompanied with the account details and then construct the transaction object, compute the signatures and return them, but not send the transaction just yet. Therefore this differs from existing transaction creation operation which doesn't sign it, but does send it nevertheless.
Ping @psiemens |
`transactions.Service.Sign()` crafts a Flow transaction and signs it with given account key. It returns pre-signed transaction that can be sent later separately. Towards flow-hydraulics#159
This adds `/accounts/{address}/sign` endpoint to provide functionality for pre-signing a transaction to be sent separately. Towards flow-hydraulics#159
This is required for https://github.com/flow-hydraulics/fcl-wallet-adapter. The requirement is simply an endpoint that takes a built transaction and a custodial account ID as an input and outputs the proper signature.
Here's more context:
The text was updated successfully, but these errors were encountered: