UNPKG

@cowprotocol/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

12 lines (11 loc) 331 B
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>; };