airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
12 lines (11 loc) • 352 B
TypeScript
import { TezosOperationType } from '../TezosOperationType';
import { TezosOperation } from './TezosOperation';
export interface TezosDelegationOperation extends TezosOperation {
kind: TezosOperationType.DELEGATION;
source: string;
fee: string;
counter: string;
gas_limit: string;
storage_limit: string;
delegate?: string;
}