import { Blockchain } from "./Blockchain"; import { UnionAddress } from "@rarible/types"; export type EncodedOrder = EncodedEthOrder; export type EncodedEthOrder = { "@type": "ETH_ORDER_ENCODE"; blockchain: Blockchain; orderHash: string; signHash: string; transferProxy?: UnionAddress; };