import { BigNumberLike } from "@rarible/types"; import { Payout } from "./Payout"; import { UnionAddress } from "@rarible/types"; export type PrepareOrderTxForm = { maker: UnionAddress; taker?: UnionAddress; amount: BigNumberLike; payouts: Array; originFees: Array; };