@solana/web3.js 1.24.3 → 1.25.1
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/lib/index.browser.esm.js +558 -22
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +564 -30
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +2 -2
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +5 -3
- package/src/connection.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/web3.js",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "Solana Javascript API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"borsh": "^0.4.0",
|
|
44
44
|
"bs58": "^4.0.1",
|
|
45
45
|
"buffer": "6.0.1",
|
|
46
|
+
"cross-fetch": "^3.1.4",
|
|
46
47
|
"crypto-hash": "^1.2.2",
|
|
47
48
|
"jayson": "^3.4.4",
|
|
48
49
|
"js-sha3": "^0.8.0",
|
|
49
|
-
"node-fetch": "^2.6.1",
|
|
50
50
|
"rpc-websockets": "^7.4.2",
|
|
51
51
|
"secp256k1": "^4.0.2",
|
|
52
52
|
"superstruct": "^0.14.2",
|
|
@@ -77,7 +77,6 @@
|
|
|
77
77
|
"@types/mocha": "^9.0.0",
|
|
78
78
|
"@types/mz": "^2.7.3",
|
|
79
79
|
"@types/node": "^16.0.0",
|
|
80
|
-
"@types/node-fetch": "^2.5.8",
|
|
81
80
|
"@types/secp256k1": "^4.0.1",
|
|
82
81
|
"@types/sinon": "^10.0.0",
|
|
83
82
|
"@typescript-eslint/eslint-plugin": "^4.14.2",
|
|
@@ -115,6 +114,9 @@
|
|
|
115
114
|
"typedoc": "^0.21.0-beta.2",
|
|
116
115
|
"typescript": "^4.3.2"
|
|
117
116
|
},
|
|
117
|
+
"engines": {
|
|
118
|
+
"node": ">=12.20.0"
|
|
119
|
+
},
|
|
118
120
|
"scripts": {
|
|
119
121
|
"build": "npm run clean; cross-env NODE_ENV=production rollup -c; npm run type:gen; npm run flow:gen; npm run flow:check",
|
|
120
122
|
"build:browser-test": "rollup -c test/rollup.config.js",
|