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
I'm having a use case where a Service builds a Cardano transaction, given some Client provided inputs. The idea is that the Client only needs access to a Wallet to add a signature and finally submit the transaction that the Service built.
I wonder how can I achieve this with BPI...
Client provides their Wallet's PublicKeyHash, Collateral and Ada change TxOuts to the Service,
The Service builds a fully balanced transaction and adds their signature as well,
The Service returns the half-signed transaction (just CBOR) to the Client,
The Client takes the transaction and uses their Wallet to add an additional signature and submit.
It's important to note that we want to build the transaction fully on the Service side, and that way keep our Clients very lightweight (ie. only requiring a Wallet).
The text was updated successfully, but these errors were encountered:
Hi all,
I'm having a use case where a Service builds a Cardano transaction, given some Client provided inputs. The idea is that the Client only needs access to a Wallet to add a signature and finally submit the transaction that the Service built.
I wonder how can I achieve this with BPI...
It's important to note that we want to build the transaction fully on the Service side, and that way keep our Clients very lightweight (ie. only requiring a Wallet).
The text was updated successfully, but these errors were encountered: