| 6 | import {signPsbtInput} from "./btc-psbt"; |
| 7 | |
| 8 | export interface ToSignInput { |
| 9 | index: number; |
| 10 | publicKey: string; |
| 11 | sighashTypes?: number[]; |
| 12 | } |
| 13 | |
| 14 | interface BaseUserToSignInput { |
| 15 | index: number; |
nothing calls this directly
no outgoing calls
no test coverage detected