Skip to main content

Exchange

Core exchange functionality

export interface IPurchaseData {
address: string;
items: Array<IAssetComponentHistory>;
price: Array<IAssetComponentHistory>;
transactionHash: string;
}

export interface IPurchaseRandomData {
account: string;
item: IAssetComponentHistory;
price: Array<IAssetComponentHistory>;
transactionHash: string;
}