@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
18 lines (17 loc) • 785 B
TypeScript
import { OperationContentsAndResult, OperationContentsDrainDelegate } from '@taquito/rpc';
import { Context } from '../context';
import { Operation } from './operations';
import { ForgedBytes } from './types';
/**
*
* @description DrainDelegateOperation provides utility functions to fetch a new operation of kind drain_delegate
*
*/
export declare class DrainDelegateOperation extends Operation {
private readonly params;
constructor(hash: string, params: OperationContentsDrainDelegate, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context);
get operationResults(): import("@taquito/rpc").OperationMetadataBalanceUpdates[] | undefined;
get consensusKey(): string;
get delegate(): string;
get destination(): string;
}