forked from oraidex/ethereum-multicall-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@oraichain/ethereum-multicall",
"version": "1.0.2",
"description": "Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result",
"main": "dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"playground": "node ./dist/cjs/__TEST-SCRIPT__/playground.js",
"watch": "tsc --module commonjs --outDir dist/cjs --watch",
"gen-multicall-abi": "abi-types-generator ./src/ABI/multicall-abi.json --output=./src/ABI/types --name=multicall --provider=ethers",
"prepublishOnly": "yarn build"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@ethersproject/providers": "^5.0.10",
"ethers": "^5.0.15"
},
"devDependencies": {
"@types/node": "^18",
"ethereum-abi-types-generator": "^1.0.6",
"typescript": "^5.2.2"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"ethereum",
"blockchain",
"JSONRPC"
],
"homepage": "https://github.com/oraichain/ethereum-multicall-ts#readme"
}