TransactionScript
if they all share the same owner.
Ok(Address)
if the owner can be determined, Err(AuthError)
otherwise.use std::auth::inputs_owner;
fn foo() {
match inputs_owner() {
Ok(address) => log(address),
Err(AuthError::InputsNotAllOwnedBySameAddress) => log("Inputs not all owned by same address."),
}
}