PHP WebShell
Текущая директория: /opt/BitGoJS/modules/sdk-coin-polyx/src/lib
Просмотр файла: transactionBuilder.ts
import {
BaseAddress,
BaseKey,
BaseTransactionBuilder,
BuildTransactionError,
FeeOptions,
PublicKey as BasePublicKey,
Signature,
TransactionType,
} from '@bitgo/sdk-core';
import { Transaction } from './transaction';
import utils from './utils';
import BigNumber from 'bignumber.js';
export abstract class TransactionBuilder extends BaseTransactionBuilder {
protected _transaction: Transaction;
private _signatures: Signature[] = [];
// get and set region
/**
* The transaction type.
*/
protected abstract get transactionType(): TransactionType;
/** @inheritdoc */
protected get transaction(): Transaction {
return this._transaction;
}
/** @inheritdoc */
protected set transaction(transaction: Transaction) {
this._transaction = transaction;
}
/** @inheritdoc */
protected signImplementation(key: BaseKey): Transaction {
throw new Error('Method not implemented.');
}
/** @inheritDoc */
addSignature(publicKey: BasePublicKey, signature: Buffer): void {
this._signatures.push({ publicKey, signature });
}
/**
* Sets the sender of this transaction.
* This account will be responsible for paying transaction fees.
*
* @param {string} senderAddress the account that is sending this transaction
* @returns {TransactionBuilder} This transaction builder
*/
sender(senderAddress: string): this {
throw new Error('Method not implemented.');
}
fee(feeOptions: FeeOptions): this {
throw new Error('Method not implemented.');
}
/** @inheritdoc */
protected fromImplementation(rawTransaction: string): Transaction {
throw new Error('Method not implemented.');
}
/** @inheritdoc */
protected async buildImplementation(): Promise<Transaction> {
throw new Error('Method not implemented.');
}
// region Validators
/** @inheritdoc */
validateAddress(address: BaseAddress, addressFormat?: string): void {
if (!utils.isValidAddress(address.address)) {
throw new BuildTransactionError('Invalid address ' + address.address);
}
}
/** @inheritdoc */
validateKey(key: BaseKey): void {
throw new Error('Method not implemented.');
}
/** @inheritdoc */
validateRawTransaction(rawTransaction: string): void {
throw new Error('Method not implemented.');
}
/** @inheritdoc */
validateTransaction(transaction?: Transaction): void {
throw new Error('Method not implemented.');
}
/** @inheritdoc */
validateValue(value: BigNumber): void {
if (value.isLessThan(0)) {
throw new BuildTransactionError('Value cannot be less than zero');
}
}
}
Выполнить команду
Для локальной разработки. Не используйте в интернете!