-
Notifications
You must be signed in to change notification settings - Fork 170
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
How to construct a partially signed transaction #463
Comments
You only see signatures from other parties. Private keys never get exposed. Which language/framework are you using (direct Rust or JavaScript/TypeScript)? |
The language I use is JavaScript/TypeScript, thank you for your reply |
I still have a question. For example, a transaction requires three people to sign. Now the first two people have signed, and now it is the third person's turn to sign. Does privkeys need to pass in the private keys of the three people, or does it mean that you only need to pass in your own private key? That's it pub fn sign_with_multiple_v2(mut mutable_tx: SignableTransaction, privkeys: Vec<[u8; 32]>) -> Signed {
} |
Passing private keys around would defeat the purpose of any multi-party signing. https://kaspa.aspectron.org/docs/classes/Transaction.html has You should ask for feedback to your questions on Discord#development |
Hi. I would like a sample o PSKT building in javascript also. |
as long as dimensionality of the dynamic model is right and you have the
overwhelming stage, it doesn't matter
you can perceive all families at once
like hypersphere
…On Wed, 18 Sept 2024 at 08:12, PATRICK DALLA BERNARDINA < ***@***.***> wrote:
Hi. I would like a sample o PSKT building in javascript also.
I want to create a transaction with unpredictable inputs, and
unpredictable outputs, till the creator decides to finalize it. It is
possible?
—
Reply to this email directly, view it on GitHub
<#463 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCK6LGQ3YN6AJTKCFLCQSTZXCSONAVCNFSM6AAAAABGWWT6UGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNJXGAZDKNRVG4>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Hi. Any updates with this issue? I have problem with my transfers very ofter. I use typescript + kaspa-wasm v0.15.2 Error message: (consensus core sign()) The transaction is partially signed |
Can you give me a demo of a transaction involving partial signatures from multiple people?
In addition, I have a question: For example, a transaction requires three people to sign. If the first two people have signed, and it is the third person's turn to sign, will the third person see the private keys of the first two people?
The text was updated successfully, but these errors were encountered: