# Shield coinbase Shield transparent coinbase funds by sending to a shielded zaddr. This is an asynchronous operation and utxos selected for shielding will be locked. If there is an error, they are unlocked. The RPC call listlockunspent can be used to return a list of locked utxos. The number of coinbase utxos selected for shielding can be limited by the caller. If the limit parameter is set to zero, and Overwinter is not yet active, the -mempooltxinputlimit option will determine the number of uxtos. Any limit is constrained by the consensus rule defining a maximum transaction size of 100000 bytes before Acadia (Sapling,) and 2000000 bytes once Acadia (Sapling) activates.. Endpoint: GET /daemon/zshieldcoinbase Version: 6.6.1 Security: ZelID ## Query parameters: - `fromaddress` (string, required) The address is a taddr or "*" for all taddrs belonging to the wallet Example: "\"*\"" - `toaddress` (string, required) Zaddr to shield funds to Example: "za1kqwgkln5azfnnzfps0vc44ucwynstxk9k79z6nunwq0pnh4rjuww5kgy02c9wvfmdkxkxndlvdd" - `fee` (number) The fee amount to attach to this transaction - `limit` (integer) Limit on the maximum number of utxos to shield. Set to 0 to use node option -mempooltxinputlimit (before Overwinter), or as many as will fit in the transaction (after Overwinter). ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (object) - `data.remainingUTXOs` (integer) Number of coinbase utxos still available for shielding - `data.remainingValue` (number) Value of coinbase utxos still available for shielding - `data.shieldingUTXOs` (integer) Number of coinbase utxos being shielded - `data.shieldingValue` (number) Value of coinbase utxos being shielded - `data.opid` (string) An operationid to pass to z_getoperationstatus to get the result of the operation