* 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
132 lines
6.0 KiB
TypeScript
132 lines
6.0 KiB
TypeScript
import { OwnerStakeByStatus, StakeInfo, StakeStatus, StoredBalance } from '@0x/contracts-staking';
|
|
import { getRandomInteger } from '@0x/contracts-test-utils';
|
|
import { BigNumber } from '@0x/utils';
|
|
import '@azure/core-asynciterator-polyfill';
|
|
import * as _ from 'lodash';
|
|
|
|
import { AssertionResult } from '../../src/function_assertions';
|
|
import { validMoveStakeAssertion, validStakeAssertion, validUnstakeAssertion } from '../function-assertions';
|
|
|
|
import { Actor, Constructor } from './base';
|
|
|
|
export interface StakerInterface {
|
|
stakeAsync: (amount: BigNumber, poolId?: string) => Promise<void>;
|
|
}
|
|
|
|
/**
|
|
* This mixin encapsulates functionaltiy associated with stakers within the 0x ecosystem.
|
|
* This includes staking ZRX (and optionally delegating it to a specific pool).
|
|
*/
|
|
export function StakerMixin<TBase extends Constructor>(Base: TBase): TBase & Constructor<StakerInterface> {
|
|
return class extends Base {
|
|
public stake: OwnerStakeByStatus;
|
|
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;
|
|
this.stake = {
|
|
[StakeStatus.Undelegated]: new StoredBalance(),
|
|
[StakeStatus.Delegated]: { total: new StoredBalance() },
|
|
};
|
|
|
|
// Register this mixin's assertion generators
|
|
this.actor.simulationActions = {
|
|
...this.actor.simulationActions,
|
|
validStake: this._validStake(),
|
|
validUnstake: this._validUnstake(),
|
|
validMoveStake: this._validMoveStake(),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Stakes the given amount of ZRX. If `poolId` is provided, subsequently delegates the newly
|
|
* staked ZRX with that pool.
|
|
*/
|
|
public async stakeAsync(amount: BigNumber, poolId?: string): Promise<void> {
|
|
const { stakingWrapper } = this.actor.deployment.staking;
|
|
await stakingWrapper.stake(amount).awaitTransactionSuccessAsync({
|
|
from: this.actor.address,
|
|
});
|
|
if (poolId !== undefined) {
|
|
await stakingWrapper
|
|
.moveStake(
|
|
new StakeInfo(StakeStatus.Undelegated),
|
|
new StakeInfo(StakeStatus.Delegated, poolId),
|
|
amount,
|
|
)
|
|
.awaitTransactionSuccessAsync({ from: this.actor.address });
|
|
}
|
|
}
|
|
|
|
private async *_validStake(): AsyncIterableIterator<AssertionResult> {
|
|
const { zrx } = this.actor.deployment.tokens;
|
|
const { deployment, balanceStore, globalStake } = this.actor.simulationEnvironment!;
|
|
const assertion = validStakeAssertion(deployment, balanceStore, globalStake, this.stake);
|
|
|
|
while (true) {
|
|
await balanceStore.updateErc20BalancesAsync();
|
|
const zrxBalance = balanceStore.balances.erc20[this.actor.address][zrx.address];
|
|
const amount = getRandomInteger(0, zrxBalance);
|
|
yield assertion.executeAsync(amount, { from: this.actor.address });
|
|
}
|
|
}
|
|
|
|
private async *_validUnstake(): AsyncIterableIterator<AssertionResult> {
|
|
const { stakingWrapper } = this.actor.deployment.staking;
|
|
const { deployment, balanceStore, globalStake } = this.actor.simulationEnvironment!;
|
|
const assertion = validUnstakeAssertion(deployment, balanceStore, globalStake, this.stake);
|
|
|
|
while (true) {
|
|
await balanceStore.updateErc20BalancesAsync();
|
|
const undelegatedStake = await stakingWrapper
|
|
.getOwnerStakeByStatus(this.actor.address, StakeStatus.Undelegated)
|
|
.callAsync();
|
|
const withdrawableStake = BigNumber.min(
|
|
undelegatedStake.currentEpochBalance,
|
|
undelegatedStake.nextEpochBalance,
|
|
);
|
|
const amount = getRandomInteger(0, withdrawableStake);
|
|
yield assertion.executeAsync(amount, { from: this.actor.address });
|
|
}
|
|
}
|
|
|
|
private async *_validMoveStake(): AsyncIterableIterator<AssertionResult> {
|
|
const { deployment, globalStake, stakingPools } = this.actor.simulationEnvironment!;
|
|
const assertion = validMoveStakeAssertion(deployment, globalStake, this.stake, stakingPools);
|
|
|
|
while (true) {
|
|
const fromPoolId = _.sample(Object.keys(_.omit(this.stake[StakeStatus.Delegated], ['total'])));
|
|
const fromStatus =
|
|
fromPoolId === undefined
|
|
? StakeStatus.Undelegated
|
|
: (_.sample([StakeStatus.Undelegated, StakeStatus.Delegated]) as StakeStatus);
|
|
const from = new StakeInfo(fromStatus, fromPoolId);
|
|
|
|
const toPoolId = _.sample(Object.keys(stakingPools));
|
|
const toStatus =
|
|
toPoolId === undefined
|
|
? StakeStatus.Undelegated
|
|
: (_.sample([StakeStatus.Undelegated, StakeStatus.Delegated]) as StakeStatus);
|
|
const to = new StakeInfo(toStatus, toPoolId);
|
|
|
|
const moveableStake =
|
|
from.status === StakeStatus.Undelegated
|
|
? this.stake[StakeStatus.Undelegated].nextEpochBalance
|
|
: this.stake[StakeStatus.Delegated][from.poolId].nextEpochBalance;
|
|
const amount = getRandomInteger(0, moveableStake);
|
|
|
|
yield assertion.executeAsync(from, to, amount, { from: this.actor.address });
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
export class Staker extends StakerMixin(Actor) {}
|