airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
9 lines (8 loc) • 410 B
TypeScript
import { MichelineTypeNode } from '../types/micheline/MichelineNode';
import { MichelsonTypeMeta } from '../types/michelson/MichelsonTypeMeta';
export declare class TezosContractEntrypoint {
readonly name: string;
readonly type: MichelsonTypeMeta;
static fromJSON(entrypoints: Record<string, MichelineTypeNode>): TezosContractEntrypoint[];
constructor(name: string, type: MichelsonTypeMeta);
}