samo-bas-ran
Version:
Rango Exchange Types
13 lines • 429 B
TypeScript
import { TransactionType } from '../transactions';
/**
* Base transaction for all Rango supported transactions
*
* @property {TransactionType} type - Type of the transaction, e.g. EVM, SOLANA, COSMOS, ...
* @property {string} blockChain - The blockchain that this transaction will be executed in
*
*/
export interface BaseTransaction {
type: TransactionType;
blockChain: string;
}
//# sourceMappingURL=base.d.ts.map