import { TxBase } from '../common/tx-base.cjs'; import { TxSignature } from '../common/tx-signature.cjs'; export type TxCreateVme = TxBase & TxSignature & { balance: string; vmeId: string; vmeType: string; lockAmount: string; };