import { constants, OrderFactory } from '@0x/contracts-test-utils'; import { Order, SignedOrder } from '@0x/types'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import { Actor, ActorConfig, Constructor } from './base'; interface MakerConfig extends ActorConfig { orderConfig: Partial; } export interface MakerInterface { makerPoolId?: string; orderFactory: OrderFactory; signOrderAsync: (customOrderParams?: Partial) => Promise; cancelOrderAsync: (order: SignedOrder) => Promise; joinStakingPoolAsync: (poolId: string) => Promise; } /** * This mixin encapsulates functionaltiy associated with makers within the 0x ecosystem. * This includes signing and canceling orders, as well as joining a staking pool as a maker. */ export function MakerMixin(Base: TBase): TBase & Constructor { return class extends Base { public makerPoolId?: string; public readonly actor: Actor; public readonly orderFactory: OrderFactory; /** * The mixin pattern requires that this constructor uses `...args: any[]`, but this class * really expects a single `MakerConfig` parameter (assuming `Actor` is used as the base * class). */ constructor(...args: any[]) { // tslint:disable-next-line:no-inferred-empty-object-type super(...args); this.actor = (this as any) as Actor; const { orderConfig } = args[0] as MakerConfig; const defaultOrderParams = { ...constants.STATIC_ORDER_PARAMS, makerAddress: this.actor.address, exchangeAddress: this.actor.deployment.exchange.address, chainId: this.actor.deployment.chainId, ...orderConfig, }; this.orderFactory = new OrderFactory(this.actor.privateKey, defaultOrderParams); } /** * Signs an order (optionally, with custom parameters) as the maker. */ public async signOrderAsync(customOrderParams: Partial = {}): Promise { return this.orderFactory.newSignedOrderAsync(customOrderParams); } /** * Cancels one of the maker's orders. */ public async cancelOrderAsync(order: SignedOrder): Promise { return this.actor.deployment.exchange.cancelOrder(order).awaitTransactionSuccessAsync({ from: this.actor.address, }); } /** * Joins the staking pool specified by the given ID. */ public async joinStakingPoolAsync(poolId: string): Promise { const stakingContract = this.actor.deployment.staking.stakingWrapper; this.makerPoolId = poolId; return stakingContract.joinStakingPoolAsMaker(poolId).awaitTransactionSuccessAsync({ from: this.actor.address, }); } }; } export class Maker extends MakerMixin(Actor) {}