airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
10 lines (9 loc) • 427 B
TypeScript
import { MichelsonType } from '../types/michelson/MichelsonType';
import { TezosTransactionParameters } from '../types/operations/Transaction';
export declare class TezosContractCall {
readonly entrypoint: string;
readonly michelsonValue: MichelsonType | undefined;
constructor(entrypoint: string, michelsonValue: MichelsonType | undefined);
args(): any | undefined;
toJSON(): TezosTransactionParameters;
}