@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
12 lines (11 loc) • 320 B
TypeScript
import type { Address } from './Address';
import type { CallData } from './CallData';
import type { TokenAmount } from './TokenAmount';
export type InteractionData = {
target?: Address;
value?: TokenAmount;
/**
* The call data to be used for the interaction.
*/
call_data?: Array<CallData>;
};