Closed shortthefomo closed 2 years ago
A sample can be found here: https://github.com/WietseWind/xrpl-accountlib/blob/master/samples/multisign.js
You can sign with an array of signed transactions, the outcome is the combined transaction. Which can then be combined again or submitted directly.
I would like to pass the transaction to be signed between contracts.
something like
basically the partially signed tx is passed between contracts. this is not security issue like passing private keys between contracts. then once enough contracts have signed and quorum weight is sufficient I can then pass it to the xrpl-client and submit it.
I've been going over all the snippets I can find here, possibly I just missed how todo this here?