UNPKG

airgap-coin-lib

Version:

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

8 lines (7 loc) 263 B
import { TezosOperationType } from '../TezosOperationType'; import { TezosOperation } from './TezosOperation'; export interface TezosProposalOperation extends TezosOperation { kind: TezosOperationType.PROPOSALS; period: string; proposals: string[]; }