UNPKG

airgap-coin-lib

Version:

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

12 lines (11 loc) 345 B
import { TezosOperationType } from '../TezosOperationType'; import { TezosOperation } from './TezosOperation'; export interface TezosRevealOperation extends TezosOperation { kind: TezosOperationType.REVEAL; source: string; fee: string; counter: string; gas_limit: string; storage_limit: string; public_key: string; }