@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/lib/index.d.ts
CHANGED
|
@@ -3872,6 +3872,8 @@ type Info = {
|
|
|
3872
3872
|
website?: string;
|
|
3873
3873
|
/** optional, extra information the validator chose to share */
|
|
3874
3874
|
details?: string;
|
|
3875
|
+
/** optional, validator logo URL */
|
|
3876
|
+
iconUrl?: string;
|
|
3875
3877
|
/** optional, used to identify validators on keybase.io */
|
|
3876
3878
|
keybaseUsername?: string;
|
|
3877
3879
|
};
|
package/lib/index.esm.js
CHANGED
|
@@ -10878,6 +10878,7 @@ const InfoString = type({
|
|
|
10878
10878
|
name: string(),
|
|
10879
10879
|
website: optional(string()),
|
|
10880
10880
|
details: optional(string()),
|
|
10881
|
+
iconUrl: optional(string()),
|
|
10881
10882
|
keybaseUsername: optional(string())
|
|
10882
10883
|
});
|
|
10883
10884
|
|