@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.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