@solana/web3.js 1.94.0 → 1.95.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/lib/index.browser.cjs.js +1 -0
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +1 -0
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +1 -0
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.esm.js +1 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +122 -149
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +7 -7
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +1 -0
- package/lib/index.native.js.map +1 -1
- package/package.json +3 -3
- package/src/validator-info.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/web3.js",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.95.0",
|
|
4
4
|
"description": "Solana Javascript API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@babel/runtime": "^7.24.7",
|
|
59
|
-
"@noble/curves": "^1.4.
|
|
59
|
+
"@noble/curves": "^1.4.2",
|
|
60
60
|
"@noble/hashes": "^1.4.0",
|
|
61
61
|
"@solana/buffer-layout": "^4.0.1",
|
|
62
62
|
"agentkeepalive": "^4.5.0",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"jayson": "^4.1.0",
|
|
70
70
|
"node-fetch": "^2.7.0",
|
|
71
71
|
"rpc-websockets": "^9.0.2",
|
|
72
|
-
"superstruct": "^
|
|
72
|
+
"superstruct": "^2.0.2"
|
|
73
73
|
}
|
|
74
74
|
}
|
package/src/validator-info.ts
CHANGED
|
@@ -33,6 +33,8 @@ export type Info = {
|
|
|
33
33
|
website?: string;
|
|
34
34
|
/** optional, extra information the validator chose to share */
|
|
35
35
|
details?: string;
|
|
36
|
+
/** optional, validator logo URL */
|
|
37
|
+
iconUrl?: string;
|
|
36
38
|
/** optional, used to identify validators on keybase.io */
|
|
37
39
|
keybaseUsername?: string;
|
|
38
40
|
};
|
|
@@ -41,6 +43,7 @@ const InfoString = pick({
|
|
|
41
43
|
name: string(),
|
|
42
44
|
website: optional(string()),
|
|
43
45
|
details: optional(string()),
|
|
46
|
+
iconUrl: optional(string()),
|
|
44
47
|
keybaseUsername: optional(string()),
|
|
45
48
|
});
|
|
46
49
|
|