pandoras-box
Version:
A small and simple stress testing tool for Ethereum-compatible blockchain networks
11 lines (10 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RuntimeType = void 0;
var RuntimeType;
(function (RuntimeType) {
RuntimeType["EOA"] = "EOA";
RuntimeType["ERC20"] = "ERC20";
RuntimeType["ERC721"] = "ERC721";
RuntimeType["GREETER"] = "GREETER";
})(RuntimeType || (exports.RuntimeType = RuntimeType = {}));