@avalabs/evm-module 0.12.1 → 1.2.0
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/dist/index.cjs +25 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +343 -13
- package/dist/index.d.ts +343 -13
- package/dist/index.js +19 -19
- package/dist/index.js.map +1 -1
- package/manifest.json +44 -1
- package/package.json +9 -9
package/manifest.json
CHANGED
|
@@ -35,14 +35,57 @@
|
|
|
35
35
|
"methods": [
|
|
36
36
|
"personal_sign",
|
|
37
37
|
"eth_sendTransaction",
|
|
38
|
+
"eth_sendTransactionBatch",
|
|
38
39
|
"eth_*",
|
|
39
40
|
"web3_clientVersion",
|
|
40
41
|
"web3_sha3",
|
|
41
42
|
"net_version",
|
|
42
43
|
"net_peerCount",
|
|
43
44
|
"net_listening"
|
|
45
|
+
],
|
|
46
|
+
"nonRestrictedMethods": [
|
|
47
|
+
"eth_requestAccounts",
|
|
48
|
+
"eth_decrypt",
|
|
49
|
+
"eth_getEncryptionPublicKey",
|
|
50
|
+
"eth_subscribe",
|
|
51
|
+
"eth_unsubscribe",
|
|
52
|
+
"eth_blockNumber",
|
|
53
|
+
"eth_call",
|
|
54
|
+
"eth_chainId",
|
|
55
|
+
"eth_coinbase",
|
|
56
|
+
"eth_estimateGas",
|
|
57
|
+
"eth_feeHistory",
|
|
58
|
+
"eth_gasPrice",
|
|
59
|
+
"eth_getBalance",
|
|
60
|
+
"eth_getBlockByHash",
|
|
61
|
+
"eth_getBlockByNumber",
|
|
62
|
+
"eth_getBlockTransactionCountByHash",
|
|
63
|
+
"eth_getBlockTransactionCountByNumber",
|
|
64
|
+
"eth_getCode",
|
|
65
|
+
"eth_getFilterChanges",
|
|
66
|
+
"eth_getFilterLogs",
|
|
67
|
+
"eth_getLogs",
|
|
68
|
+
"eth_getProof",
|
|
69
|
+
"eth_getStorageAt",
|
|
70
|
+
"eth_getTransactionByBlockHashAndIndex",
|
|
71
|
+
"eth_getTransactionByBlockNumberAndIndex",
|
|
72
|
+
"eth_getTransactionByHash",
|
|
73
|
+
"eth_getTransactionCount",
|
|
74
|
+
"eth_getTransactionReceipt",
|
|
75
|
+
"eth_getUncleCountByBlockHash",
|
|
76
|
+
"eth_getUncleCountByBlockNumber",
|
|
77
|
+
"eth_newBlockFilter",
|
|
78
|
+
"eth_newFilter",
|
|
79
|
+
"eth_newPendingTransactionFilter",
|
|
80
|
+
"eth_syncing",
|
|
81
|
+
"eth_uninstallFilter",
|
|
82
|
+
"net_version",
|
|
83
|
+
"net_peerCount",
|
|
84
|
+
"net_listening",
|
|
85
|
+
"web3_sha3",
|
|
86
|
+
"web3_clientVersion"
|
|
44
87
|
]
|
|
45
88
|
}
|
|
46
89
|
},
|
|
47
|
-
"manifestVersion": "0.
|
|
90
|
+
"manifestVersion": "0.1"
|
|
48
91
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/evm-module",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
],
|
|
12
12
|
"license": "Limited Ecosystem License",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@avalabs/core-coingecko-sdk": "3.1.0-alpha.
|
|
15
|
-
"@avalabs/core-etherscan-sdk": "3.1.0-alpha.
|
|
16
|
-
"@avalabs/core-utils-sdk": "3.1.0-alpha.
|
|
17
|
-
"@avalabs/core-wallets-sdk": "3.1.0-alpha.
|
|
18
|
-
"@avalabs/glacier-sdk": "3.1.0-alpha.
|
|
19
|
-
"@avalabs/types": "3.1.0-alpha.
|
|
14
|
+
"@avalabs/core-coingecko-sdk": "3.1.0-alpha.32",
|
|
15
|
+
"@avalabs/core-etherscan-sdk": "3.1.0-alpha.32",
|
|
16
|
+
"@avalabs/core-utils-sdk": "3.1.0-alpha.32",
|
|
17
|
+
"@avalabs/core-wallets-sdk": "3.1.0-alpha.32",
|
|
18
|
+
"@avalabs/glacier-sdk": "3.1.0-alpha.32",
|
|
19
|
+
"@avalabs/types": "3.1.0-alpha.32",
|
|
20
20
|
"@blockaid/client": "0.11.0",
|
|
21
21
|
"@metamask/rpc-errors": "6.3.0",
|
|
22
22
|
"@openzeppelin/contracts": "4.9.6",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"lodash.startcase": "4.4.0",
|
|
25
25
|
"xss": "1.0.13",
|
|
26
26
|
"zod": "3.23.8",
|
|
27
|
-
"@avalabs/vm-module-types": "
|
|
27
|
+
"@avalabs/vm-module-types": "1.2.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@typechain/ethers-v6": "0.5.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"tsup": "7.2.0",
|
|
39
39
|
"typechain": "8.3.1",
|
|
40
40
|
"@internal/tsup-config": "0.0.1",
|
|
41
|
-
"@internal/utils": "0.
|
|
41
|
+
"@internal/utils": "0.4.0",
|
|
42
42
|
"eslint-config-custom": "0.0.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|