* update abi-gen with new method interfaces * wip: get all packages to build * wip: get all packages to build * Fix two contract wrapper calls * Export necessary types part of the contract wrapper public interfaces * Revive and fix wrapper_unit_tests * Remove duplicate type * Fix lib_exchange_rich_error_decoder tests * Fix remaining test failures in contracts-* packages * Prettier fixes * remove transactionHelper * lint and update changelogs * Fix prettier * Revert changes to reference docs * Add back changelog already published and add revert changelog entry * Add missing CHANGELOG entries * Add missing comma * Update mesh-rpc-client dep * Update Mesh RPC logic in @0x/orderbook to v6.0.1-beta * Align package versions
110 lines
4.7 KiB
TypeScript
110 lines
4.7 KiB
TypeScript
import { constants, StakingPoolById } from '@0x/contracts-staking';
|
|
import { getRandomInteger } from '@0x/contracts-test-utils';
|
|
import '@azure/core-asynciterator-polyfill';
|
|
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
|
|
import * as _ from 'lodash';
|
|
|
|
import { AssertionResult } from '../../src/function_assertions';
|
|
import {
|
|
validCreateStakingPoolAssertion,
|
|
validDecreaseStakingPoolOperatorShareAssertion,
|
|
} from '../function-assertions';
|
|
|
|
import { Actor, Constructor } from './base';
|
|
|
|
export interface PoolOperatorInterface {
|
|
createStakingPoolAsync: (operatorShare: number, addOperatorAsMaker?: boolean) => Promise<string>;
|
|
decreaseOperatorShareAsync: (
|
|
poolId: string,
|
|
newOperatorShare: number,
|
|
) => Promise<TransactionReceiptWithDecodedLogs>;
|
|
}
|
|
|
|
/**
|
|
* This mixin encapsulates functionaltiy associated with pool operators within the 0x ecosystem.
|
|
* This includes creating staking pools and decreasing the operator share of a pool.
|
|
*/
|
|
export function PoolOperatorMixin<TBase extends Constructor>(Base: TBase): TBase & Constructor<PoolOperatorInterface> {
|
|
return class extends Base {
|
|
public readonly actor: Actor;
|
|
|
|
/**
|
|
* The mixin pattern requires that this constructor uses `...args: any[]`, but this class
|
|
* really expects a single `ActorConfig` 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;
|
|
|
|
// Register this mixin's assertion generators
|
|
this.actor.simulationActions = {
|
|
...this.actor.simulationActions,
|
|
validCreateStakingPool: this._validCreateStakingPool(),
|
|
validDecreaseStakingPoolOperatorShare: this._validDecreaseStakingPoolOperatorShare(),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Creates a staking pool and returns the ID of the new pool.
|
|
*/
|
|
public async createStakingPoolAsync(
|
|
operatorShare: number,
|
|
addOperatorAsMaker: boolean = false,
|
|
): Promise<string> {
|
|
const stakingContract = this.actor.deployment.staking.stakingWrapper;
|
|
const txReceipt = await stakingContract
|
|
.createStakingPool(operatorShare, addOperatorAsMaker)
|
|
.awaitTransactionSuccessAsync({ from: this.actor.address });
|
|
|
|
const createStakingPoolLog = txReceipt.logs[0];
|
|
const poolId = (createStakingPoolLog as any).args.poolId;
|
|
return poolId;
|
|
}
|
|
|
|
/**
|
|
* Decreases the operator share of a specified staking pool.
|
|
*/
|
|
public async decreaseOperatorShareAsync(
|
|
poolId: string,
|
|
newOperatorShare: number,
|
|
): Promise<TransactionReceiptWithDecodedLogs> {
|
|
const stakingContract = this.actor.deployment.staking.stakingWrapper;
|
|
return stakingContract
|
|
.decreaseStakingPoolOperatorShare(poolId, newOperatorShare)
|
|
.awaitTransactionSuccessAsync({ from: this.actor.address });
|
|
}
|
|
|
|
private _getOperatorPoolIds(stakingPools: StakingPoolById): string[] {
|
|
const operatorPools = _.pickBy(stakingPools, pool => pool.operator === this.actor.address);
|
|
return Object.keys(operatorPools);
|
|
}
|
|
|
|
private async *_validCreateStakingPool(): AsyncIterableIterator<AssertionResult> {
|
|
const { stakingPools } = this.actor.simulationEnvironment!;
|
|
const assertion = validCreateStakingPoolAssertion(this.actor.deployment, stakingPools);
|
|
while (true) {
|
|
const operatorShare = getRandomInteger(0, constants.PPM);
|
|
yield assertion.executeAsync(operatorShare, false, { from: this.actor.address });
|
|
}
|
|
}
|
|
|
|
private async *_validDecreaseStakingPoolOperatorShare(): AsyncIterableIterator<AssertionResult | void> {
|
|
const { stakingPools } = this.actor.simulationEnvironment!;
|
|
const assertion = validDecreaseStakingPoolOperatorShareAssertion(this.actor.deployment, stakingPools);
|
|
while (true) {
|
|
const poolId = _.sample(this._getOperatorPoolIds(stakingPools));
|
|
if (poolId === undefined) {
|
|
yield undefined;
|
|
} else {
|
|
const operatorShare = getRandomInteger(0, stakingPools[poolId].operatorShare);
|
|
yield assertion.executeAsync(poolId, operatorShare, { from: this.actor.address });
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
export class PoolOperator extends PoolOperatorMixin(Actor) {}
|