@defiverse/balancer-sdk-megaeth 0.1.252
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +843 -0
- package/dist/index.d.ts +6898 -0
- package/dist/index.esm.js +489 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +489 -0
- package/dist/index.js.map +1 -0
- package/dist/index.umd.js +489 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +102 -0
package/package.json
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@defiverse/balancer-sdk-megaeth",
|
|
3
|
+
"version": "0.1.252",
|
|
4
|
+
"description": "JavaScript SDK for interacting with the Balancer Protocol V2",
|
|
5
|
+
"license": "GPL-3.0-only",
|
|
6
|
+
"homepage": "https://github.com/balancer-labs/balancer-sdk#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/P2302-Oasys-Balancer/balancer-sdk.git",
|
|
10
|
+
"directory": "balancer-js"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/balancer-labs/balancer-sdk/issues"
|
|
14
|
+
},
|
|
15
|
+
"main": "dist/index.js",
|
|
16
|
+
"module": "dist/index.esm.js",
|
|
17
|
+
"browser": "dist/index.umd.js",
|
|
18
|
+
"typings": "dist/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "rimraf dist && rollup -c",
|
|
24
|
+
"pub": "yarn publish --access public",
|
|
25
|
+
"dev": "rollup -c -w",
|
|
26
|
+
"test": "ts-mocha --paths --recursive -p tsconfig.testing.json 'src/**/*.spec.ts' --timeout 20000",
|
|
27
|
+
"test:only": "ts-mocha --paths --recursive -p tsconfig.testing.json --timeout 20000",
|
|
28
|
+
"lint": "eslint ./src --ext .ts --max-warnings 0",
|
|
29
|
+
"lint:fix": "eslint ./src --ext .ts --max-warnings 0 --fix",
|
|
30
|
+
"subgraph:generate": "graphql-codegen --config src/modules/subgraph/codegen.yml -r dotenv/config",
|
|
31
|
+
"examples:run": "npx ts-node -P tsconfig.testing.json -r tsconfig-paths/register",
|
|
32
|
+
"node": "npx hardhat node --tsconfig tsconfig.testing.json --fork $(. ./.env && echo $ALCHEMY_URL)",
|
|
33
|
+
"node:goerli": "npx hardhat --tsconfig tsconfig.testing.json --config hardhat.config.goerli.ts node --fork $(grep ALCHEMY_URL_GOERLI .env | cut -d '=' -f2 | tail -1) --port 8000"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@ethersproject/solidity": "^5.6.1",
|
|
37
|
+
"@ethersproject/units": "^5.7.0",
|
|
38
|
+
"@ethersproject/wallet": "^5.5.0",
|
|
39
|
+
"@graphql-codegen/add": "^3.1.0",
|
|
40
|
+
"@graphql-codegen/cli": "^2.3.0",
|
|
41
|
+
"@graphql-codegen/introspection": "^2.1.0",
|
|
42
|
+
"@graphql-codegen/schema-ast": "^2.4.0",
|
|
43
|
+
"@graphql-codegen/typescript": "2.4.0",
|
|
44
|
+
"@graphql-codegen/typescript-document-nodes": "^2.2.0",
|
|
45
|
+
"@graphql-codegen/typescript-graphql-request": "^4.3.0",
|
|
46
|
+
"@graphql-codegen/typescript-operations": "^2.2.0",
|
|
47
|
+
"@graphql-codegen/typescript-resolvers": "2.4.1",
|
|
48
|
+
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
|
|
49
|
+
"@nomiclabs/hardhat-ethers": "^2.0.5",
|
|
50
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
51
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
52
|
+
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
53
|
+
"@rollup/plugin-typescript": "^8.2.1",
|
|
54
|
+
"@typechain/ethers-v5": "^7.0.1",
|
|
55
|
+
"@types/chai": "^4.2.12",
|
|
56
|
+
"@types/lodash": "^4.14.177",
|
|
57
|
+
"@types/mocha": "^8.0.3",
|
|
58
|
+
"@types/node": "^15.12.4",
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^4.1.1",
|
|
60
|
+
"@typescript-eslint/parser": "^4.1.1",
|
|
61
|
+
"axios-mock-adapter": "^1.21.2",
|
|
62
|
+
"chai": "^4.2.0",
|
|
63
|
+
"dotenv": "^10.0.0",
|
|
64
|
+
"eslint": "^7.9.0",
|
|
65
|
+
"eslint-plugin-mocha-no-only": "^1.1.1",
|
|
66
|
+
"eslint-plugin-prettier": "^3.1.4",
|
|
67
|
+
"ethers": "^5.0.0",
|
|
68
|
+
"fishery": "^2.2.2",
|
|
69
|
+
"hardhat": "^2.9.3",
|
|
70
|
+
"mocha": "^8.2.1",
|
|
71
|
+
"mockdate": "^3.0.5",
|
|
72
|
+
"prettier": "^2.1.2",
|
|
73
|
+
"rimraf": "^3.0.2",
|
|
74
|
+
"rollup": "^2.52.8",
|
|
75
|
+
"rollup-plugin-dts": "^3.0.2",
|
|
76
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
77
|
+
"tiny-invariant": "^1.1.0",
|
|
78
|
+
"ts-mocha": "^9.0.2",
|
|
79
|
+
"ts-node": "^10.9.1",
|
|
80
|
+
"tsconfig-paths": "^3.14.1",
|
|
81
|
+
"typechain": "^5.1.1",
|
|
82
|
+
"typescript": "^4.0.2"
|
|
83
|
+
},
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"@defiverse/sor": "4.1.14",
|
|
86
|
+
"@balancer-labs/typechain": "^1.0.0",
|
|
87
|
+
"@ethersproject/abi": "^5.4.0",
|
|
88
|
+
"@ethersproject/abstract-signer": "^5.4.0",
|
|
89
|
+
"@ethersproject/address": "^5.4.0",
|
|
90
|
+
"@ethersproject/base64": "5.5.0",
|
|
91
|
+
"@ethersproject/bignumber": "^5.4.0",
|
|
92
|
+
"@ethersproject/bytes": "^5.4.0",
|
|
93
|
+
"@ethersproject/constants": "^5.4.0",
|
|
94
|
+
"@ethersproject/contracts": "^5.4.0",
|
|
95
|
+
"@ethersproject/providers": "^5.4.5",
|
|
96
|
+
"axios": "^0.24.0",
|
|
97
|
+
"graphql": "^15.6.1",
|
|
98
|
+
"graphql-request": "^3.5.0",
|
|
99
|
+
"json-to-graphql-query": "^2.2.4",
|
|
100
|
+
"lodash": "^4.17.21"
|
|
101
|
+
}
|
|
102
|
+
}
|