import { KeyBindInfo } from '../common/key-bind-info.mjs'; import { TxBase } from '../common/tx-base.mjs'; import { TxSignature } from '../common/tx-signature.mjs'; export type TxChangeKeypair = TxBase & TxSignature & { newKey: string; balance: string; holdKey: string; keyBindHash: string; keyBind: KeyBindInfo; };