UNPKG

locklift

Version:

Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.

19 lines (18 loc) 816 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InteractionType = exports.TraceType = void 0; var TraceType; (function (TraceType) { TraceType["FUNCTION_CALL"] = "function_call"; TraceType["FUNCTION_RETURN"] = "function_return"; TraceType["DEPLOY"] = "deploy"; TraceType["EVENT"] = "event"; TraceType["EVENT_OR_FUNCTION_RETURN"] = "event_or_return"; TraceType["BOUNCE"] = "bounce"; TraceType["TRANSFER"] = "transfer"; })(TraceType = exports.TraceType || (exports.TraceType = {})); var InteractionType; (function (InteractionType) { InteractionType[InteractionType["EVENT"] = 0] = "EVENT"; InteractionType[InteractionType["FUNCTION_CALL"] = 1] = "FUNCTION_CALL"; })(InteractionType = exports.InteractionType || (exports.InteractionType = {}));