UNPKG

abi-util-lite

Version:

A light impletation to parse abi string array to abi json

17 lines 1.67 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseABIFromString = exports.parseFragment = exports.FunctionFragment = exports.EventFragment = exports.ErrorFragment = exports.ConstructorFragment = exports.Fragment = exports.ContractABI = exports.ParamType = void 0; // import { ErrorFragment } from './Fragments' var ParamType_1 = require("./ParamType"); Object.defineProperty(exports, "ParamType", { enumerable: true, get: function () { return ParamType_1.ParamType; } }); var ContractABI_1 = require("./ContractABI"); Object.defineProperty(exports, "ContractABI", { enumerable: true, get: function () { return ContractABI_1.ContractABI; } }); Object.defineProperty(exports, "parseABIFromString", { enumerable: true, get: function () { return ContractABI_1.parseABIFromString; } }); var Fragments_1 = require("./Fragments"); Object.defineProperty(exports, "ConstructorFragment", { enumerable: true, get: function () { return Fragments_1.ConstructorFragment; } }); Object.defineProperty(exports, "ErrorFragment", { enumerable: true, get: function () { return Fragments_1.ErrorFragment; } }); Object.defineProperty(exports, "EventFragment", { enumerable: true, get: function () { return Fragments_1.EventFragment; } }); Object.defineProperty(exports, "Fragment", { enumerable: true, get: function () { return Fragments_1.Fragment; } }); Object.defineProperty(exports, "FunctionFragment", { enumerable: true, get: function () { return Fragments_1.FunctionFragment; } }); Object.defineProperty(exports, "parseFragment", { enumerable: true, get: function () { return Fragments_1.parseFragment; } }); //# sourceMappingURL=index.js.map