ethereum-multicall-extended
Version:
Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result
10 lines (9 loc) • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExecutionType = void 0;
var ExecutionType;
(function (ExecutionType) {
ExecutionType["web3"] = "web3";
ExecutionType["ethers"] = "ethers";
ExecutionType["customHttp"] = "custom";
})(ExecutionType = exports.ExecutionType || (exports.ExecutionType = {}));