UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

10 lines (9 loc) 311 B
import { TezosOperationType } from '../TezosOperationType'; import { TezosOperation } from './TezosOperation'; export interface TezosBallotOperation extends TezosOperation { kind: TezosOperationType.BALLOT; source: string; period: string; proposal: string; ballot: 'nay' | 'yay' | 'pass'; }