Remove Adam Dean from CIP editors (#1161)
* remove Adam from editor list in README + CIP-0001 * add to Emeritus editors
* remove Adam from editor list in README + CIP-0001 * add to Emeritus editors
Fix incorrect spec of ThirdPartyTransferAct
The spec for ThirdPartyTransferAct was incorrect. > `input_idxs`: A list of indices (in transaction inputs) pointing to the UTxOs from programmableLogicBase being acted upon Is wrong in two critical ways. `input_idxs` is not a list of indices in the transaction inputs of the UTxOs spent from programmable logic base. It is a list of relative indices of ALL script inputs (not just those from `programmableLogicBase`) with respect to each-other. This of-course means: > Each input at `input_idxs[i]` is paired with an output at `outputs_start_idx + i`. This allows batch processing of multiple UTxOs while maintaining a predictable structure. is also incorrect.