import { TransactionParams } from '../../swap/types'; import { RawTransactionData } from '../types'; /** * Constructs an unsigned transaction. * * A transaction is a message sent by an Account requesting * to perform an action on the Ethereum blockchain. * * Transactions can be used to transfer Ether between accounts, * execute smart contract code, deploy smart contracts, etc. */ export declare function getSwapTransaction(rawTx: RawTransactionData, chainId: string): TransactionParams; //# sourceMappingURL=getSwapTransaction.d.ts.map