PHP WebShell
Текущая директория: /opt/BitGoJS/modules/sdk-coin-dot/src/lib
Просмотр файла: unstakeBuilder.ts
import { InvalidTransactionError, TransactionType } from '@bitgo/sdk-core';
import { DecodedSignedTx, DecodedSigningPayload, UnsignedTransaction } from '@substrate/txwrapper-core';
import { BaseCoin as CoinConfig } from '@bitgo/statics';
import { methods } from '@substrate/txwrapper-polkadot';
import BigNumber from 'bignumber.js';
import { MethodNames, UnstakeArgs } from './iface';
import { Transaction } from './transaction';
import { TransactionBuilder } from './transactionBuilder';
import { UnstakeTransactionSchema } from './txnSchema';
export class UnstakeBuilder extends TransactionBuilder {
protected _amount: string;
constructor(_coinConfig: Readonly<CoinConfig>) {
super(_coinConfig);
}
/**
*
* Take the origin account as a stash and lock up value of its balance.
* Controller will be the account that controls it.
*
* @returns {UnsignedTransaction} an unsigned Dot transaction
*
* @see https://polkadot.js.org/docs/substrate/extrinsics/#staking
*/
protected buildTransaction(): UnsignedTransaction {
const baseTxInfo = this.createBaseTxInfo();
return methods.staking.unbond(
{
value: this._amount,
},
baseTxInfo.baseTxInfo,
baseTxInfo.options
);
}
protected get transactionType(): TransactionType {
return TransactionType.StakingUnlock;
}
/**
*
* The amount to unstake.
*
* @param {string} amount
* @returns {StakeBuilder} This stake builder.
*
* @see https://wiki.polkadot.network/docs/learn-nominator#required-minimum-stake
*/
amount(amount: string): this {
this.validateValue(new BigNumber(amount));
this._amount = amount;
return this;
}
/** @inheritdoc */
validateDecodedTransaction(decodedTxn: DecodedSigningPayload | DecodedSignedTx): void {
if (decodedTxn.method?.name === MethodNames.Unbond) {
const txMethod = decodedTxn.method.args as unknown as UnstakeArgs;
const value = txMethod.value;
const validationResult = UnstakeTransactionSchema.validate({ value });
if (validationResult.error) {
throw new InvalidTransactionError(`Unstake Transaction validation failed: ${validationResult.error.message}`);
}
}
}
/** @inheritdoc */
protected fromImplementation(rawTransaction: string): Transaction {
const tx = super.fromImplementation(rawTransaction);
if (this._method?.name === MethodNames.Unbond) {
const txMethod = this._method.args as UnstakeArgs;
this.amount(txMethod.value);
} else {
throw new InvalidTransactionError(`Invalid Transaction Type: ${this._method?.name}. Expected unbond`);
}
return tx;
}
/** @inheritdoc */
validateTransaction(_: Transaction): void {
super.validateTransaction(_);
this.validateFields(this._amount);
}
private validateFields(value: string): void {
const validationResult = UnstakeTransactionSchema.validate({
value,
});
if (validationResult.error) {
throw new InvalidTransactionError(
`Unstake Builder Transaction validation failed: ${validationResult.error.message}`
);
}
}
}
Выполнить команду
Для локальной разработки. Не используйте в интернете!