{
  "name": "@evmlord/multicall-sdk",
  "version": "2.0.1",
  "description": "A lightweight library to batch multiple calls via a single eth_call using Multicall3 on 285+ chains.",
  "scripts": {
    "alpha": "npm publish --tag alpha",
    "gen": "ts-node scripts/gen-multicall.ts",
    "gen:readme": "tsx scripts/generate-supported-networks.ts",
    "gen:toc": "tsx scripts/generate-toc.ts",
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "pnpm test && pnpm gen:readme && pnpm gen:toc && pnpm build",
    "test": "mocha -r tsx \"test/**/*.spec.ts\" --exit",
    "dev:link": "node scripts/copy-files.mjs ../dist/ ../package.json ../README.md ../link-out/ --replace && (cd link-out && pnpm link)",
    "watch:link": "tsc -w & nodemon -q -e js,ts --exec \"pnpm dev:link\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EVMlord/multicall-sdk.git"
  },
  "type": "module",
  "module": "./dist/index.esm.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist/index.d.ts",
    "dist/index.esm.js",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "Multicall SDK",
    "EVM multicall",
    "multicall",
    "multicall3",
    "batch eth_call",
    "Ethereum RPC optimization",
    "ethers v6",
    "defi",
    "ethereum",
    "multichain",
    "gas savings"
  ],
  "author": {
    "name": "EVMlord",
    "email": "buidl@evmlord.dev",
    "url": "https://github.com/EVMlord"
  },
  "maintainers": [
    {
      "name": "EVMlord",
      "email": "buidl@evmlord.dev",
      "url": "https://github.com/evmlord"
    },
    {
      "name": "SmartEarnersTeam",
      "email": "support@smartearners.team",
      "url": "https://github.com/SmartEarnersTeam"
    },
    {
      "name": "TechLadyVibes",
      "url": "https://github.com/TechLadyVibes"
    },
    {
      "name": "LucianaGold",
      "url": "https://github.com/LucianaGold"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/EVMlord/multicall-sdk/issues"
  },
  "homepage": "https://github.com/EVMlord/multicall-sdk#readme",
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "ethers": "^6"
  },
  "peerDependenciesMeta": {
    "ethers": {
      "optional": false
    }
  },
  "devDependencies": {
    "@types/chai": "^5.2.2",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.0.3",
    "@types/sinon": "^17.0.4",
    "chai": "^5.2.0",
    "ethers": "^6.13.0",
    "mocha": "^11.5.0",
    "sinon": "^21.0.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "tsx": "^4.19.4",
    "typescript": "^5.8.3"
  }
}
