Cardano · Altruistic Collateral
Build a transaction that uses this provider's collateral UTxO and PKH, POST the CBOR, and get back a vkey witness to attach before submitting on chain. No wallet collateral, no Blockfrost key, no full node required.
Add this PKH to your transaction's required_signers field.
It must match the entry under your chosen network in
known_hosts — verify before signing.
1108b97f2e199d58a0c0697d25412d0fb14d354dcd39654b9eb0dec8
Pick the network your transaction targets and POST its CBOR to the matching endpoint.
Send the transaction CBOR; receive the vkey witness. Attach it to your tx's witness set, then submit through your usual node or relay.
curl -X POST https://www.giveme.my/preprod/collateral/ \
-H 'Content-Type: application/json' \
-d '{ "tx": "<hex cbor>" }'
Response
{ "witness": "8200825820<pubkey>5840<signature>" }