import { TokenValuePair } from '../common/token-value-pair.mjs'; import { TxBase } from '../common/tx-base.mjs'; import { TxNoSignature } from '../common/tx-no-signature.mjs'; export type TxLeadDirectVtx = TxBase & TxNoSignature & { vmeId: string; target: string; amount: string; tokenAmount: TokenValuePair[]; callerAddr: string; nonce: number; };