@solana/web3.js 1.41.1 → 1.41.4
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.cjs.js +593 -375
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +639 -422
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +610 -378
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +77 -26
- package/lib/index.esm.js +657 -426
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +12157 -12148
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +2 -24
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +9 -5
- package/src/connection.ts +657 -486
- package/src/index.ts +1 -0
- package/src/system-program.ts +39 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/web3.js",
|
|
3
|
-
"version": "1.41.
|
|
3
|
+
"version": "1.41.4",
|
|
4
4
|
"description": "Solana Javascript API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -59,15 +59,18 @@
|
|
|
59
59
|
"@babel/runtime": "^7.12.5",
|
|
60
60
|
"@ethersproject/sha2": "^5.5.0",
|
|
61
61
|
"@solana/buffer-layout": "^4.0.0",
|
|
62
|
+
"@solana/buffer-layout-utils": "^0.2.0",
|
|
62
63
|
"bn.js": "^5.0.0",
|
|
63
64
|
"borsh": "^0.7.0",
|
|
64
65
|
"bs58": "^4.0.1",
|
|
65
66
|
"buffer": "6.0.1",
|
|
66
67
|
"cross-fetch": "^3.1.4",
|
|
68
|
+
"fast-stable-stringify": "^1.0.0",
|
|
67
69
|
"jayson": "^3.4.4",
|
|
68
70
|
"js-sha3": "^0.8.0",
|
|
69
71
|
"rpc-websockets": "^7.4.2",
|
|
70
72
|
"secp256k1": "^4.0.2",
|
|
73
|
+
"sinon-chai": "^3.7.0",
|
|
71
74
|
"superstruct": "^0.14.2",
|
|
72
75
|
"tweetnacl": "^1.0.0"
|
|
73
76
|
},
|
|
@@ -86,7 +89,7 @@
|
|
|
86
89
|
"@rollup/plugin-json": "^4.1.0",
|
|
87
90
|
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
88
91
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
89
|
-
"@rollup/plugin-replace": "^
|
|
92
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
90
93
|
"@solana/spl-token": "^0.1.2",
|
|
91
94
|
"@types/bn.js": "^5.1.0",
|
|
92
95
|
"@types/bs58": "^4.0.1",
|
|
@@ -98,6 +101,7 @@
|
|
|
98
101
|
"@types/node": "^17.0.24",
|
|
99
102
|
"@types/secp256k1": "^4.0.1",
|
|
100
103
|
"@types/sinon": "^10.0.0",
|
|
104
|
+
"@types/sinon-chai": "^3.2.8",
|
|
101
105
|
"@typescript-eslint/eslint-plugin": "^4.14.2",
|
|
102
106
|
"@typescript-eslint/parser": "^4.14.2",
|
|
103
107
|
"chai": "^4.3.0",
|
|
@@ -106,7 +110,7 @@
|
|
|
106
110
|
"cross-env": "7.0.3",
|
|
107
111
|
"eslint": "^7.19.0",
|
|
108
112
|
"eslint-config-prettier": "^8.0.0",
|
|
109
|
-
"eslint-plugin-import": "2.
|
|
113
|
+
"eslint-plugin-import": "2.26.0",
|
|
110
114
|
"eslint-plugin-mocha": "^9.0.0",
|
|
111
115
|
"eslint-plugin-prettier": "^4.0.0",
|
|
112
116
|
"esm": "^3.2.25",
|
|
@@ -118,12 +122,12 @@
|
|
|
118
122
|
"nyc": "^15.1.0",
|
|
119
123
|
"prettier": "^2.3.0",
|
|
120
124
|
"rimraf": "3.0.2",
|
|
121
|
-
"rollup": "2.
|
|
125
|
+
"rollup": "2.70.2",
|
|
122
126
|
"rollup-plugin-dts": "^4.0.0",
|
|
123
127
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
124
128
|
"rollup-plugin-terser": "^7.0.2",
|
|
125
129
|
"semantic-release": "^18.0.0",
|
|
126
|
-
"sinon": "^
|
|
130
|
+
"sinon": "^13.0.2",
|
|
127
131
|
"start-server-and-test": "^1.12.0",
|
|
128
132
|
"ts-mocha": "^9.0.2",
|
|
129
133
|
"ts-node": "^10.0.0",
|