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