## prepareCheckCash `prepareCheckCash(address: string, checkCash: object, instructions: object): Promise` Prepare a Check cashing transaction. This redeems a Check to receive up to the amount authorized by the corresponding CheckCreate transaction. The prepared transaction must subsequently be [signed](#sign) and [submitted](#submit). ### Parameters <%- renderSchema('input/prepare-check-cash.json') %> ### Return Value This method returns a promise that resolves with an object with the following structure: <%- renderSchema('output/prepare.json') %> ### Example ```javascript const address = 'r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59'; const checkCash = <%- importFile('test/fixtures/requests/prepare-check-cash-amount.json') %>; return api.prepareCheckCash(address, checkCash).then(prepared => {/* ... */}); ``` <%- renderFixture('responses/prepare-check-cash-amount.json') %>