UNPKG

@mavrykdynamics/taquito

Version:

High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.

52 lines (51 loc) 1.78 kB
/** * @deprecated default reveal gasLimit please use getRevealGasLimit(address) instead, removing hardcoded gasLimit of delegation, origination and transfer */ export declare const DEFAULT_GAS_LIMIT: { DELEGATION: number; ORIGINATION: number; TRANSFER: number; REVEAL_TZ1: number; REVEAL_TZ2: number; REVEAL_TZ3: number; REVEAL_TZ4: number; }; /** * @deprecated default reveal fee please use getRevealFee(address) instead, removing hardcoded fee of delegation, origination and transfer */ export declare const DEFAULT_FEE: { DELEGATION: number; ORIGINATION: number; TRANSFER: number; REVEAL: number; }; /** * @deprecated default reveal storageLimit please use REVEAL_STORAGE_LIMIT instead, removing hardcoded storageLimit of delegation, origination and transfer */ export declare const DEFAULT_STORAGE_LIMIT: { DELEGATION: number; ORIGINATION: number; TRANSFER: number; REVEAL: number; }; export declare const REVEAL_STORAGE_LIMIT = 0; export declare const ORIGINATION_SIZE = 257; export declare const COST_PER_BYTE = 250; export declare enum Protocols { PtAtLas = "PtAtLasomUEW99aVhVTrqjCHjJSpFUa8uHNEAEamx9v2SNeTaNp", PtBoreas = "PtBzwViMCC1gfm98y5TDKqz2e3vjBXPAUoWu7jfEcN6yj2ZhCyT", ProtoALpha = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK" } export declare const protocols: { '019': Protocols[]; '020': Protocols[]; '021': Protocols[]; }; export declare enum ChainIds { MAINNET = "NetXdQprcVkpaWU", ATLASNET = "NetXvyTAafh8goH", BOREASNET = "NetXo8SqH1c38SS" } export declare const getRevealGasLimit: (address: string) => number; export declare const getRevealFee: (address: string) => number; export declare const getRevealFeeInternal: (address: string) => number;